Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

kinvey-cli

Package Overview
Dependencies
Maintainers
3
Versions
61
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

kinvey-cli - npm Package Compare versions

Comparing version 6.1.0 to 6.1.1

4

CHANGELOG.md

@@ -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}`);

4

lib/Utils.js

@@ -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": [

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc