Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 8 additions & 3 deletions .pubnub.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
---
changelog:
- date: 2023-10-30
version: v7.4.2
changes:
- type: improvement
text: "Changed license type from MIT to PubNub Software Development Kit License."
- date: 2023-10-17
version: v7.4.1
changes:
Expand Down Expand Up @@ -907,7 +912,7 @@ supported-platforms:
- 'Ubuntu 14.04 and up'
- 'Windows 7 and up'
version: 'Pubnub Javascript for Node'
version: '7.4.1'
version: '7.4.2'
sdks:
- full-name: PubNub Javascript SDK
short-name: Javascript
Expand All @@ -923,7 +928,7 @@ sdks:
- distribution-type: source
distribution-repository: GitHub release
package-name: pubnub.js
location: https://github.com/pubnub/javascript/archive/refs/tags/v7.4.1.zip
location: https://github.com/pubnub/javascript/archive/refs/tags/v7.4.2.zip
requires:
- name: 'agentkeepalive'
min-version: '3.5.2'
Expand Down Expand Up @@ -1594,7 +1599,7 @@ sdks:
- distribution-type: library
distribution-repository: GitHub release
package-name: pubnub.js
location: https://github.com/pubnub/javascript/releases/download/v7.4.1/pubnub.7.4.1.js
location: https://github.com/pubnub/javascript/releases/download/v7.4.2/pubnub.7.4.2.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 @@
## v7.4.2
October 30 2023

#### Modified
- Changed license type from MIT to PubNub Software Development Kit License.

## v7.4.1
October 17 2023

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.7.4.1.js
* https://cdn.pubnub.com/sdk/javascript/pubnub.7.4.1.min.js
* https://cdn.pubnub.com/sdk/javascript/pubnub.7.4.2.js
* https://cdn.pubnub.com/sdk/javascript/pubnub.7.4.2.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 @@ -791,7 +791,7 @@
return this;
};
default_1.prototype.getVersion = function () {
return '7.4.1';
return '7.4.2';
};
default_1.prototype._addPnsdkSuffix = function (name, suffix) {
this._PNSDKSuffix[name] = suffix;
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/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ var default_1 = /** @class */ (function () {
return this;
};
default_1.prototype.getVersion = function () {
return '7.4.1';
return '7.4.2';
};
default_1.prototype._addPnsdkSuffix = function (name, suffix) {
this._PNSDKSuffix[name] = suffix;
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "pubnub",
"version": "7.4.1",
"version": "7.4.2",
"author": "PubNub <support@pubnub.com>",
"description": "Publish & Subscribe Real-time Messaging with PubNub",
"scripts": {
Expand Down Expand Up @@ -98,7 +98,7 @@
"typescript": "^4.3.5",
"underscore": "^1.9.2"
},
"license": "MIT",
"license": "SEE LICENSE IN LICENSE",
"engine": {
"node": ">=0.8"
}
Expand Down
2 changes: 1 addition & 1 deletion src/core/components/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,7 @@ export default class {
}

getVersion() {
return '7.4.1';
return '7.4.2';
}

_addPnsdkSuffix(name, suffix) {
Expand Down