Skip to content

Commit 78ee005

Browse files
chore: add suppression of maintenance mode warning so dependencies can be upgraded (#24230)
Fixes the build failures in #24154 and has been successfully run through the cli test pipeline. ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
1 parent 1caa4d9 commit 78ee005

File tree

47 files changed

+377
-373
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+377
-373
lines changed

.github/workflows/yarn-upgrade-v1main.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
run: yarn install --frozen-lockfile
4040
- name: Install Tools
4141
run: |-
42-
npm -g install lerna js-yaml npm-check-updates@^9.0.0
42+
npm -g install lerna npm-check-updates
4343
- name: Build CLI
4444
run: lerna run build --scope aws-cdk --include-dependencies --stream
4545
- name: Build Integ Runner
@@ -51,7 +51,6 @@ jobs:
5151
echo "list=$(lerna ls --all --json 2>/dev/null | jq -r 'map(.name) | join(",")')" >> $GITHUB_OUTPUT
5252
- name: Run "ncu -u"
5353
# We special-case some @types because they need to be pinned to specific versions due to breaking changes in minor upgrades https://github.com/DefinitelyTyped/DefinitelyTyped/issues/64266
54-
# We special-case aws-sdk because of breaking changes with TS interface exports in recent minor versions - https://github.com/aws/aws-sdk-js/issues/3453
5554
# We special-case typescript because it's not semantically versioned
5655
# We special-case constructs because we want to stay in control of the minimum compatible version
5756
# We special-case lerna because we have a patch on it that stops applying if Lerna upgrades. Remove this once https://github.com/lerna/lerna/pull/2874 releases.
@@ -61,8 +60,8 @@ jobs:
6160
ncu --upgrade --filter=typescript --target=patch
6261
ncu --upgrade --reject=@types/node,@types/prettier,constructs,typescript,lerna --target=minor
6362
# Upgrade all the packages
64-
lerna exec --parallel ncu -- --upgrade --filter=typescript --target=patch
65-
lerna exec --parallel ncu -- --upgrade --reject='@types/node,@types/prettier,constructs,typescript,aws-sdk,aws-sdk-mock,${{ steps.list-packages.outputs.list }}' --target=minor
63+
lerna exec --parallel ncu -- --upgrade --filter=typescript,lerna --target=patch
64+
lerna exec --parallel ncu -- --upgrade --reject='@types/node,@types/prettier,constructs,typescript,aws-sdk-mock,${{ steps.list-packages.outputs.list }}' --target=minor
6665
6766
# This will ensure the current lockfile is up-to-date with the dependency specifications (necessary for "yarn update" to run)
6867
- name: Run "yarn install"

.github/workflows/yarn-upgrade.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
run: yarn install --frozen-lockfile
3838
- name: Install Tools
3939
run: |-
40-
npm -g install lerna js-yaml npm-check-updates@^9.0.0
40+
npm -g install lerna npm-check-updates
4141
- name: Build Integ Runner
4242
run: lerna run build --scope @aws-cdk/integ-runner --include-dependencies
4343
- name: List Mono-Repo Packages
@@ -47,7 +47,6 @@ jobs:
4747
echo "list=$(lerna ls --all --json 2>/dev/null | jq -r 'map(.name) | join(",")')" >> $GITHUB_OUTPUT
4848
- name: Run "ncu -u"
4949
# We special-case some @types because they need to be pinned to specific versions due to breaking changes in minor upgrades https://github.com/DefinitelyTyped/DefinitelyTyped/issues/64266
50-
# We special-case aws-sdk because of breaking changes with TS interface exports in recent minor versions - https://github.com/aws/aws-sdk-js/issues/3453
5150
# We special-case typescript because it's not semantically versioned
5251
# We special-case constructs because we want to stay in control of the minimum compatible version
5352
# We special-case lerna because we have a patch on it that stops applying if Lerna upgrades. Remove this once https://github.com/lerna/lerna/pull/2874 releases.
@@ -58,15 +57,15 @@ jobs:
5857
ncu --upgrade --reject=@types/node,@types/prettier,constructs,typescript,lerna --target=minor
5958
# Upgrade all the packages
6059
lerna exec --parallel ncu -- --upgrade --filter=typescript --target=patch
61-
lerna exec --parallel ncu -- --upgrade --reject='@types/node,@types/prettier,constructs,typescript,aws-sdk,aws-sdk-mock,${{ steps.list-packages.outputs.list }}' --target=minor
60+
lerna exec --parallel ncu -- --upgrade --reject='@types/node,@types/prettier,constructs,typescript,aws-sdk-mock,${{ steps.list-packages.outputs.list }}' --target=minor
6261
# Upgrade package.jsons in init templates
6362
for pj in $(find packages/aws-cdk/lib/init-templates -name package.json); do
6463
(cd $(dirname $pj) && ncu --upgrade --reject='constructs,${{ steps.list-packages.outputs.list }}')
6564
done
6665
# Upgrade dependencies at an aws-eks integ test docker image
67-
cd packages/@aws-cdk/aws-eks/test/sdk-call-integ-test-docker-app/app/ && ncu --upgrade --reject='aws-sdk,${{ steps.list-packages.outputs.list }}'
66+
cd packages/@aws-cdk/aws-eks/test/sdk-call-integ-test-docker-app/app/ && ncu --upgrade --reject=',${{ steps.list-packages.outputs.list }}'
6867
69-
# This will ensure the current lockfile is up-to-date with the dependency specifications (necessary for "yarn update" to run)
68+
# This will ensure the current lockfile is up-to-date with the dependency specifications (necessary for "yarn upgrade" to run)
7069
- name: Run "yarn install"
7170
run: yarn install
7271

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"lerna": "3.15.0",
2+
"lerna": "^4.0.0",
33
"npmClient": "yarn",
44
"useWorkspaces": true,
55
"packages": [

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,15 @@
1919
"@types/node": "18.11.18",
2020
"@types/prettier": "2.6.0",
2121
"@yarnpkg/lockfile": "^1.1.0",
22-
"cdk-generate-synthetic-examples": "^0.1.151",
22+
"cdk-generate-synthetic-examples": "^0.1.155",
2323
"conventional-changelog-cli": "^2.2.2",
2424
"fs-extra": "^9.1.0",
2525
"graceful-fs": "^4.2.10",
2626
"jest-junit": "^13.2.0",
27-
"jsii-diff": "1.74.0",
28-
"jsii-pacmak": "1.74.0",
29-
"jsii-reflect": "1.74.0",
30-
"jsii-rosetta": "1.74.0",
27+
"jsii-diff": "1.75.0",
28+
"jsii-pacmak": "1.75.0",
29+
"jsii-reflect": "1.75.0",
30+
"jsii-rosetta": "1.75.0",
3131
"lerna": "^4.0.0",
3232
"patch-package": "^6.5.1",
3333
"semver": "^6.3.0",

packages/@aws-cdk-testing/cli-integ/lib/aws.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
import * as AWS from 'aws-sdk';
22

3+
// eslint-disable-next-line @typescript-eslint/no-require-imports
4+
require('aws-sdk/lib/maintenance_mode_message').suppress = true;
5+
36
export class AwsClients {
47
public static async default(output: NodeJS.WritableStream) {
58
const region = process.env.AWS_REGION ?? process.env.AWS_DEFAULT_REGION ?? 'us-east-1';

packages/@aws-cdk-testing/cli-integ/package.json

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -39,17 +39,18 @@
3939
},
4040
"dependencies": {
4141
"@octokit/rest": "^18.12.0",
42-
"jest": "^27.5.1",
43-
"aws-sdk": "^2.1313.0",
42+
"aws-sdk": "^2.1317.0",
4443
"axios": "^0.27.2",
44+
"fs-extra": "^9.1.0",
45+
"glob": "^7.2.3",
46+
"jest": "^27.5.1",
4547
"jest-junit": "^14.0.1",
48+
"make-runnable": "^1.4.1",
49+
"npm": "^8.19.4",
50+
"p-queue": "^6.6.2",
4651
"semver": "^7.3.8",
4752
"ts-mock-imports": "^1.3.8",
48-
"yargs": "^17.6.2",
49-
"glob": "^7.2.3",
50-
"p-queue": "^6.6.2",
51-
"fs-extra": "^9.1.0",
52-
"npm": "^8.19.3"
53+
"yargs": "^17.7.0"
5354
},
5455
"repository": {
5556
"url": "https://github.com/aws/aws-cdk.git",

packages/@aws-cdk/aws-amplify/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@
8888
"@aws-cdk/cfn2ts": "0.0.0",
8989
"@aws-cdk/pkglint": "0.0.0",
9090
"@types/jest": "^27.5.2",
91-
"aws-sdk": "^2.1211.0"
91+
"aws-sdk": "^2.1317.0"
9292
},
9393
"dependencies": {
9494
"@aws-cdk/aws-codebuild": "0.0.0",

packages/@aws-cdk/aws-certificatemanager/lambda-packages/dns_validated_certificate_handler/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
"@types/aws-lambda": "^8.10.110",
3333
"@types/sinon": "^9.0.11",
3434
"@aws-cdk/cdk-build-tools": "0.0.0",
35-
"aws-sdk": "^2.596.0",
35+
"aws-sdk": "^2.1317.0",
3636
"aws-sdk-mock": "5.6.0",
3737
"eslint": "^7.32.0",
3838
"eslint-config-standard": "^14.1.1",

packages/@aws-cdk/aws-cloudfront-origins/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@
8585
"@aws-cdk/integ-tests": "0.0.0",
8686
"@aws-cdk/pkglint": "0.0.0",
8787
"@types/jest": "^27.5.2",
88-
"aws-sdk": "^2.1211.0"
88+
"aws-sdk": "^2.1317.0"
8989
},
9090
"dependencies": {
9191
"@aws-cdk/aws-apigateway": "0.0.0",

packages/@aws-cdk/aws-cloudfront/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@
8888
"@aws-cdk/cfn2ts": "0.0.0",
8989
"@aws-cdk/pkglint": "0.0.0",
9090
"@types/jest": "^27.5.2",
91-
"aws-sdk": "^2.1211.0",
91+
"aws-sdk": "^2.1317.0",
9292
"jest": "^27.5.1"
9393
},
9494
"dependencies": {

packages/@aws-cdk/aws-cloudtrail/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@
8787
"@aws-cdk/cfn2ts": "0.0.0",
8888
"@aws-cdk/pkglint": "0.0.0",
8989
"@types/jest": "^27.5.2",
90-
"aws-sdk": "^2.1211.0",
90+
"aws-sdk": "^2.1317.0",
9191
"jest": "^27.5.1"
9292
},
9393
"dependencies": {

packages/@aws-cdk/aws-codebuild/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@
9393
"@aws-cdk/cfn2ts": "0.0.0",
9494
"@aws-cdk/pkglint": "0.0.0",
9595
"@types/jest": "^27.5.2",
96-
"aws-sdk": "^2.1211.0",
96+
"aws-sdk": "^2.1317.0",
9797
"jest": "^27.5.1"
9898
},
9999
"dependencies": {

packages/@aws-cdk/aws-codecommit/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@
9393
"@aws-cdk/cloud-assembly-schema": "0.0.0",
9494
"@aws-cdk/pkglint": "0.0.0",
9595
"@types/jest": "^27.5.2",
96-
"aws-sdk": "^2.1211.0",
96+
"aws-sdk": "^2.1317.0",
9797
"jest": "^27.5.1"
9898
},
9999
"dependencies": {

packages/@aws-cdk/aws-dynamodb-global/lambda-packages/aws-global-table-coordinator/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
},
3030
"license": "Apache-2.0",
3131
"devDependencies": {
32-
"aws-sdk": "^2.596.0",
32+
"aws-sdk": "^2.1317.0",
3333
"aws-sdk-mock": "5.6.0",
3434
"eslint": "^7.32.0",
3535
"eslint-config-standard": "^14.1.1",

packages/@aws-cdk/aws-dynamodb/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@
8989
"@types/aws-lambda": "^8.10.110",
9090
"@types/jest": "^27.5.2",
9191
"@types/sinon": "^9.0.11",
92-
"aws-sdk": "^2.1211.0",
92+
"aws-sdk": "^2.1317.0",
9393
"aws-sdk-mock": "5.6.0",
9494
"jest": "^27.5.1",
9595
"sinon": "^9.2.4",

packages/@aws-cdk/aws-eks/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@
8080
},
8181
"license": "Apache-2.0",
8282
"devDependencies": {
83-
"@aws-cdk/lambda-layer-kubectl-v24": "^2.0.96",
83+
"@aws-cdk/lambda-layer-kubectl-v24": "^2.0.100",
8484
"aws-cdk-lib": "2.47.0",
8585
"@aws-cdk/assertions": "0.0.0",
8686
"@aws-cdk/cdk-build-tools": "0.0.0",
@@ -92,9 +92,9 @@
9292
"@types/jest": "^27.5.2",
9393
"@types/sinon": "^9.0.11",
9494
"@types/yaml": "1.9.6",
95-
"aws-sdk": "^2.1211.0",
96-
"cdk8s": "^2.6.47",
97-
"cdk8s-plus-24": "2.4.19",
95+
"aws-sdk": "^2.1317.0",
96+
"cdk8s": "^2.7.2",
97+
"cdk8s-plus-24": "2.4.23",
9898
"jest": "^27.5.1",
9999
"sinon": "^9.2.4"
100100
},

packages/@aws-cdk/aws-events-targets/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@
8989
"@aws-cdk/integ-runner": "0.0.0",
9090
"@aws-cdk/pkglint": "0.0.0",
9191
"@types/jest": "^27.5.2",
92-
"aws-sdk": "^2.1211.0",
92+
"aws-sdk": "^2.1317.0",
9393
"aws-sdk-mock": "5.6.0",
9494
"jest": "^27.5.1"
9595
},

packages/@aws-cdk/aws-gamelift/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,6 @@
8484
"@aws-cdk/cdk-build-tools": "0.0.0",
8585
"@aws-cdk/integ-tests": "0.0.0",
8686
"@aws-cdk/integ-runner": "0.0.0",
87-
"@aws-cdk/integ-tests": "0.0.0",
8887
"@aws-cdk/cfn2ts": "0.0.0",
8988
"@aws-cdk/pkglint": "0.0.0",
9089
"@aws-cdk/cx-api": "0.0.0",

packages/@aws-cdk/aws-globalaccelerator-endpoints/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@
8181
"@aws-cdk/integ-runner": "0.0.0",
8282
"@aws-cdk/pkglint": "0.0.0",
8383
"@types/jest": "^27.5.2",
84-
"aws-sdk": "^2.1211.0",
84+
"aws-sdk": "^2.1317.0",
8585
"aws-sdk-mock": "5.6.0",
8686
"jest": "^27.5.1"
8787
},

packages/@aws-cdk/aws-lambda-nodejs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@
8181
"@aws-cdk/triggers": "0.0.0",
8282
"@types/jest": "^27.5.2",
8383
"delay": "5.0.0",
84-
"esbuild": "^0.17.7"
84+
"esbuild": "^0.17.8"
8585
},
8686
"dependencies": {
8787
"@aws-cdk/aws-lambda": "0.0.0",

packages/@aws-cdk/aws-logs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@
8989
"@types/aws-lambda": "^8.10.110",
9090
"@types/jest": "^27.5.2",
9191
"@types/sinon": "^9.0.11",
92-
"aws-sdk": "^2.1211.0",
92+
"aws-sdk": "^2.1317.0",
9393
"aws-sdk-mock": "5.6.0",
9494
"jest": "^27.5.1",
9595
"nock": "^13.3.0",

packages/@aws-cdk/aws-redshift/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@
8787
"@aws-cdk/pkglint": "0.0.0",
8888
"@aws-cdk/integ-tests": "0.0.0",
8989
"@types/jest": "^27.5.2",
90-
"aws-sdk": "^2.1211.0",
90+
"aws-sdk": "^2.1317.0",
9191
"jest": "^27.5.1"
9292
},
9393
"dependencies": {

packages/@aws-cdk/aws-route53/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@
8787
"@aws-cdk/pkglint": "0.0.0",
8888
"@types/aws-lambda": "^8.10.110",
8989
"@types/jest": "^27.5.2",
90-
"aws-sdk": "^2.1211.0",
90+
"aws-sdk": "^2.1317.0",
9191
"jest": "^27.5.1"
9292
},
9393
"dependencies": {

packages/@aws-cdk/aws-sqs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@
8888
"@aws-cdk/cfn2ts": "0.0.0",
8989
"@aws-cdk/pkglint": "0.0.0",
9090
"@types/jest": "^27.5.2",
91-
"aws-sdk": "^2.1211.0",
91+
"aws-sdk": "^2.1317.0",
9292
"jest": "^27.5.1"
9393
},
9494
"dependencies": {

packages/@aws-cdk/cli-lib/THIRD_PARTY_LICENSES

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The @aws-cdk/cli-lib package includes the following third-party software/licensing:
22

3-
** @jsii/check-node@1.74.0 - https://www.npmjs.com/package/@jsii/check-node/v/1.74.0 | Apache-2.0
3+
** @jsii/check-node@1.75.0 - https://www.npmjs.com/package/@jsii/check-node/v/1.75.0 | Apache-2.0
44
jsii
55
Copyright 2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
66

@@ -268,7 +268,7 @@ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH RE
268268

269269
----------------
270270

271-
** aws-sdk@2.1313.0 - https://www.npmjs.com/package/aws-sdk/v/2.1313.0 | Apache-2.0
271+
** aws-sdk@2.1316.0 - https://www.npmjs.com/package/aws-sdk/v/2.1316.0 | Apache-2.0
272272
AWS SDK for JavaScript
273273
Copyright 2012-2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
274274

packages/@aws-cdk/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@
191191
"@types/jest": "^27.5.2",
192192
"@types/lodash": "^4.14.191",
193193
"@types/minimatch": "^3.0.5",
194-
"aws-sdk": "^2.928.0",
194+
"aws-sdk": "^2.1317.0",
195195
"@types/sinon": "^9.0.11",
196196
"fast-check": "^2.25.0",
197197
"jest": "^27.5.1",

packages/@aws-cdk/custom-resources/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@
9393
"@types/fs-extra": "^9.0.13",
9494
"@types/jest": "^27.5.2",
9595
"@types/sinon": "^9.0.11",
96-
"aws-sdk": "^2.1211.0",
96+
"aws-sdk": "^2.1317.0",
9797
"aws-sdk-mock": "5.6.0",
9898
"fs-extra": "^9.1.0",
9999
"nock": "^13.3.0",

packages/@aws-cdk/cx-api/package.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,9 @@
5454
"build+test+extract": "yarn build+test && yarn rosetta:extract"
5555
},
5656
"cdk-build": {
57-
"post": ["node ./build-tools/flag-report.js"]
57+
"post": [
58+
"node ./build-tools/flag-report.js"
59+
]
5860
},
5961
"author": {
6062
"name": "Amazon Web Services",

packages/@aws-cdk/integ-runner/THIRD_PARTY_LICENSES

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH RE
156156

157157
----------------
158158

159-
** aws-sdk@2.1313.0 - https://www.npmjs.com/package/aws-sdk/v/2.1313.0 | Apache-2.0
159+
** aws-sdk@2.1317.0 - https://www.npmjs.com/package/aws-sdk/v/2.1317.0 | Apache-2.0
160160
AWS SDK for JavaScript
161161
Copyright 2012-2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
162162

packages/@aws-cdk/integ-tests/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767
"@aws-cdk/pkglint": "0.0.0",
6868
"@types/fs-extra": "^9.0.13",
6969
"@types/jest": "^27.5.2",
70-
"aws-sdk": "^2.1211.0",
70+
"aws-sdk": "^2.1317.0",
7171
"aws-sdk-mock": "5.6.0",
7272
"jest": "^27.5.1",
7373
"nock": "^13.3.0",

packages/@aws-cdk/lambda-layer-awscli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@
8484
"dependencies": {
8585
"@aws-cdk/aws-lambda": "0.0.0",
8686
"@aws-cdk/core": "0.0.0",
87-
"@aws-cdk/asset-awscli-v1": "^2.2.65",
87+
"@aws-cdk/asset-awscli-v1": "^2.2.69",
8888
"constructs": "^10.0.0"
8989
},
9090
"homepage": "https://github.com/aws/aws-cdk",

packages/@aws-cdk/lambda-layer-node-proxy-agent/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@
8484
"dependencies": {
8585
"@aws-cdk/aws-lambda": "0.0.0",
8686
"@aws-cdk/core": "0.0.0",
87-
"@aws-cdk/asset-node-proxy-agent-v5": "^2.0.54",
87+
"@aws-cdk/asset-node-proxy-agent-v5": "^2.0.58",
8888
"constructs": "^10.0.0"
8989
},
9090
"homepage": "https://github.com/aws/aws-cdk",

packages/@aws-cdk/pipelines/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
"@aws-cdk/cfn2ts": "0.0.0",
5252
"@aws-cdk/pkglint": "0.0.0",
5353
"@types/jest": "^27.5.2",
54-
"aws-sdk": "^2.1211.0"
54+
"aws-sdk": "^2.1317.0"
5555
},
5656
"peerDependencies": {
5757
"@aws-cdk/aws-codebuild": "0.0.0",

0 commit comments

Comments
 (0)