Skip to content

Commit

Permalink
add buffer to react native. remove web crypto polyfill (#237)
Browse files Browse the repository at this point in the history
* update version

* PubNub SDK v4.36.0 release.

Co-authored-by: Client Engineering Bot <60980775+Client Engineering Bot@users.noreply.github.com>
  • Loading branch information
raipubnub and Client Engineering Bot authored Dec 9, 2021
1 parent d675005 commit dce2a24
Show file tree
Hide file tree
Showing 11 changed files with 28 additions and 17 deletions.
11 changes: 8 additions & 3 deletions .pubnub.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
---
changelog:
- date: 2021-12-09
version: v4.36.0
changes:
- type: bug
text: "Remove isomorphic-webcrypto polyfill for web Add buffer polyfill to react native."
- date: 2021-12-02
version: v4.35.0
changes:
Expand Down Expand Up @@ -1081,7 +1086,7 @@ supported-platforms:
- "Ubuntu 14.04 and up"
- "Windows 7 and up"
version: "Pubnub Javascript for Node"
version: "4.35.0"
version: "4.36.0"
sdks:
-
full-name: PubNub Javascript SDK
Expand All @@ -1100,7 +1105,7 @@ sdks:
distribution-type: source
distribution-repository: GitHub release
package-name: pubnub.js
location: https://github.com/pubnub/javascript/archive/refs/tags/v4.35.0.zip
location: https://github.com/pubnub/javascript/archive/refs/tags/v4.36.0.zip
requires:
-
name: "agentkeepalive"
Expand Down Expand Up @@ -1864,7 +1869,7 @@ sdks:
distribution-type: library
distribution-repository: GitHub release
package-name: pubnub.js
location: https://github.com/pubnub/javascript/releases/download/v4.35.0/pubnub.4.35.0.js
location: https://github.com/pubnub/javascript/releases/download/v4.36.0/pubnub.4.36.0.js
requires:
-
name: "agentkeepalive"
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## v4.36.0
December 09 2021

#### Fixed
- Remove isomorphic-webcrypto polyfill for web Add buffer polyfill to react native. Fixed the following issues reported by [@JakeOrel](https://github.com/JakeOrel): [#233](https://github.com/pubnub/javascript/issues/233).

## v4.35.0
December 02 2021

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ You will need the publish and subscribe keys to authenticate your app. Get your
npm install pubnub
```
* or download one of our builds from our CDN:
* https://cdn.pubnub.com/sdk/javascript/pubnub.4.35.0.js
* https://cdn.pubnub.com/sdk/javascript/pubnub.4.35.0.min.js
* https://cdn.pubnub.com/sdk/javascript/pubnub.4.36.0.js
* https://cdn.pubnub.com/sdk/javascript/pubnub.4.36.0.min.js
2. Configure your keys:
Expand Down
4 changes: 2 additions & 2 deletions dist/titanium/pubnub.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! 4.35.0 / Consumer */
/*! 4.36.0 / Consumer */
exports["PubNub"] =
/******/ (function(modules) { // webpackBootstrap
/******/ // The module cache
Expand Down Expand Up @@ -588,7 +588,7 @@ var _default = function () {
}, {
key: "getVersion",
value: function getVersion() {
return '4.35.0';
return '4.36.0';
}
}, {
key: "_addPnsdkSuffix",
Expand Down
4 changes: 2 additions & 2 deletions dist/titanium/pubnub.min.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/web/pubnub.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! 4.35.0 / Consumer */
/*! 4.36.0 / Consumer */
(function webpackUniversalModuleDefinition(root, factory) {
if(typeof exports === 'object' && typeof module === 'object')
module.exports = factory();
Expand Down Expand Up @@ -598,7 +598,7 @@ var _default = function () {
}, {
key: "getVersion",
value: function getVersion() {
return '4.35.0';
return '4.36.0';
}
}, {
key: "_addPnsdkSuffix",
Expand Down
4 changes: 2 additions & 2 deletions dist/web/pubnub.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lib/core/components/config.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lib/core/components/config.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "pubnub",
"version": "4.35.0",
"version": "4.36.0",
"author": "PubNub <support@pubnub.com>",
"description": "Publish & Subscribe Real-time Messaging with PubNub",
"bin": {},
Expand Down
2 changes: 1 addition & 1 deletion src/core/components/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,7 @@ export default class {
}

getVersion(): string {
return '4.35.0';
return '4.36.0';
}

_addPnsdkSuffix(name: string, suffix: string) {
Expand Down

0 comments on commit dce2a24

Please sign in to comment.