Skip to content

Commit 3677e71

Browse files
PubNub SDK v10.2.1 release.
1 parent 04b6812 commit 3677e71

8 files changed

Lines changed: 21 additions & 10 deletions

File tree

.pubnub.yml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
---
22
changelog:
3+
- date: 2025-11-03
4+
version: v10.2.1
5+
changes:
6+
- type: improvement
7+
text: "Expose `File` on pubnub instance to manually create supported File construct."
38
- date: 2025-10-29
49
version: v10.2.0
510
changes:
@@ -1354,7 +1359,7 @@ supported-platforms:
13541359
- 'Ubuntu 14.04 and up'
13551360
- 'Windows 7 and up'
13561361
version: 'Pubnub Javascript for Node'
1357-
version: '10.2.0'
1362+
version: '10.2.1'
13581363
sdks:
13591364
- full-name: PubNub Javascript SDK
13601365
short-name: Javascript
@@ -1370,7 +1375,7 @@ sdks:
13701375
- distribution-type: source
13711376
distribution-repository: GitHub release
13721377
package-name: pubnub.js
1373-
location: https://github.com/pubnub/javascript/archive/refs/tags/v10.2.0.zip
1378+
location: https://github.com/pubnub/javascript/archive/refs/tags/v10.2.1.zip
13741379
requires:
13751380
- name: 'agentkeepalive'
13761381
min-version: '3.5.2'
@@ -2041,7 +2046,7 @@ sdks:
20412046
- distribution-type: library
20422047
distribution-repository: GitHub release
20432048
package-name: pubnub.js
2044-
location: https://github.com/pubnub/javascript/releases/download/v10.2.0/pubnub.10.2.0.js
2049+
location: https://github.com/pubnub/javascript/releases/download/v10.2.1/pubnub.10.2.1.js
20452050
requires:
20462051
- name: 'agentkeepalive'
20472052
min-version: '3.5.2'

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## v10.2.1
2+
November 03 2025
3+
4+
#### Modified
5+
- Expose `File` on pubnub instance to manually create supported File construct.
6+
17
## v10.2.0
28
October 29 2025
39

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.10.2.0.js
31-
* https://cdn.pubnub.com/sdk/javascript/pubnub.10.2.0.min.js
30+
* https://cdn.pubnub.com/sdk/javascript/pubnub.10.2.1.js
31+
* https://cdn.pubnub.com/sdk/javascript/pubnub.10.2.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
@@ -5436,7 +5436,7 @@
54365436
return base.PubNubFile;
54375437
},
54385438
get version() {
5439-
return '10.2.0';
5439+
return '10.2.1';
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 '10.2.0';
171+
return '10.2.1';
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": "10.2.0",
3+
"version": "10.2.1",
44
"author": "PubNub <support@pubnub.com>",
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 '10.2.0';
239+
return '10.2.1';
240240
},
241241
getVersion(): string {
242242
return this.version;

0 commit comments

Comments
 (0)