Skip to content

Commit dce2a24

Browse files
raipubnubClient Engineering Bot
raipubnub
and
Client Engineering Bot
authored
add buffer to react native. remove web crypto polyfill (pubnub#237)
* update version * PubNub SDK v4.36.0 release. Co-authored-by: Client Engineering Bot <60980775+Client Engineering [email protected]>
1 parent d675005 commit dce2a24

File tree

11 files changed

+28
-17
lines changed

11 files changed

+28
-17
lines changed

.pubnub.yml

+8-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
---
22
changelog:
3+
- date: 2021-12-09
4+
version: v4.36.0
5+
changes:
6+
- type: bug
7+
text: "Remove isomorphic-webcrypto polyfill for web Add buffer polyfill to react native."
38
- date: 2021-12-02
49
version: v4.35.0
510
changes:
@@ -1081,7 +1086,7 @@ supported-platforms:
10811086
- "Ubuntu 14.04 and up"
10821087
- "Windows 7 and up"
10831088
version: "Pubnub Javascript for Node"
1084-
version: "4.35.0"
1089+
version: "4.36.0"
10851090
sdks:
10861091
-
10871092
full-name: PubNub Javascript SDK
@@ -1100,7 +1105,7 @@ sdks:
11001105
distribution-type: source
11011106
distribution-repository: GitHub release
11021107
package-name: pubnub.js
1103-
location: https://github.com/pubnub/javascript/archive/refs/tags/v4.35.0.zip
1108+
location: https://github.com/pubnub/javascript/archive/refs/tags/v4.36.0.zip
11041109
requires:
11051110
-
11061111
name: "agentkeepalive"
@@ -1864,7 +1869,7 @@ sdks:
18641869
distribution-type: library
18651870
distribution-repository: GitHub release
18661871
package-name: pubnub.js
1867-
location: https://github.com/pubnub/javascript/releases/download/v4.35.0/pubnub.4.35.0.js
1872+
location: https://github.com/pubnub/javascript/releases/download/v4.36.0/pubnub.4.36.0.js
18681873
requires:
18691874
-
18701875
name: "agentkeepalive"

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## v4.36.0
2+
December 09 2021
3+
4+
#### Fixed
5+
- 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).
6+
17
## v4.35.0
28
December 02 2021
39

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ You will need the publish and subscribe keys to authenticate your app. Get your
2222
npm install pubnub
2323
```
2424
* or download one of our builds from our CDN:
25-
* https://cdn.pubnub.com/sdk/javascript/pubnub.4.35.0.js
26-
* https://cdn.pubnub.com/sdk/javascript/pubnub.4.35.0.min.js
25+
* https://cdn.pubnub.com/sdk/javascript/pubnub.4.36.0.js
26+
* https://cdn.pubnub.com/sdk/javascript/pubnub.4.36.0.min.js
2727
2828
2. Configure your keys:
2929

dist/titanium/pubnub.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! 4.35.0 / Consumer */
1+
/*! 4.36.0 / Consumer */
22
exports["PubNub"] =
33
/******/ (function(modules) { // webpackBootstrap
44
/******/ // The module cache
@@ -588,7 +588,7 @@ var _default = function () {
588588
}, {
589589
key: "getVersion",
590590
value: function getVersion() {
591-
return '4.35.0';
591+
return '4.36.0';
592592
}
593593
}, {
594594
key: "_addPnsdkSuffix",

dist/titanium/pubnub.min.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/web/pubnub.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! 4.35.0 / Consumer */
1+
/*! 4.36.0 / Consumer */
22
(function webpackUniversalModuleDefinition(root, factory) {
33
if(typeof exports === 'object' && typeof module === 'object')
44
module.exports = factory();
@@ -598,7 +598,7 @@ var _default = function () {
598598
}, {
599599
key: "getVersion",
600600
value: function getVersion() {
601-
return '4.35.0';
601+
return '4.36.0';
602602
}
603603
}, {
604604
key: "_addPnsdkSuffix",

dist/web/pubnub.min.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/core/components/config.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/core/components/config.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "pubnub",
3-
"version": "4.35.0",
3+
"version": "4.36.0",
44
"author": "PubNub <[email protected]>",
55
"description": "Publish & Subscribe Real-time Messaging with PubNub",
66
"bin": {},

src/core/components/config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -313,7 +313,7 @@ export default class {
313313
}
314314

315315
getVersion(): string {
316-
return '4.35.0';
316+
return '4.36.0';
317317
}
318318

319319
_addPnsdkSuffix(name: string, suffix: string) {

0 commit comments

Comments
 (0)