kinvey-cli
Advanced tools
Comparing version 6.1.0 to 6.1.1
@@ -5,2 +5,6 @@ # Changelog | ||
## 6.1.1 (2020-10-30) | ||
* Do not update the appEnv when no settings are supplied on `kinvey appenv apply` | ||
* Fix appEnv ID check | ||
## 6.1.0 (2020-09-14) | ||
@@ -7,0 +11,0 @@ * Support login with external identity providers |
@@ -249,2 +249,8 @@ /** | ||
let envData = { name: source.name || env.name }; | ||
const isNameChanged = source.name != null && source.name !== env.name; | ||
if (!isNameChanged && (source.settings == null || isEmpty(source.settings))) { | ||
this.cliManager.log(LogLevel.INFO, `Skipping environment update: ${envData.name}`); | ||
return next(); | ||
} | ||
envData = Object.assign(envData, source.settings); | ||
@@ -251,0 +257,0 @@ this.cliManager.log(LogLevel.INFO, `Updating environment: ${envData.name}`); |
@@ -352,5 +352,3 @@ /** | ||
// kid_SklZwh7dN | ||
const lengthEnvId = 13; | ||
const isId = value.length === lengthEnvId && value.startsWith('kid_'); | ||
return isId; | ||
return value.startsWith('kid_'); | ||
}; | ||
@@ -357,0 +355,0 @@ |
{ | ||
"name": "kinvey-cli", | ||
"version": "6.1.0", | ||
"version": "6.1.1", | ||
"description": "Command-line utility for managing various aspects of your Kinvey account", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
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
517759
10671