Skip to content

Commit

Permalink
Releasing v4.29.0
Browse files Browse the repository at this point in the history
  • Loading branch information
client-engineering-bot committed Aug 4, 2020
1 parent 30ecabb commit 0b7dede
Show file tree
Hide file tree
Showing 255 changed files with 22,190 additions and 10,092 deletions.
23 changes: 12 additions & 11 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
{
"presets": ["@babel/preset-env"],
"comments": false,
"plugins": [
"@babel/plugin-proposal-class-properties",
"@babel/plugin-proposal-optional-chaining",
"@babel/plugin-proposal-nullish-coalescing-operator",
"@babel/plugin-transform-flow-strip-types",
"@babel/plugin-transform-modules-commonjs",
"add-module-exports"
],
"sourceMaps": true
"presets": ["@babel/preset-env"],
"comments": false,
"plugins": [
"@babel/plugin-transform-runtime",
"@babel/plugin-proposal-class-properties",
"@babel/plugin-proposal-optional-chaining",
"@babel/plugin-proposal-nullish-coalescing-operator",
"@babel/plugin-transform-flow-strip-types",
"@babel/plugin-transform-modules-commonjs",
"add-module-exports"
],
"sourceMaps": true
}
25 changes: 16 additions & 9 deletions .eslintrc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,24 @@ plugins:
- flowtype

ignorePatterns:
- "flow-typed/**/*"
- "test/**/*"
- 'flow-typed/**/*'
- 'test/**/*'

globals:
"$Shape": readonly
"$Diff": readonly
'$Shape': readonly
'$Diff': readonly
'$ReadOnlyArray': readonly
'buffer$NonBufferEncoding': readonly
'File': readonly
'FileReader': readonly
'atob': readonly
'btoa': readonly
'Blob': readonly

overrides:
- files: test/**/*
globals:
"expect": readonly
globals:
'expect': readonly
env:
mocha: true
rules:
Expand All @@ -43,12 +50,12 @@ rules:
class-methods-use-this: 0
no-await-in-loop: 0
no-multi-assign: 0
arrow-parens: [2, "always"]
operator-linebreak: ["error", "after"]
arrow-parens: [2, 'always']
operator-linebreak: ['error', 'after']
no-mixed-operators: 0
lines-between-class-members: 0
no-multi-spaces: 0
object-curly-newline: 0
prefer-destructuring: 0
no-restricted-globals: 0
space-before-function-paren: ["error", "never"]
implicit-arrow-linebreak: off
6 changes: 4 additions & 2 deletions .mocharc.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
spec: test/**/*.test.js
require: test/setup.js
exclude: test/dist/*.js
exclude:
- test/dist/*.js
- test/feature/*.js
timeout: 5000
reporter: spec
reporter: spec
15 changes: 14 additions & 1 deletion .pubnub.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
---
changelog:
-
changes:
-
text: "Allows to upload files to channels, download them with optional encryption support."
type: feature
-
text: "Allows to enable random IVs when encrypting messages."
type: feature
-
text: "Fixes a bug with PAM and Objects v2."
type: bug
date: 2020-08-04
version: v4.29.0
-
changes:
-
Expand Down Expand Up @@ -868,4 +881,4 @@ supported-platforms:
- "Ubuntu 14.04 and up"
- "Windows 7 and up"
version: "Pubnub Javascript for Node"
version: "4.28.4"
version: "4.29.0"
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
## [v4.29.0](https://github.com/pubnub/javascript/releases/tag/v4.29.0)
August-04-2020

[Full Changelog](https://github.com/pubnub/javascript/compare/v4.28.4...v4.29.0)

- 🌟️ Allows to upload files to channels, download them with optional encryption support.
- 🌟️ Allows to enable random IVs when encrypting messages.
- 🐛 Fixes a bug with PAM and Objects v2.

## [v4.28.4](https://github.com/pubnub/javascript/releases/tag/v4.28.4)
July-15-2020

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,5 @@ please use the [master_3x](https://github.com/pubnub/javascript/tree/master_3x)



* https://cdn.pubnub.com/sdk/javascript/pubnub.4.28.4.min.js
* https://cdn.pubnub.com/sdk/javascript/pubnub.4.28.4.js
* https://cdn.pubnub.com/sdk/javascript/pubnub.4.29.0.min.js
* https://cdn.pubnub.com/sdk/javascript/pubnub.4.29.0.js
Loading

0 comments on commit 0b7dede

Please sign in to comment.