Skip to content

Commit 004e051

Browse files
chore: npm-check-updates && yarn upgrade (#26530)
Ran npm-check-updates and yarn upgrade to keep the `yarn.lock` file up-to-date.
1 parent b1ca3c0 commit 004e051

File tree

72 files changed

+2136
-2122
lines changed

Some content is hidden

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

72 files changed

+2136
-2122
lines changed

package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"build-all": "tsc -b"
1616
},
1717
"devDependencies": {
18-
"@nx/workspace": "^16.5.3",
18+
"@nx/workspace": "^16.5.5",
1919
"@types/node": "18.11.19",
2020
"@types/prettier": "2.6.0",
2121
"@yarnpkg/lockfile": "^1.1.0",
@@ -27,9 +27,9 @@
2727
"jsii-diff": "1.85.0",
2828
"jsii-pacmak": "1.85.0",
2929
"jsii-reflect": "1.85.0",
30-
"jsii-rosetta": "~5.1.7",
30+
"jsii-rosetta": "~5.1.8",
3131
"lerna": "^7.0.1",
32-
"nx": "^16.5.3",
32+
"nx": "^16.5.5",
3333
"patch-package": "^6.5.1",
3434
"semver": "^7.5.4",
3535
"standard-version": "^9.5.0",

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,11 @@
3939
},
4040
"dependencies": {
4141
"@octokit/rest": "^18.12.0",
42-
"aws-sdk": "^2.1417.0",
42+
"aws-sdk": "^2.1423.0",
4343
"axios": "^0.27.2",
4444
"fs-extra": "^9.1.0",
4545
"glob": "^7.2.3",
46-
"jest": "^29.6.1",
46+
"jest": "^29.6.2",
4747
"jest-junit": "^14.0.1",
4848
"make-runnable": "^1.4.1",
4949
"npm": "^8.19.4",

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,10 @@
3939
"@aws-cdk/integ-tests-alpha": "0.0.0",
4040
"@aws-cdk/lambda-layer-kubectl-v24": "^2.0.242",
4141
"aws-cdk-lib": "0.0.0",
42-
"aws-sdk": "^2.1417.0",
42+
"aws-sdk": "^2.1423.0",
4343
"aws-sdk-mock": "5.6.0",
44-
"cdk8s": "^2.7.115",
45-
"cdk8s-plus-24": "2.8.99",
44+
"cdk8s": "^2.21.0",
45+
"cdk8s-plus-24": "2.12.1",
4646
"constructs": "^10.0.0"
4747
},
4848
"repository": {

packages/@aws-cdk-testing/framework-integ/test/aws-eks/test/integ.alb-controller.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ const app = new App();
7272
const stack = new EksClusterAlbControllerStack(app, 'aws-cdk-eks-cluster-alb-controller-test');
7373
new integ.IntegTest(app, 'aws-cdk-cluster-alb-controller', {
7474
testCases: [stack],
75-
diffAssets: true,
75+
// Test includes assets that are updated weekly. If not disabled, the upgrade PR will fail.
76+
diffAssets: false,
7677
});
7778
app.synth();

packages/@aws-cdk-testing/framework-integ/test/aws-eks/test/integ.eks-bottlerocket-ng.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ const app = new App();
4545
const stack = new EksClusterStack(app, 'aws-cdk-eks-cluster-bottlerocket-ng-test');
4646
new integ.IntegTest(app, 'aws-cdk-eks-cluster-bottlerocket-ng', {
4747
testCases: [stack],
48-
diffAssets: true,
48+
// Test includes assets that are updated weekly. If not disabled, the upgrade PR will fail.
49+
diffAssets: false,
4950
});
5051
app.synth();

packages/@aws-cdk-testing/framework-integ/test/aws-eks/test/integ.eks-cluster-handlers-vpc.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@ const app = new App();
2323
const stack = new EksAllHandlersInVpcStack(app, 'aws-cdk-eks-handlers-in-vpc-test');
2424
new integ.IntegTest(app, 'aws-cdk-eks-handlers-in-vpc', {
2525
testCases: [stack],
26-
diffAssets: true,
26+
// Test includes assets that are updated weekly. If not disabled, the upgrade PR will fail.
27+
diffAssets: false,
2728
});
2829

2930
app.synth();

packages/@aws-cdk-testing/framework-integ/test/aws-eks/test/integ.eks-cluster-imported.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,8 @@ const stack = new EksClusterStack(app, 'aws-cdk-eks-import-cluster-test');
211211

212212
new integ.IntegTest(app, 'aws-cdk-eks-import-cluster', {
213213
testCases: [stack],
214-
diffAssets: true,
214+
// Test includes assets that are updated weekly. If not disabled, the upgrade PR will fail.
215+
diffAssets: false,
215216
cdkCommandOptions: {
216217
deploy: {
217218
args: {

packages/@aws-cdk-testing/framework-integ/test/aws-eks/test/integ.eks-cluster-ipv6.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -382,7 +382,8 @@ if (process.env.CDK_INTEG_ACCOUNT !== '12345678') {
382382

383383
new integ.IntegTest(app, 'aws-cdk-eks-cluster-ipv6', {
384384
testCases: [stack],
385-
diffAssets: true,
385+
// Test includes assets that are updated weekly. If not disabled, the upgrade PR will fail.
386+
diffAssets: false,
386387
cdkCommandOptions: {
387388
deploy: {
388389
args: {

packages/@aws-cdk-testing/framework-integ/test/aws-eks/test/integ.eks-cluster-private-endpoint.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,8 @@ const app = new App();
4747
const stack = new EksClusterStack(app, 'aws-cdk-eks-cluster-private-endpoint-test');
4848
new integ.IntegTest(app, 'aws-cdk-eks-cluster-private-endpoint', {
4949
testCases: [stack],
50-
diffAssets: true,
50+
// Test includes assets that are updated weekly. If not disabled, the upgrade PR will fail.
51+
diffAssets: false,
5152
});
5253

5354
app.synth();

packages/@aws-cdk-testing/framework-integ/test/aws-eks/test/integ.eks-cluster.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -355,7 +355,8 @@ if (process.env.CDK_INTEG_ACCOUNT !== '12345678') {
355355

356356
new integ.IntegTest(app, 'aws-cdk-eks-cluster', {
357357
testCases: [stack],
358-
diffAssets: true,
358+
// Test includes assets that are updated weekly. If not disabled, the upgrade PR will fail.
359+
diffAssets: false,
359360
cdkCommandOptions: {
360361
deploy: {
361362
args: {

packages/@aws-cdk-testing/framework-integ/test/aws-eks/test/integ.eks-helm-asset.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,8 @@ const app = new App();
104104
const stack = new EksClusterStack(app, 'aws-cdk-eks-helm-test');
105105
new integ.IntegTest(app, 'aws-cdk-eks-helm', {
106106
testCases: [stack],
107-
diffAssets: true,
107+
// Test includes assets that are updated weekly. If not disabled, the upgrade PR will fail.
108+
diffAssets: false,
108109
});
109110

110111
app.synth();

packages/@aws-cdk-testing/framework-integ/test/aws-eks/test/integ.eks-inference.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@ const app = new App();
3232
const stack = new EksClusterInferenceStack(app, 'aws-cdk-eks-cluster-inference-test');
3333
new integ.IntegTest(app, 'aws-cdk-eks-cluster-interence', {
3434
testCases: [stack],
35-
diffAssets: true,
35+
// Test includes assets that are updated weekly. If not disabled, the upgrade PR will fail.
36+
diffAssets: false,
3637
cdkCommandOptions: {
3738
deploy: {
3839
args: {

packages/@aws-cdk-testing/framework-integ/test/aws-eks/test/integ.eks-windows-ng.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ const app = new App();
5454
const stack = new EksClusterStack(app, 'aws-cdk-eks-cluster-windows-ng-test');
5555
new integ.IntegTest(app, 'aws-cdk-eks-cluster-windows-ng', {
5656
testCases: [stack],
57-
diffAssets: true,
57+
// Test includes assets that are updated weekly. If not disabled, the upgrade PR will fail.
58+
diffAssets: false,
5859
});
5960
app.synth();

packages/@aws-cdk-testing/framework-integ/test/aws-eks/test/integ.fargate-cluster.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@ const app = new App();
2323
const stack = new EksFargateClusterStack(app, 'aws-cdk-eks-fargate-cluster-test');
2424
new integ.IntegTest(app, 'aws-cdk-eks-fargate-cluster', {
2525
testCases: [stack],
26-
diffAssets: true,
26+
// Test includes assets that are updated weekly. If not disabled, the upgrade PR will fail.
27+
diffAssets: false,
2728
});
2829

2930
app.synth();

packages/@aws-cdk-testing/framework-integ/test/aws-eks/test/sdk-call-integ-test-docker-app/app/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
"name": "eks-service-account-sdk-call-integ-test",
33
"private": "true",
44
"dependencies": {
5-
"aws-sdk": "^2.1417.0"
5+
"aws-sdk": "^2.1423.0"
66
}
77
}

packages/@aws-cdk-testing/framework-integ/test/aws-stepfunctions-tasks/test/eks/integ.call.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,8 @@ new cdk.CfnOutput(stack, 'stateMachineArn', {
5454

5555
new integ.IntegTest(app, 'aws-stepfunctions-tasks-eks-call-integ', {
5656
testCases: [stack],
57-
diffAssets: true,
57+
// Test includes assets that are updated weekly. If not disabled, the upgrade PR will fail.
58+
diffAssets: false,
5859
cdkCommandOptions: {
5960
deploy: {
6061
args: {

packages/@aws-cdk-testing/framework-integ/test/aws-stepfunctions-tasks/test/emrcontainers/integ.job-submission-workflow.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,8 @@ new cdk.CfnOutput(stack, 'stateMachineArn', {
9090

9191
new integ.IntegTest(app, 'aws-stepfunctions-tasks-emr-containers-all-services', {
9292
testCases: [stack],
93-
diffAssets: true,
93+
// Test includes assets that are updated weekly. If not disabled, the upgrade PR will fail.
94+
diffAssets: false,
9495
cdkCommandOptions: {
9596
deploy: {
9697
args: {

packages/@aws-cdk-testing/framework-integ/test/aws-stepfunctions-tasks/test/emrcontainers/integ.start-job-run.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,8 @@ new cdk.CfnOutput(stack, 'stateMachineArn', {
101101

102102
new integ.IntegTest(app, 'aws-stepfunctions-tasks-emr-containers-start-job-run', {
103103
testCases: [stack],
104-
diffAssets: true,
104+
// Test includes assets that are updated weekly. If not disabled, the upgrade PR will fail.
105+
diffAssets: false,
105106
cdkCommandOptions: {
106107
deploy: {
107108
args: {

packages/@aws-cdk-testing/framework-integ/test/lambda-layer-node-proxy-agent/test/integ.node-proxy-agent.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@ new cdk.CustomResource(stack, 'CustomResourceNode14', {
3232

3333
new integ.IntegTest(app, 'lambda-layer-node-proxy-agent-integ-test', {
3434
testCases: [stack],
35-
diffAssets: true,
35+
// Test includes assets that are updated weekly. If not disabled, the upgrade PR will fail.
36+
diffAssets: false,
3637
cdkCommandOptions: {
3738
deploy: {
3839
args: {

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -86,9 +86,9 @@
8686
"@aws-cdk/cdk-build-tools": "0.0.0",
8787
"@aws-cdk/integ-runner": "0.0.0",
8888
"@aws-cdk/pkglint": "0.0.0",
89-
"@aws-sdk/client-amplify": "^3.370.0",
90-
"@aws-sdk/client-s3": "^3.370.0",
91-
"@aws-sdk/s3-request-presigner": "^3.370.0",
89+
"@aws-sdk/client-amplify": "^3.378.0",
90+
"@aws-sdk/client-s3": "^3.378.0",
91+
"@aws-sdk/s3-request-presigner": "^3.378.0",
9292
"@types/jest": "^29.5.3",
9393
"aws-cdk-lib": "0.0.0",
9494
"constructs": "^10.0.0"

packages/@aws-cdk/aws-batch-alpha/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@
8585
"@aws-cdk/integ-runner": "0.0.0",
8686
"@aws-cdk/pkglint": "0.0.0",
8787
"@types/jest": "^29.5.3",
88-
"jest": "^29.6.1",
88+
"jest": "^29.6.2",
8989
"aws-cdk-lib": "0.0.0",
9090
"constructs": "^10.0.0",
9191
"@aws-cdk/integ-tests-alpha": "0.0.0"

packages/@aws-cdk/aws-cognito-identitypool-alpha/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@
8585
"@aws-cdk/integ-runner": "0.0.0",
8686
"@aws-cdk/pkglint": "0.0.0",
8787
"@types/jest": "^29.5.3",
88-
"jest": "^29.6.1",
88+
"jest": "^29.6.2",
8989
"aws-cdk-lib": "0.0.0",
9090
"constructs": "^10.0.0"
9191
},

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@
8585
"@aws-cdk/integ-runner": "0.0.0",
8686
"@aws-cdk/pkglint": "0.0.0",
8787
"@types/jest": "^29.5.3",
88-
"jest": "^29.6.1",
88+
"jest": "^29.6.2",
8989
"aws-cdk-lib": "0.0.0",
9090
"constructs": "^10.0.0",
9191
"@aws-cdk/integ-tests-alpha": "0.0.0"

packages/@aws-cdk/aws-glue-alpha/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@
8888
"@types/jest": "^29.5.3",
8989
"aws-cdk-lib": "0.0.0",
9090
"constructs": "^10.0.0",
91-
"jest": "^29.6.1"
91+
"jest": "^29.6.2"
9292
},
9393
"dependencies": {},
9494
"homepage": "https://github.com/aws/aws-cdk",

packages/@aws-cdk/aws-iot-actions-alpha/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@
8585
"@aws-cdk/integ-runner": "0.0.0",
8686
"@aws-cdk/pkglint": "0.0.0",
8787
"@types/jest": "^29.5.3",
88-
"jest": "^29.6.1",
88+
"jest": "^29.6.2",
8989
"constructs": "^10.0.0",
9090
"aws-cdk-lib": "0.0.0",
9191
"@aws-cdk/aws-kinesisfirehose-destinations-alpha": "0.0.0",

packages/@aws-cdk/aws-iot-alpha/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@
8585
"@aws-cdk/integ-runner": "0.0.0",
8686
"@aws-cdk/pkglint": "0.0.0",
8787
"@types/jest": "^29.5.3",
88-
"jest": "^29.6.1",
88+
"jest": "^29.6.2",
8989
"aws-cdk-lib": "0.0.0",
9090
"constructs": "^10.0.0",
9191
"@aws-cdk/integ-tests-alpha": "0.0.0"

packages/@aws-cdk/aws-iotevents-actions-alpha/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@
7878
"@aws-cdk/integ-runner": "0.0.0",
7979
"@aws-cdk/pkglint": "0.0.0",
8080
"@types/jest": "^29.5.3",
81-
"jest": "^29.6.1",
81+
"jest": "^29.6.2",
8282
"aws-cdk-lib": "0.0.0",
8383
"constructs": "^10.0.0",
8484
"@aws-cdk/integ-tests-alpha": "0.0.0",

packages/@aws-cdk/aws-iotevents-alpha/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@
8787
"@aws-cdk/integ-runner": "0.0.0",
8888
"@aws-cdk/pkglint": "0.0.0",
8989
"@types/jest": "^29.5.3",
90-
"jest": "^29.6.1",
90+
"jest": "^29.6.2",
9191
"aws-cdk-lib": "0.0.0",
9292
"constructs": "^10.0.0",
9393
"@aws-cdk/integ-tests-alpha": "0.0.0"

packages/@aws-cdk/aws-kinesisanalytics-flink-alpha/package.json

+1-1
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": "^29.5.3",
84-
"jest": "^29.6.1",
84+
"jest": "^29.6.2",
8585
"aws-cdk-lib": "0.0.0",
8686
"constructs": "^10.0.0",
8787
"@aws-cdk/integ-tests-alpha": "0.0.0"

packages/@aws-cdk/aws-kinesisfirehose-destinations-alpha/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@
7979
"@aws-cdk/integ-runner": "0.0.0",
8080
"@aws-cdk/pkglint": "0.0.0",
8181
"@types/jest": "^29.5.3",
82-
"jest": "^29.6.1",
82+
"jest": "^29.6.2",
8383
"aws-cdk-lib": "0.0.0",
8484
"constructs": "^10.0.0",
8585
"@aws-cdk/aws-kinesisfirehose-alpha": "0.0.0"

packages/@aws-cdk/aws-msk-alpha/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@
8787
"@aws-cdk/integ-runner": "0.0.0",
8888
"@aws-cdk/pkglint": "0.0.0",
8989
"@types/jest": "^29.5.3",
90-
"jest": "^29.6.1",
90+
"jest": "^29.6.2",
9191
"aws-cdk-lib": "0.0.0",
9292
"constructs": "^10.0.0",
9393
"@aws-cdk/integ-tests-alpha": "0.0.0"

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -84,9 +84,9 @@
8484
"@aws-cdk/cdk-build-tools": "0.0.0",
8585
"@aws-cdk/integ-runner": "0.0.0",
8686
"@aws-cdk/pkglint": "0.0.0",
87-
"@aws-sdk/client-redshift": "^3.370.0",
88-
"@aws-sdk/client-redshift-data": "^3.370.0",
89-
"@aws-sdk/client-secrets-manager": "^3.370.0",
87+
"@aws-sdk/client-redshift": "^3.378.0",
88+
"@aws-sdk/client-redshift-data": "^3.378.0",
89+
"@aws-sdk/client-secrets-manager": "^3.378.0",
9090
"@types/jest": "^29.5.3",
9191
"aws-cdk-lib": "0.0.0",
9292
"constructs": "^10.0.0",

packages/@aws-cdk/aws-s3objectlambda-alpha/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@
8888
"@aws-cdk/integ-runner": "0.0.0",
8989
"@aws-cdk/pkglint": "0.0.0",
9090
"@types/jest": "^29.5.3",
91-
"jest": "^29.6.1",
91+
"jest": "^29.6.2",
9292
"aws-cdk-lib": "0.0.0",
9393
"constructs": "^10.0.0"
9494
},

packages/@aws-cdk/aws-sagemaker-alpha/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@
8686
"@aws-cdk/integ-runner": "0.0.0",
8787
"@aws-cdk/pkglint": "0.0.0",
8888
"@types/jest": "^29.5.3",
89-
"jest": "^29.6.1",
89+
"jest": "^29.6.2",
9090
"aws-cdk-lib": "0.0.0",
9191
"constructs": "^10.0.0",
9292
"@aws-cdk/integ-tests-alpha": "0.0.0"

packages/@aws-cdk/aws-synthetics-alpha/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@
8888
"@aws-cdk/pkglint": "0.0.0",
8989
"@aws-cdk/integ-tests-alpha": "0.0.0",
9090
"@types/jest": "^29.5.3",
91-
"jest": "^29.6.1",
91+
"jest": "^29.6.2",
9292
"aws-cdk-lib": "0.0.0",
9393
"constructs": "^10.0.0"
9494
},

packages/@aws-cdk/cdk-cli-wrapper/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"devDependencies": {
3030
"@types/jest": "^29.5.3",
3131
"@aws-cdk/cdk-build-tools": "0.0.0",
32-
"jest": "^29.6.1",
32+
"jest": "^29.6.2",
3333
"@aws-cdk/pkglint": "0.0.0"
3434
},
3535
"repository": {

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
"@types/jest": "^29.5.3",
3737
"@types/md5": "^2.3.2",
3838
"fast-json-patch": "^3.1.1",
39-
"jest": "^29.6.1",
39+
"jest": "^29.6.2",
4040
"json-diff": "^0.10.0",
4141
"sort-json": "^2.0.1",
4242
"ts-node": "^10.9.1"

packages/@aws-cdk/cli-lib-alpha/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@
9393
"@types/jest": "^29.5.3",
9494
"aws-cdk": "0.0.0",
9595
"constructs": "^10.0.0",
96-
"jest": "^29.6.1",
96+
"jest": "^29.6.2",
9797
"ts-node": "^10.9.1"
9898
},
9999
"repository": {

packages/@aws-cdk/cloud-assembly-schema/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -83,9 +83,9 @@
8383
"@types/mock-fs": "^4.13.1",
8484
"@types/semver": "^7.5.0",
8585
"aws-cdk-lib": "0.0.0",
86-
"jest": "^29.6.1",
86+
"jest": "^29.6.2",
8787
"mock-fs": "^4.14.0",
88-
"typescript-json-schema": "^0.56.0"
88+
"typescript-json-schema": "^0.59.0"
8989
},
9090
"repository": {
9191
"url": "https://github.com/aws/aws-cdk.git",

0 commit comments

Comments
 (0)