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
15 changes: 12 additions & 3 deletions .pubnub.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
---
changelog:
- date: 2025-03-13
version: v9.1.0
changes:
- type: feature
text: "`SubscriptionSet` will re-add listener every time when `Subscription` or `SubscriptionSet` added to it - this will let receive updates from newly added subscribe capable objects."
- type: bug
text: "Fix issue because of errors returned by `fetch` taken from `iframe` (to protect against monkey-patching by APM packages) was't handled as Error."
- type: improvement
text: "Use access token (auth key) content instead of base64 encoded token to identify PubNub clients, which can be used for requests aggregation."
- date: 2025-03-10
version: v9.0.0
changes:
Expand Down Expand Up @@ -1169,7 +1178,7 @@ supported-platforms:
- 'Ubuntu 14.04 and up'
- 'Windows 7 and up'
version: 'Pubnub Javascript for Node'
version: '9.0.0'
version: '9.1.0'
sdks:
- full-name: PubNub Javascript SDK
short-name: Javascript
Expand All @@ -1185,7 +1194,7 @@ sdks:
- distribution-type: source
distribution-repository: GitHub release
package-name: pubnub.js
location: https://github.com/pubnub/javascript/archive/refs/tags/v9.0.0.zip
location: https://github.com/pubnub/javascript/archive/refs/tags/v9.1.0.zip
requires:
- name: 'agentkeepalive'
min-version: '3.5.2'
Expand Down Expand Up @@ -1856,7 +1865,7 @@ sdks:
- distribution-type: library
distribution-repository: GitHub release
package-name: pubnub.js
location: https://github.com/pubnub/javascript/releases/download/v9.0.0/pubnub.9.0.0.js
location: https://github.com/pubnub/javascript/releases/download/v9.1.0/pubnub.9.1.0.js
requires:
- name: 'agentkeepalive'
min-version: '3.5.2'
Expand Down
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
## v9.1.0
March 13 2025

#### Added
- `SubscriptionSet` will re-add listener every time when `Subscription` or `SubscriptionSet` added to it - this will let receive updates from newly added subscribe capable objects.

#### Fixed
- Fix issue because of errors returned by `fetch` taken from `iframe` (to protect against monkey-patching by APM packages) was't handled as Error.

#### Modified
- Use access token (auth key) content instead of base64 encoded token to identify PubNub clients, which can be used for requests aggregation.

## v9.0.0
March 10 2025

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ Watch [Getting Started with PubNub JS SDK](https://app.dashcam.io/replay/64ee0d2
npm install pubnub
```
* or download one of our builds from our CDN:
* https://cdn.pubnub.com/sdk/javascript/pubnub.9.0.0.js
* https://cdn.pubnub.com/sdk/javascript/pubnub.9.0.0.min.js
* https://cdn.pubnub.com/sdk/javascript/pubnub.9.1.0.js
* https://cdn.pubnub.com/sdk/javascript/pubnub.9.1.0.min.js

2. Configure your keys:

Expand Down
Loading
Loading