Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 9 additions & 4 deletions .pubnub.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
---
version: 9.0.0
version: v9.0.1
changelog:
- date: 2026-06-15
version: v9.0.1
changes:
- type: bug
text: "Fix version naming back from 'X.X.X' to 'vX.X.X'."
- date: 2026-06-08
version: 9.0.0
version: v9.0.0
changes:
- type: improvement
text: "Bump minimum supported Go version to 1.25. **BREAKING CHANGE**."
Expand All @@ -11,7 +16,7 @@ changelog:
- type: improvement
text: "Update `golang.org/x/net` to v0.55.0."
- date: 2026-05-28
version: 8.2.0
version: v8.2.0
changes:
- type: feature
text: "`Config.UseHTTP2` now defaults to `true` and `NewHTTP2Client` is rebuilt on `net/http.Transport` with `ForceAttemptHTTP2` + `http2.ConfigureTransport`, so HTTPS connections prefer HTTP/2 via TLS ALPN and fall back to HTTP/1.1 when the origin doesn't advertise h2. The single subscribe loop reuses the cached `*http.Client` across long-poll cycles, and on `SubscriptionManager.reconnect` SDK-managed clients are dropped so the next request re-runs TLS+ALPN — user-supplied clients pinned via `SetClient`/`SetSubscribeClient` are preserved. Set `UseHTTP2 = false` to opt out."
Expand Down Expand Up @@ -837,7 +842,7 @@ sdks:
distribution-type: package
distribution-repository: GitHub
package-name: Go
location: https://github.com/pubnub/go/releases/tag/9.0.0
location: https://github.com/pubnub/go/releases/tag/v9.0.1
requires:
-
name: "Go"
Expand Down
10 changes: 8 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,18 @@
## 9.0.0
## v9.0.1
June 15 2026

#### Fixed
- Fix version naming back from "X.X.X" to "vX.X.X".

## v9.0.0
June 08 2026

#### Modified
- Bump minimum supported Go version to 1.25. **BREAKING CHANGE**.
- Remove legacy code and files related to unsupported Go versions.
- Update `golang.org/x/net` to v0.55.0.

## 8.2.0
## v8.2.0
May 28 2026

#### Added
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
9.0.0
9.0.1
2 changes: 1 addition & 1 deletion pubnub.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import (
// Default constants
const (
// Version :the version of the SDK
Version = "9.0.0"
Version = "9.0.1"
// MaxSequence for publish messages
MaxSequence = 65535
)
Expand Down
Loading