Socket
Socket
Sign inDemoInstall

auth0-deploy-cli

Package Overview
Dependencies
Maintainers
51
Versions
172
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

auth0-deploy-cli - npm Package Compare versions

Comparing version 7.13.0 to 7.13.1

10

CHANGELOG.md

@@ -10,2 +10,8 @@ # Changelog

## [7.13.1] - 2022-06-13
### Fixed
- Removing single usage of `flatMap` array method to prevent crashes with Node v10 [#577]
## [7.13.0] - 2022-06-06

@@ -773,3 +779,5 @@

[#563]: https://github.com/auth0/auth0-deploy-cli/issues/563
[unreleased]: https://github.com/auth0/auth0-deploy-cli/compare/v7.13.0...HEAD
[#577]: https://github.com/auth0/auth0-deploy-cli/issues/577
[unreleased]: https://github.com/auth0/auth0-deploy-cli/compare/v7.13.1...HEAD
[7.13.1]: https://github.com/auth0/auth0-deploy-cli/compare/v7.13.0...v7.13.1
[7.13.0]: https://github.com/auth0/auth0-deploy-cli/compare/v7.12.3...v7.13.0

@@ -776,0 +784,0 @@ [7.12.3]: https://github.com/auth0/auth0-deploy-cli/compare/v7.12.2...v7.12.3

7

lib/tools/auth0/handlers/prompts.js

@@ -167,3 +167,4 @@ "use strict";

.then(({ enabled_locales }) => enabled_locales);
const data = yield Promise.all(supportedLanguages.flatMap((language) => {
const data = yield Promise.all(supportedLanguages
.map((language) => {
return promptTypes.map((promptType) => {

@@ -184,3 +185,5 @@ return this.client.prompts

});
})).then((customTextData) => {
})
.reduce((acc, val) => acc.concat(val), []) // TODO: replace .map().reduce() with .flatMap() once we officially eliminate Node v10 support
).then((customTextData) => {
return customTextData

@@ -187,0 +190,0 @@ .filter((customTextData) => {

{
"name": "auth0-deploy-cli",
"version": "7.13.0",
"version": "7.13.1",
"description": "A command line tool for deploying updates to your Auth0 tenant",

@@ -5,0 +5,0 @@ "main": "lib/index.js",

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