Skip to content

Commit 9c66040

Browse files
authored
Add limit and offset parameters (#477)
feat(here-now): add `limit`` and `offset`` parameters Add 'limit' and 'offset' parameters for 'HereNowRequest' for pagination support.
1 parent ec1c299 commit 9c66040

File tree

8 files changed

+14
-14
lines changed

8 files changed

+14
-14
lines changed

.pubnub.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
---
22
changelog:
33
- date: 2025-09-18
4-
version: v9.11.0
4+
version: v10.0.0
55
changes:
66
- type: feature
7-
text: "Add 'limit' and 'offset' parameters for 'HereNowRequest' for pagination support."
7+
text: "BREAKING CHANGES: Add 'limit' and 'offset' parameters for 'HereNowRequest' for pagination support."
88
- date: 2025-09-09
99
version: v9.10.0
1010
changes:
@@ -1340,7 +1340,7 @@ supported-platforms:
13401340
- 'Ubuntu 14.04 and up'
13411341
- 'Windows 7 and up'
13421342
version: 'Pubnub Javascript for Node'
1343-
version: '9.11.0'
1343+
version: '10.0.0'
13441344
sdks:
13451345
- full-name: PubNub Javascript SDK
13461346
short-name: Javascript
@@ -1356,7 +1356,7 @@ sdks:
13561356
- distribution-type: source
13571357
distribution-repository: GitHub release
13581358
package-name: pubnub.js
1359-
location: https://github.com/pubnub/javascript/archive/refs/tags/v9.11.0.zip
1359+
location: https://github.com/pubnub/javascript/archive/refs/tags/v10.0.0.zip
13601360
requires:
13611361
- name: 'agentkeepalive'
13621362
min-version: '3.5.2'
@@ -2027,7 +2027,7 @@ sdks:
20272027
- distribution-type: library
20282028
distribution-repository: GitHub release
20292029
package-name: pubnub.js
2030-
location: https://github.com/pubnub/javascript/releases/download/v9.11.0/pubnub.9.11.0.js
2030+
location: https://github.com/pubnub/javascript/releases/download/v10.0.0/pubnub.10.0.0.js
20312031
requires:
20322032
- name: 'agentkeepalive'
20332033
min-version: '3.5.2'

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
## v9.11.0
1+
## v10.0.0
22
September 18 2025
33

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

77
## v9.10.0
88
September 09 2025

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ Watch [Getting Started with PubNub JS SDK](https://app.dashcam.io/replay/64ee0d2
2727
npm install pubnub
2828
```
2929
* or download one of our builds from our CDN:
30-
* https://cdn.pubnub.com/sdk/javascript/pubnub.9.11.0.js
31-
* https://cdn.pubnub.com/sdk/javascript/pubnub.9.11.0.min.js
30+
* https://cdn.pubnub.com/sdk/javascript/pubnub.10.0.0.js
31+
* https://cdn.pubnub.com/sdk/javascript/pubnub.10.0.0.min.js
3232
3333
2. Configure your keys:
3434

dist/web/pubnub.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5436,7 +5436,7 @@
54365436
return base.PubNubFile;
54375437
},
54385438
get version() {
5439-
return '9.11.0';
5439+
return '10.0.0';
54405440
},
54415441
getVersion() {
54425442
return this.version;

dist/web/pubnub.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/core/components/configuration.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ const makeConfiguration = (base, setupCryptoModule) => {
168168
return base.PubNubFile;
169169
},
170170
get version() {
171-
return '9.11.0';
171+
return '10.0.0';
172172
},
173173
getVersion() {
174174
return this.version;

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "pubnub",
3-
"version": "9.11.0",
3+
"version": "10.0.0",
44
"author": "PubNub <[email protected]>",
55
"description": "Publish & Subscribe Real-time Messaging with PubNub",
66
"scripts": {

src/core/components/configuration.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ export const makeConfiguration = (
236236
return base.PubNubFile;
237237
},
238238
get version(): string {
239-
return '9.11.0';
239+
return '10.0.0';
240240
},
241241
getVersion(): string {
242242
return this.version;

0 commit comments

Comments
 (0)