From 95d12e0784ce97edcbf6c45f1bb2240aaf7ffd44 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 29 Jan 2025 19:40:25 +0000 Subject: [PATCH 1/2] build(deps): bump aws-cdk-lib in /typescript/codepipeline-build-deploy Bumps [aws-cdk-lib](https://github.com/aws/aws-cdk/tree/HEAD/packages/aws-cdk-lib) from 2.80.0 to 2.177.0. - [Release notes](https://github.com/aws/aws-cdk/releases) - [Changelog](https://github.com/aws/aws-cdk/blob/main/CHANGELOG.v2.md) - [Commits](https://github.com/aws/aws-cdk/commits/v2.177.0/packages/aws-cdk-lib) --- updated-dependencies: - dependency-name: aws-cdk-lib dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- typescript/codepipeline-build-deploy/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/typescript/codepipeline-build-deploy/package.json b/typescript/codepipeline-build-deploy/package.json index 740335ebe1..7553b34fc2 100644 --- a/typescript/codepipeline-build-deploy/package.json +++ b/typescript/codepipeline-build-deploy/package.json @@ -20,7 +20,7 @@ "typescript": "~5.1.6" }, "dependencies": { - "aws-cdk-lib": "2.80.0", + "aws-cdk-lib": "2.177.0", "constructs": "^10.0.0", "jest-junit": "^16.0.0", "source-map-support": "^0.5.21" From e7068f84fbbfd81eb8d70a2112482d4e56d116a6 Mon Sep 17 00:00:00 2001 From: Michael Kaiser Date: Sat, 8 Mar 2025 16:43:24 -0600 Subject: [PATCH 2/2] Fix: Grab latest version of cdk cli --- scripts/synth.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/synth.sh b/scripts/synth.sh index e5c61a428e..2989aa2f39 100755 --- a/scripts/synth.sh +++ b/scripts/synth.sh @@ -12,7 +12,8 @@ if $fake_context; then cp $scriptdir/fake.context.json cdk.context.json fi -npx cdk synth +yarn global add cdk@latest +cdk synth if $fake_context; then rm -f cdk.context.json