Skip to content

Commit

Permalink
Releasing v4.29.8
Browse files Browse the repository at this point in the history
  • Loading branch information
client-engineering-bot committed Sep 22, 2020
1 parent 65d9b63 commit 565853e
Show file tree
Hide file tree
Showing 14 changed files with 30 additions and 21 deletions.
9 changes: 8 additions & 1 deletion .pubnub.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
---
changelog:
-
changes:
-
text: "Fixes compatibility with @sentry/react-native library."
type: bug
date: 2020-09-21
version: v4.29.8
-
changes:
-
Expand Down Expand Up @@ -957,4 +964,4 @@ supported-platforms:
- "Ubuntu 14.04 and up"
- "Windows 7 and up"
version: "Pubnub Javascript for Node"
version: "4.29.7"
version: "4.29.8"
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## [v4.29.8](https://github.com/pubnub/javascript/releases/tag/v4.29.8)
September-21-2020

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

- 🐛 Fixes compatibility with @sentry/react-native library.

## [v4.29.7](https://github.com/pubnub/javascript/releases/tag/v4.29.7)
September-14-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.29.7.min.js
* https://cdn.pubnub.com/sdk/javascript/pubnub.4.29.7.js
* https://cdn.pubnub.com/sdk/javascript/pubnub.4.29.8.min.js
* https://cdn.pubnub.com/sdk/javascript/pubnub.4.29.8.js
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.29.7 / Consumer */
/*! 4.29.8 / Consumer */
exports["PubNub"] =
/******/ (function(modules) { // webpackBootstrap
/******/ // The module cache
Expand Down Expand Up @@ -566,7 +566,7 @@ var _default = function () {
}, {
key: "getVersion",
value: function getVersion() {
return '4.29.7';
return '4.29.8';
}
}, {
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.29.7 / Consumer */
/*! 4.29.8 / Consumer */
(function webpackUniversalModuleDefinition(root, factory) {
if(typeof exports === 'object' && typeof module === 'object')
module.exports = factory();
Expand Down Expand Up @@ -576,7 +576,7 @@ var _default = function () {
}, {
key: "getVersion",
value: function getVersion() {
return '4.29.7';
return '4.29.8';
}
}, {
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.

3 changes: 0 additions & 3 deletions lib/react_native/index.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/react_native/index.js.map

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

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.29.7",
"version": "4.29.8",
"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 @@ -307,7 +307,7 @@ export default class {
}

getVersion(): string {
return '4.29.7';
return '4.29.8';
}

_addPnsdkSuffix(name: string, suffix: string) {
Expand Down
2 changes: 0 additions & 2 deletions src/react_native/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ import { del, get, post, patch } from '../networking/modules/web-node';
import { getfile, postfile } from '../networking/modules/react_native';
import { InternalSetupStruct } from '../core/flow_interfaces';

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

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

setup.PubNubFile = PubNubFile;
setup.cryptography = new WebCryptography();

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

0 comments on commit 565853e

Please sign in to comment.