Skip to content

Commit 1a48671

Browse files
PubNub SDK v10.2.5 release.
1 parent eeb0185 commit 1a48671

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-12-16
4+
version: v10.2.5
5+
changes:
6+
- type: improvement
7+
text: "Use `fast-text-encoding` for react native instead of outdated `fast-encoding` polyfill."
38
- date: 2025-12-04
49
version: v10.2.4
510
changes:
@@ -1374,7 +1379,7 @@ supported-platforms:
13741379
- 'Ubuntu 14.04 and up'
13751380
- 'Windows 7 and up'
13761381
version: 'Pubnub Javascript for Node'
1377-
version: '10.2.4'
1382+
version: '10.2.5'
13781383
sdks:
13791384
- full-name: PubNub Javascript SDK
13801385
short-name: Javascript
@@ -1390,7 +1395,7 @@ sdks:
13901395
- distribution-type: source
13911396
distribution-repository: GitHub release
13921397
package-name: pubnub.js
1393-
location: https://github.com/pubnub/javascript/archive/refs/tags/v10.2.4.zip
1398+
location: https://github.com/pubnub/javascript/archive/refs/tags/v10.2.5.zip
13941399
requires:
13951400
- name: 'agentkeepalive'
13961401
min-version: '3.5.2'
@@ -2061,7 +2066,7 @@ sdks:
20612066
- distribution-type: library
20622067
distribution-repository: GitHub release
20632068
package-name: pubnub.js
2064-
location: https://github.com/pubnub/javascript/releases/download/v10.2.4/pubnub.10.2.4.js
2069+
location: https://github.com/pubnub/javascript/releases/download/v10.2.5/pubnub.10.2.5.js
20652070
requires:
20662071
- name: 'agentkeepalive'
20672072
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.5
2+
December 16 2025
3+
4+
#### Modified
5+
- Use `fast-text-encoding` for react native instead of outdated `fast-encoding` polyfill.
6+
17
## v10.2.4
28
December 04 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.4.js
31-
* https://cdn.pubnub.com/sdk/javascript/pubnub.10.2.4.min.js
30+
* https://cdn.pubnub.com/sdk/javascript/pubnub.10.2.5.js
31+
* https://cdn.pubnub.com/sdk/javascript/pubnub.10.2.5.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.4';
5439+
return '10.2.5';
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.4';
171+
return '10.2.5';
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.4",
3+
"version": "10.2.5",
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.4';
239+
return '10.2.5';
240240
},
241241
getVersion(): string {
242242
return this.version;

0 commit comments

Comments
 (0)