Skip to content

Commit 07c6980

Browse files
author
raipubnub
authored
Merge pull request #161 from pubnub/develop
Release v4.24.5 - add signals support
2 parents 64a1a84 + 5a2818d commit 07c6980

File tree

171 files changed

+10702
-26753
lines changed

Some content is hidden

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

171 files changed

+10702
-26753
lines changed

.babelrc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
2-
"presets": ["es2015"],
2+
"presets": ["@babel/preset-env"],
33
"comments": false,
44
"plugins": [
5-
"transform-class-properties",
6-
"transform-flow-strip-types",
7-
"add-module-exports"
5+
"@babel/plugin-proposal-class-properties",
6+
"@babel/plugin-transform-flow-strip-types",
7+
"@babel/plugin-transform-modules-commonjs"
88
],
99
"sourceMaps": true
1010
}

.eslintignore

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
coverage
2+
dist
3+
karma
4+
lib
5+
node_modules
6+
test/dist
7+
upload
8+
gulpfile.babel.js
9+
webpack.config.js

.eslintrc.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,17 @@ rules:
1818
no-underscore-dangle: 0
1919
no-prototype-builtins: 0
2020
import/no-extraneous-dependencies: 0
21+
import/no-useless-path-segments: 0
22+
import/named: 0
2123
class-methods-use-this: 0
2224
no-await-in-loop: 0
2325
no-multi-assign: 0
24-
arrow-parens: [2, "as-needed"]
26+
arrow-parens: [2, "always"]
2527
operator-linebreak: ["error", "after"]
2628
no-mixed-operators: 0
29+
lines-between-class-members: 0
30+
no-multi-spaces: 0
31+
object-curly-newline: 0
32+
prefer-destructuring: 0
33+
no-restricted-globals: 0
34+
space-before-function-paren: ["error", "never"]

.flowconfig

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,3 @@
1010

1111
[options]
1212
esproposal.class_static_fields=enable
13-
unsafe.enable_getters_and_setters=true

.pubnub.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
---
22
changelog:
3+
-
4+
changes:
5+
-
6+
text: "Add Signals support"
7+
type: improvement
8+
date: 2019-08-07
9+
version: v4.24.5
310
-
411
changes:
512
-
@@ -636,6 +643,9 @@ features:
636643
- SUBSCRIBE-WILDCARD
637644
- SUBSCRIBE-FILTER-EXPRESSION
638645
- SUBSCRIBE-PUBLISHER-UUID
646+
- SUBSCRIBE-SIGNAL-LISTENER
647+
signal:
648+
- SIGNAL-SEND
639649
time:
640650
- TIME-TIME
641651
files:
@@ -670,4 +680,4 @@ supported-platforms:
670680
- "Ubuntu 14.04 and above"
671681
- "Windows 7, 8, 10"
672682
version: "Pubnub Javascript for Node"
673-
version: "4.24.4"
683+
version: "4.24.5"

.travis.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
language: node_js
22
sudo: false
33
node_js:
4-
- '4'
5-
- '5'
6-
- '6'
7-
- '7'
4+
- '8.9.0'
5+
- '10.13.0'
6+
- '12'
87
env:
98
- CXX=g++-4.8
109
addons:
@@ -13,10 +12,8 @@ addons:
1312
- ubuntu-toolchain-r-test
1413
packages:
1514
- g++-4.8
16-
cache: yarn
1715
script:
1816
- gulp test
19-
- npm install -g bower
2017
after_success:
2118
- npm install codecov codacy-coverage
2219
- cat ./coverage/lcov.info | node_modules/.bin/codacy-coverage

CHANGELOG.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,16 @@
1-
## [v4.24.4](https://github.com/pubnub/javascript/tree/v4.24.4)
1+
## [v4.24.5](https://github.com/pubnub/javascript/tree/v4.24.5)
2+
August-07-2019
3+
4+
5+
[Full Changelog](https://github.com/pubnub/javascript/compare/v4.24.4...v4.24.5)
6+
7+
8+
9+
- ⭐ Add Signals support
10+
11+
12+
13+
## [v4.24.4](https://github.com/pubnub/javascript/tree/v4.24.4)
214
July-26-2019
315

416

README.md

Lines changed: 2 additions & 2 deletions
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.24.4.min.js
26-
* https://cdn.pubnub.com/sdk/javascript/pubnub.4.24.4.js
25+
* https://cdn.pubnub.com/sdk/javascript/pubnub.4.24.5.min.js
26+
* https://cdn.pubnub.com/sdk/javascript/pubnub.4.24.5.js

0 commit comments

Comments
 (0)