Skip to content

Commit 6e58db1

Browse files
v4.19.0
1 parent d501af9 commit 6e58db1

20 files changed

+199
-22
lines changed

.pubnub.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,20 @@
11
name: javascript
2-
version: 4.18.0
2+
version: 4.19.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.19.0
10+
date: 2017-12-05
11+
changes:
12+
- type: feature
13+
text: add support for Native Script
14+
- type: improvement
15+
text: add missing flow types
16+
- type: improvement
17+
text: upgrade superagent to ^3.8.1
918
- version: v4.18.0
1019
date: 2017-11-20
1120
changes:

CHANGELOG.md

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

2+
## [v4.19.0](https://github.com/pubnub/javascript/tree/v4.19.0)
3+
December-05-2017
4+
5+
6+
[Full Changelog](https://github.com/pubnub/javascript/compare/v4.18.0...v4.19.0)
7+
8+
9+
- ⭐ add support for Native Script
10+
11+
12+
- 🌟 add missing flow types
13+
14+
15+
- 🌟 upgrade superagent to ^3.8.1
16+
17+
18+
219
## [v4.18.0](https://github.com/pubnub/javascript/tree/v4.18.0)
320
November-20-2017
421

@@ -7,6 +24,8 @@
724

825

926
- ⭐ keepAlive is now initialized globally instead of per-call, allowing better connection reuse
27+
28+
1029
- 🌟 added sdkName configuration parameter which allow completely override pnsdk in request query
1130

1231

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.18.0.min.js
23-
* https://cdn.pubnub.com/sdk/javascript/pubnub.4.18.0.js
22+
* https://cdn.pubnub.com/sdk/javascript/pubnub.4.19.0.min.js
23+
* https://cdn.pubnub.com/sdk/javascript/pubnub.4.19.0.js

dist/titanium/pubnub.js

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! 4.18.0 / Consumer */
1+
/*! 4.19.0 / Consumer */
22
(function webpackUniversalModuleDefinition(root, factory) {
33
if(typeof exports === 'object' && typeof module === 'object')
44
module.exports = factory();
@@ -573,7 +573,7 @@ return /******/ (function(modules) { // webpackBootstrap
573573
}, {
574574
key: 'getVersion',
575575
value: function getVersion() {
576-
return '4.18.0';
576+
return '4.19.0';
577577
}
578578
}, {
579579
key: '_decideUUID',
@@ -1829,7 +1829,9 @@ return /******/ (function(modules) { // webpackBootstrap
18291829
key: '_stopSubscribeLoop',
18301830
value: function _stopSubscribeLoop() {
18311831
if (this._subscribeCall) {
1832-
this._subscribeCall.abort();
1832+
if (typeof this._subscribeCall.abort === 'function') {
1833+
this._subscribeCall.abort();
1834+
}
18331835
this._subscribeCall = null;
18341836
}
18351837
}
@@ -2144,6 +2146,8 @@ return /******/ (function(modules) { // webpackBootstrap
21442146

21452147
var _config2 = _interopRequireDefault(_config);
21462148

2149+
var _flow_interfaces = __webpack_require__(5);
2150+
21472151
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
21482152

21492153
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }

dist/titanium/pubnub.min.js

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/web/pubnub.js

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! 4.18.0 / Consumer */
1+
/*! 4.19.0 / Consumer */
22
(function webpackUniversalModuleDefinition(root, factory) {
33
if(typeof exports === 'object' && typeof module === 'object')
44
module.exports = factory();
@@ -595,7 +595,7 @@ return /******/ (function(modules) { // webpackBootstrap
595595
}, {
596596
key: 'getVersion',
597597
value: function getVersion() {
598-
return '4.18.0';
598+
return '4.19.0';
599599
}
600600
}, {
601601
key: '_decideUUID',
@@ -1851,7 +1851,9 @@ return /******/ (function(modules) { // webpackBootstrap
18511851
key: '_stopSubscribeLoop',
18521852
value: function _stopSubscribeLoop() {
18531853
if (this._subscribeCall) {
1854-
this._subscribeCall.abort();
1854+
if (typeof this._subscribeCall.abort === 'function') {
1855+
this._subscribeCall.abort();
1856+
}
18551857
this._subscribeCall = null;
18561858
}
18571859
}
@@ -2166,6 +2168,8 @@ return /******/ (function(modules) { // webpackBootstrap
21662168

21672169
var _config2 = _interopRequireDefault(_config);
21682170

2171+
var _flow_interfaces = __webpack_require__(5);
2172+
21692173
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
21702174

21712175
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }

dist/web/pubnub.min.js

Lines changed: 2 additions & 2 deletions
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.

lib/core/components/deduping_manager.js

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/core/components/deduping_manager.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.

lib/core/components/subscription_manager.js

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

lib/core/components/subscription_manager.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.

0 commit comments

Comments
 (0)