Skip to content

Commit 0b7dede

Browse files
Releasing v4.29.0
1 parent 30ecabb commit 0b7dede

File tree

255 files changed

+22190
-10092
lines changed

Some content is hidden

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

255 files changed

+22190
-10092
lines changed

.babelrc

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
{
2-
"presets": ["@babel/preset-env"],
3-
"comments": false,
4-
"plugins": [
5-
"@babel/plugin-proposal-class-properties",
6-
"@babel/plugin-proposal-optional-chaining",
7-
"@babel/plugin-proposal-nullish-coalescing-operator",
8-
"@babel/plugin-transform-flow-strip-types",
9-
"@babel/plugin-transform-modules-commonjs",
10-
"add-module-exports"
11-
],
12-
"sourceMaps": true
2+
"presets": ["@babel/preset-env"],
3+
"comments": false,
4+
"plugins": [
5+
"@babel/plugin-transform-runtime",
6+
"@babel/plugin-proposal-class-properties",
7+
"@babel/plugin-proposal-optional-chaining",
8+
"@babel/plugin-proposal-nullish-coalescing-operator",
9+
"@babel/plugin-transform-flow-strip-types",
10+
"@babel/plugin-transform-modules-commonjs",
11+
"add-module-exports"
12+
],
13+
"sourceMaps": true
1314
}

.eslintrc.yml

Lines changed: 16 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,24 @@ plugins:
77
- flowtype
88

99
ignorePatterns:
10-
- "flow-typed/**/*"
11-
- "test/**/*"
10+
- 'flow-typed/**/*'
11+
- 'test/**/*'
1212

1313
globals:
14-
"$Shape": readonly
15-
"$Diff": readonly
14+
'$Shape': readonly
15+
'$Diff': readonly
16+
'$ReadOnlyArray': readonly
17+
'buffer$NonBufferEncoding': readonly
18+
'File': readonly
19+
'FileReader': readonly
20+
'atob': readonly
21+
'btoa': readonly
22+
'Blob': readonly
1623

1724
overrides:
1825
- files: test/**/*
19-
globals:
20-
"expect": readonly
26+
globals:
27+
'expect': readonly
2128
env:
2229
mocha: true
2330
rules:
@@ -43,12 +50,12 @@ rules:
4350
class-methods-use-this: 0
4451
no-await-in-loop: 0
4552
no-multi-assign: 0
46-
arrow-parens: [2, "always"]
47-
operator-linebreak: ["error", "after"]
53+
arrow-parens: [2, 'always']
54+
operator-linebreak: ['error', 'after']
4855
no-mixed-operators: 0
4956
lines-between-class-members: 0
5057
no-multi-spaces: 0
5158
object-curly-newline: 0
5259
prefer-destructuring: 0
5360
no-restricted-globals: 0
54-
space-before-function-paren: ["error", "never"]
61+
implicit-arrow-linebreak: off

.mocharc.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
spec: test/**/*.test.js
22
require: test/setup.js
3-
exclude: test/dist/*.js
3+
exclude:
4+
- test/dist/*.js
5+
- test/feature/*.js
46
timeout: 5000
5-
reporter: spec
7+
reporter: spec

.pubnub.yml

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
---
22
changelog:
3+
-
4+
changes:
5+
-
6+
text: "Allows to upload files to channels, download them with optional encryption support."
7+
type: feature
8+
-
9+
text: "Allows to enable random IVs when encrypting messages."
10+
type: feature
11+
-
12+
text: "Fixes a bug with PAM and Objects v2."
13+
type: bug
14+
date: 2020-08-04
15+
version: v4.29.0
316
-
417
changes:
518
-
@@ -868,4 +881,4 @@ supported-platforms:
868881
- "Ubuntu 14.04 and up"
869882
- "Windows 7 and up"
870883
version: "Pubnub Javascript for Node"
871-
version: "4.28.4"
884+
version: "4.29.0"

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
## [v4.29.0](https://github.com/pubnub/javascript/releases/tag/v4.29.0)
2+
August-04-2020
3+
4+
[Full Changelog](https://github.com/pubnub/javascript/compare/v4.28.4...v4.29.0)
5+
6+
- 🌟️ Allows to upload files to channels, download them with optional encryption support.
7+
- 🌟️ Allows to enable random IVs when encrypting messages.
8+
- 🐛 Fixes a bug with PAM and Objects v2.
9+
110
## [v4.28.4](https://github.com/pubnub/javascript/releases/tag/v4.28.4)
211
July-15-2020
312

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.28.4.min.js
26-
* https://cdn.pubnub.com/sdk/javascript/pubnub.4.28.4.js
25+
* https://cdn.pubnub.com/sdk/javascript/pubnub.4.29.0.min.js
26+
* https://cdn.pubnub.com/sdk/javascript/pubnub.4.29.0.js

0 commit comments

Comments
 (0)