Skip to content

Commit

Permalink
PubNub SDK v8.0.1 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
pubnub-release-bot committed Apr 23, 2024
1 parent 0366423 commit bcbf073
Show file tree
Hide file tree
Showing 8 changed files with 21 additions and 10 deletions.
11 changes: 8 additions & 3 deletions .pubnub.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
---
changelog:
- date: 2024-04-23
version: v8.0.1
changes:
- type: improvement
text: "Provider configuration option to set service worker from the URL (because of browser restrictions for worker files to be registered from the same domain)."
- date: 2024-04-22
version: v8.0.0
changes:
Expand Down Expand Up @@ -967,7 +972,7 @@ supported-platforms:
- 'Ubuntu 14.04 and up'
- 'Windows 7 and up'
version: 'Pubnub Javascript for Node'
version: '8.0.0'
version: '8.0.1'
sdks:
- full-name: PubNub Javascript SDK
short-name: Javascript
Expand All @@ -983,7 +988,7 @@ sdks:
- distribution-type: source
distribution-repository: GitHub release
package-name: pubnub.js
location: https://github.com/pubnub/javascript/archive/refs/tags/v8.0.0.zip
location: https://github.com/pubnub/javascript/archive/refs/tags/v8.0.1.zip
requires:
- name: 'agentkeepalive'
min-version: '3.5.2'
Expand Down Expand Up @@ -1654,7 +1659,7 @@ sdks:
- distribution-type: library
distribution-repository: GitHub release
package-name: pubnub.js
location: https://github.com/pubnub/javascript/releases/download/v8.0.0/pubnub.8.0.0.js
location: https://github.com/pubnub/javascript/releases/download/v8.0.1/pubnub.8.0.1.js
requires:
- name: 'agentkeepalive'
min-version: '3.5.2'
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## v8.0.1
April 23 2024

#### Modified
- Provider configuration option to set service worker from the URL (because of browser restrictions for worker files to be registered from the same domain).

## v8.0.0
April 22 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.0.0.js
* https://cdn.pubnub.com/sdk/javascript/pubnub.8.0.0.min.js
* https://cdn.pubnub.com/sdk/javascript/pubnub.8.0.1.js
* https://cdn.pubnub.com/sdk/javascript/pubnub.8.0.1.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 @@ -3777,7 +3777,7 @@
return base.PubNubFile;
},
get version() {
return '8.0.0';
return '8.0.1';
},
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 @@ -86,7 +86,7 @@ const makeConfiguration = (base, setupCryptoModule) => {
return base.PubNubFile;
},
get version() {
return '8.0.0';
return '8.0.1';
},
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.0.0",
"version": "8.0.1",
"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 @@ -163,7 +163,7 @@ export const makeConfiguration = (
return base.PubNubFile;
},
get version(): string {
return '8.0.0';
return '8.0.1';
},
getVersion(): string {
return this.version;
Expand Down

0 comments on commit bcbf073

Please sign in to comment.