From 68ae23e551c05b8419585df1a966a566ecd755c7 Mon Sep 17 00:00:00 2001 From: Will Vedder Date: Mon, 27 Jun 2022 18:45:09 -0400 Subject: [PATCH 1/3] Updating changelog --- CHANGELOG.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index e5f6c8f84..a28418a7b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +### Added + +- Validation to detect unreplaced keyword mappings during import. [#591] + +### Fixed + +- Detect and prevent `You are not allowed to set flag '' for this tenant.` errors when erroneously setting non-configurable migration flag. [#590] +- Crash when attempting to create page templates from undefined value. [#592] + ## [7.13.1] - 2022-06-13 ### Fixed From b387ba11635508c28b1eefddb5123ffda110603b Mon Sep 17 00:00:00 2001 From: Will Vedder Date: Mon, 27 Jun 2022 18:47:26 -0400 Subject: [PATCH 2/3] 7.14.0 --- CHANGELOG.md | 8 +++++++- package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 10 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a28418a7b..10cf39416 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [7.14.0] - 2022-06-27 + ### Added - Validation to detect unreplaced keyword mappings during import. [#591] @@ -785,7 +787,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 [#554]: https://github.com/auth0/auth0-deploy-cli/issues/554 [#563]: https://github.com/auth0/auth0-deploy-cli/issues/563 [#577]: https://github.com/auth0/auth0-deploy-cli/issues/577 -[unreleased]: https://github.com/auth0/auth0-deploy-cli/compare/v7.13.1...HEAD +[#590]: https://github.com/auth0/auth0-deploy-cli/issues/590 +[#591]: https://github.com/auth0/auth0-deploy-cli/issues/591 +[#592]: https://github.com/auth0/auth0-deploy-cli/issues/592 +[unreleased]: https://github.com/auth0/auth0-deploy-cli/compare/v7.14.0...HEAD +[7.14.0]: https://github.com/auth0/auth0-deploy-cli/compare/v7.13.1...v7.14.0 [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 [7.12.3]: https://github.com/auth0/auth0-deploy-cli/compare/v7.12.2...v7.12.3 diff --git a/package-lock.json b/package-lock.json index bb8e5c4ec..4fb6aedca 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "auth0-deploy-cli", - "version": "7.13.1", + "version": "7.14.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "auth0-deploy-cli", - "version": "7.13.1", + "version": "7.14.0", "license": "MIT", "dependencies": { "@types/lodash": "^4.14.181", diff --git a/package.json b/package.json index 89850486f..97dc9e0da 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "auth0-deploy-cli", - "version": "7.13.1", + "version": "7.14.0", "description": "A command line tool for deploying updates to your Auth0 tenant", "main": "lib/index.js", "bin": { From b722d11d099f69247df9fc276faddc64caf224b4 Mon Sep 17 00:00:00 2001 From: Will Vedder Date: Mon, 27 Jun 2022 18:49:52 -0400 Subject: [PATCH 3/3] Removing periods from changelog update --- CHANGELOG.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 10cf39416..69475744d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,12 +11,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added -- Validation to detect unreplaced keyword mappings during import. [#591] +- Validation to detect unreplaced keyword mappings during import [#591] ### Fixed -- Detect and prevent `You are not allowed to set flag '' for this tenant.` errors when erroneously setting non-configurable migration flag. [#590] -- Crash when attempting to create page templates from undefined value. [#592] +- Detect and prevent `You are not allowed to set flag '' for this tenant.` errors when erroneously setting non-configurable migration flag [#590] +- Crash when attempting to create page templates from undefined value [#592] ## [7.13.1] - 2022-06-13