Skip to content

Commit 9d56202

Browse files
PubNub SDK v7.4.2 release.
1 parent c729bbb commit 9d56202

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: 2023-10-30
4+
version: v7.4.2
5+
changes:
6+
- type: improvement
7+
text: "Changed license type from MIT to PubNub Software Development Kit License."
38
- date: 2023-10-17
49
version: v7.4.1
510
changes:
@@ -907,7 +912,7 @@ supported-platforms:
907912
- 'Ubuntu 14.04 and up'
908913
- 'Windows 7 and up'
909914
version: 'Pubnub Javascript for Node'
910-
version: '7.4.1'
915+
version: '7.4.2'
911916
sdks:
912917
- full-name: PubNub Javascript SDK
913918
short-name: Javascript
@@ -923,7 +928,7 @@ sdks:
923928
- distribution-type: source
924929
distribution-repository: GitHub release
925930
package-name: pubnub.js
926-
location: https://github.com/pubnub/javascript/archive/refs/tags/v7.4.1.zip
931+
location: https://github.com/pubnub/javascript/archive/refs/tags/v7.4.2.zip
927932
requires:
928933
- name: 'agentkeepalive'
929934
min-version: '3.5.2'
@@ -1594,7 +1599,7 @@ sdks:
15941599
- distribution-type: library
15951600
distribution-repository: GitHub release
15961601
package-name: pubnub.js
1597-
location: https://github.com/pubnub/javascript/releases/download/v7.4.1/pubnub.7.4.1.js
1602+
location: https://github.com/pubnub/javascript/releases/download/v7.4.2/pubnub.7.4.2.js
15981603
requires:
15991604
- name: 'agentkeepalive'
16001605
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+
## v7.4.2
2+
October 30 2023
3+
4+
#### Modified
5+
- Changed license type from MIT to PubNub Software Development Kit License.
6+
17
## v7.4.1
28
October 17 2023
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.7.4.1.js
32-
* https://cdn.pubnub.com/sdk/javascript/pubnub.7.4.1.min.js
31+
* https://cdn.pubnub.com/sdk/javascript/pubnub.7.4.2.js
32+
* https://cdn.pubnub.com/sdk/javascript/pubnub.7.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
@@ -791,7 +791,7 @@
791791
return this;
792792
};
793793
default_1.prototype.getVersion = function () {
794-
return '7.4.1';
794+
return '7.4.2';
795795
};
796796
default_1.prototype._addPnsdkSuffix = function (name, suffix) {
797797
this._PNSDKSuffix[name] = suffix;

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/config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ var default_1 = /** @class */ (function () {
177177
return this;
178178
};
179179
default_1.prototype.getVersion = function () {
180-
return '7.4.1';
180+
return '7.4.2';
181181
};
182182
default_1.prototype._addPnsdkSuffix = function (name, suffix) {
183183
this._PNSDKSuffix[name] = suffix;

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": "7.4.1",
3+
"version": "7.4.2",
44
"author": "PubNub <support@pubnub.com>",
55
"description": "Publish & Subscribe Real-time Messaging with PubNub",
66
"scripts": {

src/core/components/config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -350,7 +350,7 @@ export default class {
350350
}
351351

352352
getVersion() {
353-
return '7.4.1';
353+
return '7.4.2';
354354
}
355355

356356
_addPnsdkSuffix(name, suffix) {

0 commit comments

Comments
 (0)