Skip to content

Commit 09a4beb

Browse files
PubNub SDK v9.5.1 release.
1 parent 82e49c2 commit 09a4beb

File tree

8 files changed

+26
-10
lines changed

8 files changed

+26
-10
lines changed

.pubnub.yml

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
---
22
changelog:
3+
- date: 2025-04-15
4+
version: v9.5.1
5+
changes:
6+
- type: bug
7+
text: "Add missing `NoneRetryPolicy` static field for `PubNub` class."
8+
- type: improvement
9+
text: "`RetryPolicy.None` exported as a function to not affect tree-shaking and modules exclusion possibilities."
310
- date: 2025-04-15
411
version: v9.5.0
512
changes:
@@ -1222,7 +1229,7 @@ supported-platforms:
12221229
- 'Ubuntu 14.04 and up'
12231230
- 'Windows 7 and up'
12241231
version: 'Pubnub Javascript for Node'
1225-
version: '9.5.0'
1232+
version: '9.5.1'
12261233
sdks:
12271234
- full-name: PubNub Javascript SDK
12281235
short-name: Javascript
@@ -1238,7 +1245,7 @@ sdks:
12381245
- distribution-type: source
12391246
distribution-repository: GitHub release
12401247
package-name: pubnub.js
1241-
location: https://github.com/pubnub/javascript/archive/refs/tags/v9.5.0.zip
1248+
location: https://github.com/pubnub/javascript/archive/refs/tags/v9.5.1.zip
12421249
requires:
12431250
- name: 'agentkeepalive'
12441251
min-version: '3.5.2'
@@ -1909,7 +1916,7 @@ sdks:
19091916
- distribution-type: library
19101917
distribution-repository: GitHub release
19111918
package-name: pubnub.js
1912-
location: https://github.com/pubnub/javascript/releases/download/v9.5.0/pubnub.9.5.0.js
1919+
location: https://github.com/pubnub/javascript/releases/download/v9.5.1/pubnub.9.5.1.js
19131920
requires:
19141921
- name: 'agentkeepalive'
19151922
min-version: '3.5.2'

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
## v9.5.1
2+
April 15 2025
3+
4+
#### Fixed
5+
- Add missing `NoneRetryPolicy` static field for `PubNub` class.
6+
7+
#### Modified
8+
- `RetryPolicy.None` exported as a function to not affect tree-shaking and modules exclusion possibilities.
9+
110
## v9.5.0
211
April 15 2025
312

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.5.0.js
31-
* https://cdn.pubnub.com/sdk/javascript/pubnub.9.5.0.min.js
30+
* https://cdn.pubnub.com/sdk/javascript/pubnub.9.5.1.js
31+
* https://cdn.pubnub.com/sdk/javascript/pubnub.9.5.1.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
@@ -4209,7 +4209,7 @@
42094209
return base.PubNubFile;
42104210
},
42114211
get version() {
4212-
return '9.5.0';
4212+
return '9.5.1';
42134213
},
42144214
getVersion() {
42154215
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
@@ -144,7 +144,7 @@ const makeConfiguration = (base, setupCryptoModule) => {
144144
return base.PubNubFile;
145145
},
146146
get version() {
147-
return '9.5.0';
147+
return '9.5.1';
148148
},
149149
getVersion() {
150150
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.5.0",
3+
"version": "9.5.1",
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
@@ -203,7 +203,7 @@ export const makeConfiguration = (
203203
return base.PubNubFile;
204204
},
205205
get version(): string {
206-
return '9.5.0';
206+
return '9.5.1';
207207
},
208208
getVersion(): string {
209209
return this.version;

0 commit comments

Comments
 (0)