Skip to content

Commit c77cad3

Browse files
author
raipubnub
authored
Merge pull request pubnub#192 from pubnub/develop
Release v4.27.3
2 parents 6ff9ed5 + 048d486 commit c77cad3

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+7096
-13781
lines changed

.pubnub.yml

+11-2
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,18 @@ changelog:
33
-
44
changes:
55
-
6-
text: "disable presence heartbeats by default"
6+
text: "Support for APNS2 Push API"
7+
type: improvement
8+
-
9+
text: "Restore functionality to set heartbeat interval when presence timeout is set below the default"
710
type: bug
11+
date: 2020-01-06
12+
version: v4.27.3
13+
-
14+
changes:
815
-
16+
text: "disable presence heartbeats by default"
17+
type: bug
918
date: 2019-12-05
1019
version: v4.27.2
1120
-
@@ -792,4 +801,4 @@ supported-platforms:
792801
- "Ubuntu 14.04 and up"
793802
- "Windows 7 and up"
794803
version: "Pubnub Javascript for Node"
795-
version: "4.27.2"
804+
version: "4.27.3"

CHANGELOG.md

+13-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,16 @@
1-
## [v4.27.2](https://github.com/pubnub/javascript/tree/v4.27.2)
1+
## [v4.27.3](https://github.com/pubnub/javascript/tree/v4.27.3)
2+
January-06-2020
3+
4+
5+
[Full Changelog](https://github.com/pubnub/javascript/compare/v4.27.2...v4.27.3)
6+
7+
8+
9+
- ⭐ Support for APNS2 Push API
10+
- ⭐ Restore functionality to set heartbeat interval when presence timeout is set below the default
11+
12+
13+
## [v4.27.2](https://github.com/pubnub/javascript/tree/v4.27.2)
214
December-05-2019
315

416

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,5 @@ please use the [master_3x](https://github.com/pubnub/javascript/tree/master_3x)
2222

2323

2424

25-
* https://cdn.pubnub.com/sdk/javascript/pubnub.4.27.2.min.js
26-
* https://cdn.pubnub.com/sdk/javascript/pubnub.4.27.2.js
25+
* https://cdn.pubnub.com/sdk/javascript/pubnub.4.27.3.min.js
26+
* https://cdn.pubnub.com/sdk/javascript/pubnub.4.27.3.js

dist/titanium/pubnub.js

+954-132
Large diffs are not rendered by default.

dist/titanium/pubnub.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/web/pubnub.js

+973-151
Large diffs are not rendered by default.

dist/web/pubnub.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gulpfile.babel.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ gulp.task('test_web', done => {
150150

151151
gulp.task('test_node', () => {
152152
return gulp.src(['test/**/*.test.js', '!test/dist/*.js'], { read: false })
153-
.pipe(mocha({ reporter: 'spec', timeout: mochaTimeout }))
153+
.pipe(mocha({ reporter: 'spec', timeout: mochaTimeout, require: ['@babel/register'] }))
154154
.pipe(gulpIstanbul.writeReports({ reporters: ['json', 'lcov', 'text'] }));
155155
});
156156

@@ -168,13 +168,13 @@ gulp.task('test_titanium', gulp.series('unzip_titanium_sdk'), done => {
168168

169169
gulp.task('test_react-native', () => {
170170
return gulp.src('test/dist/react-native.test.js', { read: false })
171-
.pipe(mocha({ reporter: 'spec', timeout: mochaTimeout }))
171+
.pipe(mocha({ reporter: 'spec', timeout: mochaTimeout, require: ['@babel/register'] }))
172172
.pipe(gulpIstanbul.writeReports({ reporters: ['json', 'lcov', 'text'] }));
173173
});
174174

175175
gulp.task('test_release', () => {
176176
return gulp.src('test/release/**/*.test.js', { read: false })
177-
.pipe(mocha({ reporter: 'spec', timeout: mochaTimeout }));
177+
.pipe(mocha({ reporter: 'spec', timeout: mochaTimeout, require: ['@babel/register'] }));
178178
});
179179

180180
gulp.task('test', (done) => {

lib/core/components/config.js

+25-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/core/components/config.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/core/components/endpoint.js

+7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/core/components/endpoint.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)