Skip to content

Commit 455dddc

Browse files
author
Max Presman
committed
4.8.0
1 parent 52ecf5f commit 455dddc

File tree

11 files changed

+28
-13
lines changed

11 files changed

+28
-13
lines changed

.pubnub.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,16 @@
11
name: javascript
2-
version: 4.7.0
2+
version: 4.8.0
33
schema: 1
44
scm: github.com/pubnub/javascript
55
files:
66
- dist/web/pubnub.js
77
- dist/web/pubnub.min.js
88
changelog:
9+
- version: v4.8.0
10+
date:
11+
changes:
12+
- type: feature
13+
text: allow manual control over network state via listenToBrowserNetworkEvents
914
- version: v4.7.0
1015
date:
1116
changes:

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,14 @@
11

2+
## [v4.8.0](https://github.com/pubnub/javascript/tree/v4.8.0)
3+
4+
5+
[Full Changelog](https://github.com/pubnub/javascript/compare/v4.7.0...v4.8.0)
6+
7+
- 🌟allow manual control over network state via listenToBrowserNetworkEvents
8+
9+
10+
11+
212
## [v4.7.0](https://github.com/pubnub/javascript/tree/v4.7.0)
313

414

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,5 @@ please use the [master_3x](https://github.com/pubnub/javascript/tree/master_3x)
1919
- If you **need help** or have a **general question**, contact <[email protected]>
2020

2121
## CDN Links
22-
* https://cdn.pubnub.com/sdk/javascript/pubnub.4.7.0.min.js
23-
* https://cdn.pubnub.com/sdk/javascript/pubnub.4.7.0.js
22+
* https://cdn.pubnub.com/sdk/javascript/pubnub.4.8.0.min.js
23+
* https://cdn.pubnub.com/sdk/javascript/pubnub.4.8.0.js

dist/titanium/pubnub.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! 4.7.0 / Consumer */
1+
/*! 4.8.0 / Consumer */
22
(function webpackUniversalModuleDefinition(root, factory) {
33
if(typeof exports === 'object' && typeof module === 'object')
44
module.exports = factory();
@@ -785,7 +785,7 @@ return /******/ (function(modules) { // webpackBootstrap
785785
}, {
786786
key: 'getVersion',
787787
value: function getVersion() {
788-
return '4.7.0';
788+
return '4.8.0';
789789
}
790790
}, {
791791
key: '_decideUUID',

dist/titanium/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.

dist/web/pubnub.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! 4.7.0 / Consumer */
1+
/*! 4.8.0 / Consumer */
22
(function webpackUniversalModuleDefinition(root, factory) {
33
if(typeof exports === 'object' && typeof module === 'object')
44
module.exports = factory();
@@ -807,7 +807,7 @@ return /******/ (function(modules) { // webpackBootstrap
807807
}, {
808808
key: 'getVersion',
809809
value: function getVersion() {
810-
return '4.7.0';
810+
return '4.8.0';
811811
}
812812
}, {
813813
key: '_decideUUID',

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
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/core/components/config.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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": "4.7.0",
3+
"version": "4.8.0",
44
"author": "PubNub <[email protected]>",
55
"description": "Publish & Subscribe Real-time Messaging with PubNub",
66
"bin": {},

src/core/components/config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ export default class {
196196
setSendBeaconConfig(val: boolean): this { this._useSendBeacon = val; return this; }
197197

198198
getVersion(): string {
199-
return '4.7.0';
199+
return '4.8.0';
200200
}
201201

202202
_decideUUID(providedUUID: string): string {

0 commit comments

Comments
 (0)