Skip to content

Commit 565853e

Browse files
Releasing v4.29.8
1 parent 65d9b63 commit 565853e

File tree

14 files changed

+30
-21
lines changed

14 files changed

+30
-21
lines changed

.pubnub.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
---
22
changelog:
3+
-
4+
changes:
5+
-
6+
text: "Fixes compatibility with @sentry/react-native library."
7+
type: bug
8+
date: 2020-09-21
9+
version: v4.29.8
310
-
411
changes:
512
-
@@ -957,4 +964,4 @@ supported-platforms:
957964
- "Ubuntu 14.04 and up"
958965
- "Windows 7 and up"
959966
version: "Pubnub Javascript for Node"
960-
version: "4.29.7"
967+
version: "4.29.8"

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## [v4.29.8](https://github.com/pubnub/javascript/releases/tag/v4.29.8)
2+
September-21-2020
3+
4+
[Full Changelog](https://github.com/pubnub/javascript/compare/v4.29.7...v4.29.8)
5+
6+
- 🐛 Fixes compatibility with @sentry/react-native library.
7+
18
## [v4.29.7](https://github.com/pubnub/javascript/releases/tag/v4.29.7)
29
September-14-2020
310

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.29.7.min.js
26-
* https://cdn.pubnub.com/sdk/javascript/pubnub.4.29.7.js
25+
* https://cdn.pubnub.com/sdk/javascript/pubnub.4.29.8.min.js
26+
* https://cdn.pubnub.com/sdk/javascript/pubnub.4.29.8.js

dist/titanium/pubnub.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! 4.29.7 / Consumer */
1+
/*! 4.29.8 / Consumer */
22
exports["PubNub"] =
33
/******/ (function(modules) { // webpackBootstrap
44
/******/ // The module cache
@@ -566,7 +566,7 @@ var _default = function () {
566566
}, {
567567
key: "getVersion",
568568
value: function getVersion() {
569-
return '4.29.7';
569+
return '4.29.8';
570570
}
571571
}, {
572572
key: "_addPnsdkSuffix",

dist/titanium/pubnub.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/web/pubnub.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! 4.29.7 / Consumer */
1+
/*! 4.29.8 / Consumer */
22
(function webpackUniversalModuleDefinition(root, factory) {
33
if(typeof exports === 'object' && typeof module === 'object')
44
module.exports = factory();
@@ -576,7 +576,7 @@ var _default = function () {
576576
}, {
577577
key: "getVersion",
578578
value: function getVersion() {
579-
return '4.29.7';
579+
return '4.29.8';
580580
}
581581
}, {
582582
key: "_addPnsdkSuffix",

dist/web/pubnub.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/core/components/config.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/core/components/config.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/react_native/index.js

Lines changed: 0 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/react_native/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

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

src/core/components/config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ export default class {
307307
}
308308

309309
getVersion(): string {
310-
return '4.29.7';
310+
return '4.29.8';
311311
}
312312

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

src/react_native/index.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ import { del, get, post, patch } from '../networking/modules/web-node';
99
import { getfile, postfile } from '../networking/modules/react_native';
1010
import { InternalSetupStruct } from '../core/flow_interfaces';
1111

12-
import WebCryptography from '../crypto/modules/web';
1312
import PubNubFile from '../file/modules/react-native';
1413

1514
export default class extends PubNubCore {
@@ -18,7 +17,6 @@ export default class extends PubNubCore {
1817
setup.cbor = new Cbor(CborReader.decode, (base64String) => Buffer.from(base64String, 'base64'));
1918

2019
setup.PubNubFile = PubNubFile;
21-
setup.cryptography = new WebCryptography();
2220

2321
setup.networking = new Networking({ del, get, post, patch, getfile, postfile });
2422
setup.sdkFamily = 'ReactNative';

0 commit comments

Comments
 (0)