From ae5f9fbc6f18e2e4342592a423cae0d77917ec61 Mon Sep 17 00:00:00 2001 From: AWS CDK Team Date: Thu, 6 Oct 2022 07:33:37 +0000 Subject: [PATCH 1/2] chore(release): 1.176.0 --- CHANGELOG.md | 12 ++++++++++++ version.v1.json | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 79e2d4f38eab8..7a1fa315b6671 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,18 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +## [1.176.0](https://github.com/aws/aws-cdk/compare/v1.175.0...v1.176.0) (2022-10-06) + + +### Features + +* **cfnspec:** cloudformation spec v91.0.0 ([#22303](https://github.com/aws/aws-cdk/issues/22303)) ([c1f9bf4](https://github.com/aws/aws-cdk/commit/c1f9bf4d4905408e989ae4a6d262955644780640)) + + +### Bug Fixes + +* change Node 10 to 14 everywhere ([#22289](https://github.com/aws/aws-cdk/issues/22289)) ([8b0757e](https://github.com/aws/aws-cdk/commit/8b0757e1ea472dc1094f441e6c46d87c44fbc5a8)) + ## [1.175.0](https://github.com/aws/aws-cdk/compare/v1.174.0...v1.175.0) (2022-09-28) diff --git a/version.v1.json b/version.v1.json index 8fbfb0cfa7add..ba7a9e99daf8e 100644 --- a/version.v1.json +++ b/version.v1.json @@ -1,3 +1,3 @@ { - "version": "1.175.0" + "version": "1.176.0" } \ No newline at end of file From a812d4c9ff5b630929f75cc02955404a84566fcf Mon Sep 17 00:00:00 2001 From: Rico Huijbers Date: Wed, 5 Oct 2022 10:59:34 +0200 Subject: [PATCH 2/2] chore: use fixed package versions in integ tests (#22360) When running the integ tests we install a bunch of packages that are necessary just for the tests. We indiscriminately install the latest versions, and now `axios` has released a new MV with breaking changes, so our tests fail. Install known versions for all of them. ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license* --- packages/aws-cdk/test/integ/common/jest-test.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/aws-cdk/test/integ/common/jest-test.bash b/packages/aws-cdk/test/integ/common/jest-test.bash index b29ca90036d38..7a96a9f845155 100755 --- a/packages/aws-cdk/test/integ/common/jest-test.bash +++ b/packages/aws-cdk/test/integ/common/jest-test.bash @@ -5,7 +5,7 @@ function invokeJest() { # package.json. if ! npx --no-install jest --version; then echo 'Looks like we need to install jest first. Hold on.' >& 2 - npm install --prefix .. jest jest-junit aws-sdk axios + npm install --prefix .. jest@^27 jest-junit@^14 aws-sdk@^2 axios@^0.27.2 fi # This must --runInBand because parallelism is arranged for inside the tests