pusher-js 8.1.0 → 8.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
+ ## 8.2.0
4
+
5
+ - [CHANGED] Remove WebSocket retry limit.
6
+
3
7
  ## 8.1.0
4
8
 
5
9
  - [CHANGED] Move @types dependencies to devDependencies
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Pusher JavaScript Library v8.1.0
2
+ * Pusher JavaScript Library v8.2.0
3
3
  * https://pusher.com/
4
4
  *
5
5
  * Copyright 2020, Pusher
@@ -7499,7 +7499,7 @@ function safeJSONStringify(source) {
7499
7499
 
7500
7500
  // CONCATENATED MODULE: ./src/core/defaults.ts
7501
7501
  var Defaults = {
7502
- VERSION: "8.1.0",
7502
+ VERSION: "8.2.0",
7503
7503
  PROTOCOL: 7,
7504
7504
  wsPort: 80,
7505
7505
  wssPort: 443,
@@ -9442,7 +9442,6 @@ var getDefaultStrategy = function (config, baseOptions, defineTransport) {
9442
9442
  timeoutLimit: 60000
9443
9443
  };
9444
9444
  var ws_manager = new transport_manager_TransportManager({
9445
- lives: 2,
9446
9445
  minPingDelay: 10000,
9447
9446
  maxPingDelay: config.activityTimeout
9448
9447
  });