Skip to content

Commit

Permalink
Version 4.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
hph committed Jan 4, 2018
1 parent f74b420 commit c9e273d
Show file tree
Hide file tree
Showing 8 changed files with 26 additions and 13 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Changelog

## 4.2.2 (2018-01-04)

[FIXED] Do not warn about a missing cluster when the host is explicitly set.

[FIXED] Only log with a custom logger when configured (prevents double
logging).

[FIXED] Update React Native NetInfo usage due to deprecated modules.

[NEW] Add `wsPath` option (see README.md for details).

Many thanks to @sunweiyang, @rajivm and @WillSewell for their contributions!

## 4.2.1 (2017-09-28)

[FIXED] Correct version numbers in file headers (v4.2.0 still showed 4.1.0).
Expand Down
4 changes: 2 additions & 2 deletions dist/node/pusher.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* Pusher JavaScript Library v4.2.1
* Pusher JavaScript Library v4.2.2
* https://pusher.com/
*
* Copyright 2017, Pusher
Expand Down Expand Up @@ -830,7 +830,7 @@ module.exports =

"use strict";
var Defaults = {
VERSION: "4.2.1",
VERSION: "4.2.2",
PROTOCOL: 7,
host: 'ws.pusherapp.com',
ws_port: 80,
Expand Down
4 changes: 2 additions & 2 deletions dist/react-native/pusher.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* Pusher JavaScript Library v4.2.1
* Pusher JavaScript Library v4.2.2
* https://pusher.com/
*
* Copyright 2017, Pusher
Expand Down Expand Up @@ -828,7 +828,7 @@ module.exports =

"use strict";
var Defaults = {
VERSION: "4.2.1",
VERSION: "4.2.2",
PROTOCOL: 7,
host: 'ws.pusherapp.com',
ws_port: 80,
Expand Down
4 changes: 2 additions & 2 deletions dist/web/pusher.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* Pusher JavaScript Library v4.2.1
* Pusher JavaScript Library v4.2.2
* https://pusher.com/
*
* Copyright 2017, Pusher
Expand Down Expand Up @@ -476,7 +476,7 @@ return /******/ (function(modules) { // webpackBootstrap

"use strict";
var Defaults = {
VERSION: "4.2.1",
VERSION: "4.2.2",
PROTOCOL: 7,
host: 'ws.pusherapp.com',
ws_port: 80,
Expand Down
4 changes: 2 additions & 2 deletions dist/web/pusher.min.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/worker/pusher.worker.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* Pusher JavaScript Library v4.2.1
* Pusher JavaScript Library v4.2.2
* https://pusher.com/
*
* Copyright 2017, Pusher
Expand Down Expand Up @@ -828,7 +828,7 @@ var Pusher =

"use strict";
var Defaults = {
VERSION: "4.2.1",
VERSION: "4.2.2",
PROTOCOL: 7,
host: 'ws.pusherapp.com',
ws_port: 80,
Expand Down
4 changes: 2 additions & 2 deletions dist/worker/pusher.worker.min.js

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": "pusher-js",
"version": "4.2.1",
"version": "4.2.2",
"description": "Pusher JavaScript library for browsers, React Native, NodeJS and web workers",
"main": "dist/node/pusher.js",
"browser": "dist/web/pusher.js",
Expand Down

2 comments on commit c9e273d

@it-can
Copy link

@it-can it-can commented on c9e273d Jan 6, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@hph Can you also update the cdn? https://js.pusher.com/4.2/pusher.min.js

@hph
Copy link
Contributor Author

@hph hph commented on c9e273d Jan 6, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@it-can Done. It appears that some of the files had not been correctly purged on the CDN.

Please sign in to comment.