Skip to content

Commit be73a09

Browse files
Releasing v4.29.4
1 parent 9400589 commit be73a09

File tree

14 files changed

+32
-18
lines changed

14 files changed

+32
-18
lines changed

.pubnub.yml

+8-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
---
22
changelog:
3+
-
4+
changes:
5+
-
6+
text: "Fixes an artifact where ract-native entrypoint didnt use ssl."
7+
type: bug
8+
date: 2020-08-14
9+
version: v4.29.4
310
-
411
changes:
512
-
@@ -923,4 +930,4 @@ supported-platforms:
923930
- "Ubuntu 14.04 and up"
924931
- "Windows 7 and up"
925932
version: "Pubnub Javascript for Node"
926-
version: "4.29.3"
933+
version: "4.29.4"

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## [v4.29.4](https://github.com/pubnub/javascript/releases/tag/v4.29.4)
2+
August-14-2020
3+
4+
[Full Changelog](https://github.com/pubnub/javascript/compare/v4.29.3...v4.29.4)
5+
6+
- 🐛 Fixes an artifact where ract-native entrypoint didnt use ssl.
7+
18
## [v4.29.3](https://github.com/pubnub/javascript/releases/tag/v4.29.3)
29
August-14-2020
310

README.md

+2-2
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.3.min.js
26-
* https://cdn.pubnub.com/sdk/javascript/pubnub.4.29.3.js
25+
* https://cdn.pubnub.com/sdk/javascript/pubnub.4.29.4.min.js
26+
* https://cdn.pubnub.com/sdk/javascript/pubnub.4.29.4.js

dist/titanium/pubnub.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! 4.29.3 / Consumer */
1+
/*! 4.29.4 / 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.3';
569+
return '4.29.4';
570570
}
571571
}, {
572572
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.29.3 / Consumer */
1+
/*! 4.29.4 / 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.3';
579+
return '4.29.4';
580580
}
581581
}, {
582582
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.

lib/react_native/index.js

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

lib/react_native/index.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.29.3",
3+
"version": "4.29.4",
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
@@ -307,7 +307,7 @@ export default class {
307307
}
308308

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

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

src/react_native/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export default class extends PubNubCore {
2121

2222
setup.networking = new Networking({ del, get, post, patch, file });
2323
setup.sdkFamily = 'ReactNative';
24-
setup.ssl = false;
24+
setup.ssl = true;
2525

2626
super(setup);
2727
}

0 commit comments

Comments
 (0)