@pusher/chatkit-server
Advanced tools
Comparing version 2.1.0 to 2.1.1
@@ -8,4 +8,8 @@ # Changelog | ||
## [Unreleased](https://github.com/pusher/chatkit-server-node/compare/2.1.0...HEAD) | ||
## [Unreleased](https://github.com/pusher/chatkit-server-node/compare/2.1.1...HEAD) | ||
## [2.1.1](https://github.com/pusher/chatkit-server-node/compare/2.1.0...2.1.1) | ||
- Fix `updateRoom` privacy not updating when `isPrivate` value is `false` | ||
## [2.1.0](https://github.com/pusher/chatkit-server-node/compare/2.0.1...2.1.0) | ||
@@ -12,0 +16,0 @@ |
{ | ||
"name": "@pusher/chatkit-server", | ||
"description": "Pusher Chatkit server SDK", | ||
"version": "2.1.0", | ||
"version": "2.1.1", | ||
"main": "target/src/index.js", | ||
@@ -6,0 +6,0 @@ "license": "MIT", |
{ | ||
"name": "@pusher/chatkit-server", | ||
"description": "Pusher Chatkit server SDK", | ||
"version": "2.1.0", | ||
"version": "2.1.1", | ||
"main": "target/src/index.js", | ||
@@ -6,0 +6,0 @@ "license": "MIT", |
@@ -377,3 +377,3 @@ "use strict"; | ||
} | ||
if (options.isPrivate) { | ||
if (options.isPrivate != null) { | ||
body.private = options.isPrivate; | ||
@@ -380,0 +380,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
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
Found 1 instance in 1 package
66662
0