laravel-echo
Advanced tools
Comparing version 1.14.1 to 1.14.2
# Release Notes | ||
## [Unreleased](https://github.com/laravel/echo/compare/v1.14.0...master) | ||
## [Unreleased](https://github.com/laravel/echo/compare/v1.14.1...master) | ||
## [v1.14.1](https://github.com/laravel/echo/compare/v1.14.0...v1.14.1) - 2022-10-25 | ||
### Fixed | ||
- Instantiate pusher using Pusher class from option by @chhornponleu in https://github.com/laravel/echo/pull/359 | ||
## [v1.14.0](https://github.com/laravel/echo/compare/v1.13.1...v1.14.0) - 2022-08-30 | ||
@@ -6,0 +12,0 @@ |
@@ -1038,2 +1038,4 @@ 'use strict'; | ||
this.pusher = this.options.client; | ||
} else if (this.options.Pusher) { | ||
this.pusher = new this.options.Pusher(this.options.key, this.options); | ||
} else { | ||
@@ -1040,0 +1042,0 @@ this.pusher = new Pusher(this.options.key, this.options); |
@@ -1037,2 +1037,4 @@ var Echo = (function () { | ||
this.pusher = this.options.client; | ||
} else if (this.options.Pusher) { | ||
this.pusher = new this.options.Pusher(this.options.key, this.options); | ||
} else { | ||
@@ -1039,0 +1041,0 @@ this.pusher = new Pusher(this.options.key, this.options); |
@@ -1034,2 +1034,4 @@ function _typeof(obj) { | ||
this.pusher = this.options.client; | ||
} else if (this.options.Pusher) { | ||
this.pusher = new this.options.Pusher(this.options.key, this.options); | ||
} else { | ||
@@ -1036,0 +1038,0 @@ this.pusher = new Pusher(this.options.key, this.options); |
{ | ||
"name": "laravel-echo", | ||
"version": "1.14.1", | ||
"version": "1.14.2", | ||
"description": "Laravel Echo library for beautiful Pusher and Socket.IO integration", | ||
@@ -41,3 +41,3 @@ "keywords": [ | ||
"@types/jest": "^27.4.1", | ||
"@types/node": "^17.0.21", | ||
"@types/node": "^18.11.9", | ||
"@typescript-eslint/eslint-plugin": "^5.14.0", | ||
@@ -44,0 +44,0 @@ "@typescript-eslint/parser": "^5.14.0", |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
200504
6044
95
1
2
1
5