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
10 changes: 5 additions & 5 deletions .pubnub.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
---
changelog:
- date: 2025-09-18
version: v9.11.0
version: v10.0.0
changes:
- type: feature
text: "Add 'limit' and 'offset' parameters for 'HereNowRequest' for pagination support."
text: "BREAKING CHANGES: Add 'limit' and 'offset' parameters for 'HereNowRequest' for pagination support."
- date: 2025-09-09
version: v9.10.0
changes:
Expand Down Expand Up @@ -1340,7 +1340,7 @@ supported-platforms:
- 'Ubuntu 14.04 and up'
- 'Windows 7 and up'
version: 'Pubnub Javascript for Node'
version: '9.11.0'
version: '10.0.0'
sdks:
- full-name: PubNub Javascript SDK
short-name: Javascript
Expand All @@ -1356,7 +1356,7 @@ sdks:
- distribution-type: source
distribution-repository: GitHub release
package-name: pubnub.js
location: https://github.com/pubnub/javascript/archive/refs/tags/v9.11.0.zip
location: https://github.com/pubnub/javascript/archive/refs/tags/v10.0.0.zip
requires:
- name: 'agentkeepalive'
min-version: '3.5.2'
Expand Down Expand Up @@ -2027,7 +2027,7 @@ sdks:
- distribution-type: library
distribution-repository: GitHub release
package-name: pubnub.js
location: https://github.com/pubnub/javascript/releases/download/v9.11.0/pubnub.9.11.0.js
location: https://github.com/pubnub/javascript/releases/download/v10.0.0/pubnub.10.0.0.js
requires:
- name: 'agentkeepalive'
min-version: '3.5.2'
Expand Down
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
## v9.11.0
## v10.0.0
September 18 2025

#### Added
- Add 'limit' and 'offset' parameters for 'HereNowRequest' for pagination support.
- BREAKING CHANGES: Add 'limit' and 'offset' parameters for 'HereNowRequest' for pagination support.

## v9.10.0
September 09 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.11.0.js
* https://cdn.pubnub.com/sdk/javascript/pubnub.9.11.0.min.js
* https://cdn.pubnub.com/sdk/javascript/pubnub.10.0.0.js
* https://cdn.pubnub.com/sdk/javascript/pubnub.10.0.0.min.js

2. Configure your keys:

Expand Down
2 changes: 1 addition & 1 deletion dist/web/pubnub.js
Original file line number Diff line number Diff line change
Expand Up @@ -5436,7 +5436,7 @@
return base.PubNubFile;
},
get version() {
return '9.11.0';
return '10.0.0';
},
getVersion() {
return this.version;
Expand Down
2 changes: 1 addition & 1 deletion dist/web/pubnub.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lib/core/components/configuration.js
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ const makeConfiguration = (base, setupCryptoModule) => {
return base.PubNubFile;
},
get version() {
return '9.11.0';
return '10.0.0';
},
getVersion() {
return this.version;
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "pubnub",
"version": "9.11.0",
"version": "10.0.0",
"author": "PubNub <support@pubnub.com>",
"description": "Publish & Subscribe Real-time Messaging with PubNub",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/core/components/configuration.ts
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ export const makeConfiguration = (
return base.PubNubFile;
},
get version(): string {
return '9.11.0';
return '10.0.0';
},
getVersion(): string {
return this.version;
Expand Down
Loading