Skip to content

Commit 82d0865

Browse files
PubNub SDK v8.3.1 release.
1 parent 7c3596a commit 82d0865

File tree

8 files changed

+21
-10
lines changed

8 files changed

+21
-10
lines changed

.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: 2024-11-18
4+
version: v8.3.1
5+
changes:
6+
- type: bug
7+
text: "Fix issue because of which presence events not delivered to the `Subscription` and `SubscriptionSet` objects (only global listeners)."
38
- date: 2024-11-14
49
version: v8.3.0
510
changes:
@@ -1067,7 +1072,7 @@ supported-platforms:
10671072
- 'Ubuntu 14.04 and up'
10681073
- 'Windows 7 and up'
10691074
version: 'Pubnub Javascript for Node'
1070-
version: '8.3.0'
1075+
version: '8.3.1'
10711076
sdks:
10721077
- full-name: PubNub Javascript SDK
10731078
short-name: Javascript
@@ -1083,7 +1088,7 @@ sdks:
10831088
- distribution-type: source
10841089
distribution-repository: GitHub release
10851090
package-name: pubnub.js
1086-
location: https://github.com/pubnub/javascript/archive/refs/tags/v8.3.0.zip
1091+
location: https://github.com/pubnub/javascript/archive/refs/tags/v8.3.1.zip
10871092
requires:
10881093
- name: 'agentkeepalive'
10891094
min-version: '3.5.2'
@@ -1754,7 +1759,7 @@ sdks:
17541759
- distribution-type: library
17551760
distribution-repository: GitHub release
17561761
package-name: pubnub.js
1757-
location: https://github.com/pubnub/javascript/releases/download/v8.3.0/pubnub.8.3.0.js
1762+
location: https://github.com/pubnub/javascript/releases/download/v8.3.1/pubnub.8.3.1.js
17581763
requires:
17591764
- name: 'agentkeepalive'
17601765
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+
## v8.3.1
2+
November 18 2024
3+
4+
#### Fixed
5+
- Fix issue because of which presence events not delivered to the `Subscription` and `SubscriptionSet` objects (only global listeners).
6+
17
## v8.3.0
28
November 14 2024
39

README.md

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

dist/web/pubnub.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3948,7 +3948,7 @@
39483948
return base.PubNubFile;
39493949
},
39503950
get version() {
3951-
return '8.3.0';
3951+
return '8.3.1';
39523952
},
39533953
getVersion() {
39543954
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
@@ -112,7 +112,7 @@ const makeConfiguration = (base, setupCryptoModule) => {
112112
return base.PubNubFile;
113113
},
114114
get version() {
115-
return '8.3.0';
115+
return '8.3.1';
116116
},
117117
getVersion() {
118118
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": "8.3.0",
3+
"version": "8.3.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
@@ -171,7 +171,7 @@ export const makeConfiguration = (
171171
return base.PubNubFile;
172172
},
173173
get version(): string {
174-
return '8.3.0';
174+
return '8.3.1';
175175
},
176176
getVersion(): string {
177177
return this.version;

0 commit comments

Comments
 (0)