Skip to content

Commit

Permalink
PubNub SDK v8.4.0 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
pubnub-release-bot committed Dec 17, 2024
1 parent d9136fd commit a993c24
Show file tree
Hide file tree
Showing 8 changed files with 37 additions and 10 deletions.
19 changes: 16 additions & 3 deletions .pubnub.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
---
changelog:
- date: 2024-12-17
version: v8.4.0
changes:
- type: feature
text: "Add `type` field for members and membership objects and subscribe response."
- type: bug
text: "Fixed type which limited number of options which can be included into response / used in sorting for members / membership setting API."
- type: bug
text: "Fix missing `hereNowRefresh` flag from the presence object received from subscribe."
- type: bug
text: "Fix issue because of which `logVerbosity` set to `true` still didn't print logs for Node.js."
- type: improvement
text: "Change format and add proper request body output."
- date: 2024-12-12
version: v8.3.2
changes:
Expand Down Expand Up @@ -1081,7 +1094,7 @@ supported-platforms:
- 'Ubuntu 14.04 and up'
- 'Windows 7 and up'
version: 'Pubnub Javascript for Node'
version: '8.3.2'
version: '8.4.0'
sdks:
- full-name: PubNub Javascript SDK
short-name: Javascript
Expand All @@ -1097,7 +1110,7 @@ sdks:
- distribution-type: source
distribution-repository: GitHub release
package-name: pubnub.js
location: https://github.com/pubnub/javascript/archive/refs/tags/v8.3.2.zip
location: https://github.com/pubnub/javascript/archive/refs/tags/v8.4.0.zip
requires:
- name: 'agentkeepalive'
min-version: '3.5.2'
Expand Down Expand Up @@ -1768,7 +1781,7 @@ sdks:
- distribution-type: library
distribution-repository: GitHub release
package-name: pubnub.js
location: https://github.com/pubnub/javascript/releases/download/v8.3.2/pubnub.8.3.2.js
location: https://github.com/pubnub/javascript/releases/download/v8.4.0/pubnub.8.4.0.js
requires:
- name: 'agentkeepalive'
min-version: '3.5.2'
Expand Down
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
## v8.4.0
December 17 2024

#### Added
- Add `type` field for members and membership objects and subscribe response.

#### Fixed
- Fixed type which limited number of options which can be included into response / used in sorting for members / membership setting API.
- Fix missing `hereNowRefresh` flag from the presence object received from subscribe.
- Fix issue because of which `logVerbosity` set to `true` still didn't print logs for Node.js.

#### Modified
- Change format and add proper request body output.

## v8.3.2
December 12 2024

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ Watch [Getting Started with PubNub JS SDK](https://app.dashcam.io/replay/64ee0d2
npm install pubnub
```
* or download one of our builds from our CDN:
* https://cdn.pubnub.com/sdk/javascript/pubnub.8.3.2.js
* https://cdn.pubnub.com/sdk/javascript/pubnub.8.3.2.min.js
* https://cdn.pubnub.com/sdk/javascript/pubnub.8.4.0.js
* https://cdn.pubnub.com/sdk/javascript/pubnub.8.4.0.min.js
2. Configure your keys:
Expand Down
2 changes: 1 addition & 1 deletion dist/web/pubnub.js
Original file line number Diff line number Diff line change
Expand Up @@ -3961,7 +3961,7 @@
return base.PubNubFile;
},
get version() {
return '8.3.2';
return '8.4.0';
},
getVersion() {
return this.version;
Expand Down
2 changes: 1 addition & 1 deletion dist/web/pubnub.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lib/core/components/configuration.js
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ const makeConfiguration = (base, setupCryptoModule) => {
return base.PubNubFile;
},
get version() {
return '8.3.2';
return '8.4.0';
},
getVersion() {
return this.version;
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "pubnub",
"version": "8.3.2",
"version": "8.4.0",
"author": "PubNub <support@pubnub.com>",
"description": "Publish & Subscribe Real-time Messaging with PubNub",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/core/components/configuration.ts
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ export const makeConfiguration = (
return base.PubNubFile;
},
get version(): string {
return '8.3.2';
return '8.4.0';
},
getVersion(): string {
return this.version;
Expand Down

0 comments on commit a993c24

Please sign in to comment.