Skip to content

Commit 070fe07

Browse files
PubNub SDK v8.4.2 release.
1 parent 9f8c228 commit 070fe07

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: 2025-01-08
4+
version: v8.4.2
5+
changes:
6+
- type: bug
7+
text: "Fix issue with missing `StatusCategory` export in types definition file."
38
- date: 2025-01-02
49
version: v8.4.1
510
changes:
@@ -1099,7 +1104,7 @@ supported-platforms:
10991104
- 'Ubuntu 14.04 and up'
11001105
- 'Windows 7 and up'
11011106
version: 'Pubnub Javascript for Node'
1102-
version: '8.4.1'
1107+
version: '8.4.2'
11031108
sdks:
11041109
- full-name: PubNub Javascript SDK
11051110
short-name: Javascript
@@ -1115,7 +1120,7 @@ sdks:
11151120
- distribution-type: source
11161121
distribution-repository: GitHub release
11171122
package-name: pubnub.js
1118-
location: https://github.com/pubnub/javascript/archive/refs/tags/v8.4.1.zip
1123+
location: https://github.com/pubnub/javascript/archive/refs/tags/v8.4.2.zip
11191124
requires:
11201125
- name: 'agentkeepalive'
11211126
min-version: '3.5.2'
@@ -1786,7 +1791,7 @@ sdks:
17861791
- distribution-type: library
17871792
distribution-repository: GitHub release
17881793
package-name: pubnub.js
1789-
location: https://github.com/pubnub/javascript/releases/download/v8.4.1/pubnub.8.4.1.js
1794+
location: https://github.com/pubnub/javascript/releases/download/v8.4.2/pubnub.8.4.2.js
17901795
requires:
17911796
- name: 'agentkeepalive'
17921797
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.4.2
2+
January 08 2025
3+
4+
#### Fixed
5+
- Fix issue with missing `StatusCategory` export in types definition file.
6+
17
## v8.4.1
28
January 02 2025
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.4.1.js
32-
* https://cdn.pubnub.com/sdk/javascript/pubnub.8.4.1.min.js
31+
* https://cdn.pubnub.com/sdk/javascript/pubnub.8.4.2.js
32+
* https://cdn.pubnub.com/sdk/javascript/pubnub.8.4.2.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
@@ -3961,7 +3961,7 @@
39613961
return base.PubNubFile;
39623962
},
39633963
get version() {
3964-
return '8.4.1';
3964+
return '8.4.2';
39653965
},
39663966
getVersion() {
39673967
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.4.1';
115+
return '8.4.2';
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.4.1",
3+
"version": "8.4.2",
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.4.1';
174+
return '8.4.2';
175175
},
176176
getVersion(): string {
177177
return this.version;

0 commit comments

Comments
 (0)