New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

amplify-cli-core

Package Overview
Dependencies
Maintainers
3
Versions
486
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

amplify-cli-core - npm Package Compare versions

Comparing version 1.23.0-alpha.0 to 1.23.0-beta.0

18

CHANGELOG.md

@@ -6,3 +6,3 @@ # Change Log

# [1.23.0-alpha.0](https://github.com/aws-amplify/amplify-cli/compare/amplify-cli-core@1.22.1...amplify-cli-core@1.23.0-alpha.0) (2021-05-22)
# [1.23.0-beta.0](https://github.com/aws-amplify/amplify-cli/compare/amplify-cli-core@1.22.2...amplify-cli-core@1.23.0-beta.0) (2021-06-10)

@@ -12,8 +12,22 @@

* lambda layers rework ([70b2f46](https://github.com/aws-amplify/amplify-cli/commit/70b2f46ee5cd645208c02c5919bc777e54411010))
* add support for defining IAM Permissions Boundary for Project ([#7144](https://github.com/aws-amplify/amplify-cli/issues/7144)) ([acf031b](https://github.com/aws-amplify/amplify-cli/commit/acf031b29d4e554d647da39ffb8293010cf1d8ad))
* lambda layers rework ([#7375](https://github.com/aws-amplify/amplify-cli/issues/7375)) ([a3b7d3e](https://github.com/aws-amplify/amplify-cli/commit/a3b7d3e427e16bac2b2ea27699fe53b48cf47656))
### Reverts
* Revert "feat: add support for defining IAM Permissions Boundary for Project (#7144)" (#7453) ([08704f0](https://github.com/aws-amplify/amplify-cli/commit/08704f0271f6f5d0e0e98ad7002f4b35c3890924)), closes [#7144](https://github.com/aws-amplify/amplify-cli/issues/7144) [#7453](https://github.com/aws-amplify/amplify-cli/issues/7453)
## [1.22.2](https://github.com/aws-amplify/amplify-cli/compare/amplify-cli-core@1.22.1...amplify-cli-core@1.22.2) (2021-05-26)
**Note:** Version bump only for package amplify-cli-core
## [1.22.1](https://github.com/aws-amplify/amplify-cli/compare/amplify-cli-core@1.22.0...amplify-cli-core@1.22.1) (2021-05-18)

@@ -20,0 +34,0 @@

2

lib/cliGetCategories.js

@@ -7,5 +7,5 @@ "use strict";

const meta = state_manager_1.stateManager.getMeta();
return Object.keys(meta[category]).filter(r => meta[category][r].mobileHubMigrated !== true);
return Object.keys(meta[category] || {}).filter(r => meta[category][r].mobileHubMigrated !== true);
}
exports.getAmplifyResourceByCategories = getAmplifyResourceByCategories;
//# sourceMappingURL=cliGetCategories.js.map

@@ -27,3 +27,3 @@ "use strict";

const packageJson = 'package.json';
const isWindows = () => /^win/.test(process.platform);
const isWindows = process.platform === 'win32';
const packageManagers = {

@@ -33,3 +33,3 @@ npm: {

lockFile: 'package-lock.json',
executable: isWindows() ? 'npm.cmd' : 'npm',
executable: isWindows ? 'npm.cmd' : 'npm',
},

@@ -39,3 +39,3 @@ yarn: {

lockFile: 'yarn.lock',
executable: isWindows() ? 'yarn.cmd' : 'yarn',
executable: isWindows ? 'yarn.cmd' : 'yarn',
},

@@ -42,0 +42,0 @@ };

{
"name": "amplify-cli-core",
"version": "1.23.0-alpha.0",
"version": "1.23.0-beta.0",
"description": "Amplify CLI Core",

@@ -37,3 +37,3 @@ "repository": {

"js-yaml": "^4.0.0",
"lodash": "^4.17.19",
"lodash": "^4.17.21",
"node-fetch": "^2.6.1",

@@ -54,3 +54,3 @@ "open": "^7.3.1",

"@types/uuid": "^8.0.0",
"amplify-function-plugin-interface": "1.8.0-alpha.0",
"amplify-function-plugin-interface": "1.8.0-beta.0",
"nock": "^13.0.11",

@@ -74,3 +74,3 @@ "rimraf": "^3.0.0"

},
"gitHead": "6028c2ea2d170dc167ef513c068ac29417bac77f"
"gitHead": "f0c277fa43714e8a95ef9fd93eb5e09bfab95619"
}

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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