Skip to content

Commit ccd5f38

Browse files
authored
chore(deps): update cdk-assets (#33415)
The lastest cdk-assets is required in cdk to mitigate a ECR upload issue. It includes the following fix: cdklabs/cdk-assets#342. The following issues are related to this: #30258 #31549 #33264 I am keeping #31549 open as it is still true. this [feature request](cdklabs/cdk-assets#348) tracks the work to make cdk-assets compatible with containerd Closes #30258 and closes #33264
1 parent ee63467 commit ccd5f38

File tree

8 files changed

+1028
-839
lines changed

8 files changed

+1028
-839
lines changed

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

+20
Original file line numberDiff line numberDiff line change
@@ -768,6 +768,26 @@ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
768768
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
769769

770770

771+
----------------
772+
773+
** [email protected] - https://www.npmjs.com/package/semver/v/7.7.1 | ISC
774+
The ISC License
775+
776+
Copyright (c) Isaac Z. Schlueter and Contributors
777+
778+
Permission to use, copy, modify, and/or distribute this software for any
779+
purpose with or without fee is hereby granted, provided that the above
780+
copyright notice and this permission notice appear in all copies.
781+
782+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
783+
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
784+
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
785+
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
786+
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
787+
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
788+
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
789+
790+
771791
----------------
772792

773793
** [email protected] - https://www.npmjs.com/package/slice-ansi/v/4.0.0 | MIT

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@
7676
"@aws-cdk/cloudformation-diff": "0.0.0",
7777
"@aws-cdk/cx-api": "0.0.0",
7878
"@aws-cdk/aws-service-spec": "^0.1.52",
79-
"cdk-assets": "3.0.0-rc.127",
79+
"cdk-assets": "3.0.0-rc.143",
8080
"@aws-cdk/cdk-cli-wrapper": "0.0.0",
8181
"aws-cdk": "0.0.0",
8282
"chalk": "^4",

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@
9393
"@smithy/util-waiter": "3.1.6",
9494
"archiver": "^5.3.2",
9595
"camelcase": "^6.3.0",
96-
"cdk-assets": "^3.0.0-rc.127",
96+
"cdk-assets": "3.0.0-rc.143",
9797
"cdk-from-cfn": "^0.162.0",
9898
"chalk": "^4",
9999
"chokidar": "^3.6.0",
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
/* eslint-disable no-console */
2+
3+
exports.handler = async (event: any) => {
4+
console.log('hello world');
5+
console.log(`event ${JSON.stringify(event)}`);
6+
return {
7+
statusCode: 200,
8+
};
9+
};
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
import * as path from 'path';
2+
import * as lambda from 'aws-cdk-lib/aws-lambda';
3+
import * as core from 'aws-cdk-lib/core';
4+
5+
export default async () => {
6+
const app = new core.App();
7+
const stack = new core.Stack(app, 'Stack1');
8+
new lambda.Function(stack, 'Function1', {
9+
code: lambda.Code.fromAsset(path.join(__dirname, 'asset')),
10+
handler: 'index.handler',
11+
runtime: lambda.Runtime.NODEJS_LATEST,
12+
});
13+
return app.synth() as any;
14+
};

packages/aws-cdk/THIRD_PARTY_LICENSES

+256-234
Large diffs are not rendered by default.

packages/aws-cdk/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@
175175
"@smithy/util-waiter": "^3.2.0",
176176
"archiver": "^5.3.2",
177177
"camelcase": "^6.3.0",
178-
"cdk-assets": "^3.0.0-rc.127",
178+
"cdk-assets": "3.0.0-rc.143",
179179
"cdk-from-cfn": "^0.162.0",
180180
"chalk": "^4",
181181
"chokidar": "^3.6.0",

0 commit comments

Comments
 (0)