Skip to content

add buffer to react native. remove web crypto polyfill #237

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
2 commits merged into from
Dec 9, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 <[email protected]>",
"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