aws-cdk 2.1100.0 → 2.1100.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (29) hide show
  1. package/THIRD_PARTY_LICENSES +89 -89
  2. package/build-info.json +2 -2
  3. package/db.json.gz +0 -0
  4. package/lib/cli/cli-config.js +2 -2
  5. package/lib/cli/io-host/cli-io-host.js +11 -1
  6. package/lib/cli/telemetry/session.js +2 -2
  7. package/lib/commands/init/init-hooks.js +2 -2
  8. package/lib/commands/init/init.d.ts +3 -3
  9. package/lib/commands/init/init.js +23 -15
  10. package/lib/commands/init/package-manager.d.ts +15 -2
  11. package/lib/commands/init/package-manager.js +12 -3
  12. package/lib/index.js +30596 -21468
  13. package/lib/index_bg.wasm +0 -0
  14. package/lib/init-templates/.init-version.json +1 -1
  15. package/lib/init-templates/app/go/go.template.mod +2 -2
  16. package/lib/init-templates/app/javascript/README.md +1 -1
  17. package/lib/init-templates/app/javascript/package.json +1 -1
  18. package/lib/init-templates/app/python/requirements.txt +1 -1
  19. package/lib/init-templates/app/typescript/README.md +3 -3
  20. package/lib/init-templates/app/typescript/package.json +3 -3
  21. package/lib/init-templates/lib/typescript/README.template.md +3 -3
  22. package/lib/init-templates/lib/typescript/package.json +4 -4
  23. package/lib/init-templates/sample-app/go/go.template.mod +1 -1
  24. package/lib/init-templates/sample-app/javascript/README.template.md +1 -1
  25. package/lib/init-templates/sample-app/javascript/package.json +1 -1
  26. package/lib/init-templates/sample-app/python/requirements.txt +1 -1
  27. package/lib/init-templates/sample-app/typescript/README.template.md +3 -3
  28. package/lib/init-templates/sample-app/typescript/package.json +4 -4
  29. package/package.json +15 -13
package/lib/index_bg.wasm CHANGED
Binary file
@@ -1 +1 @@
1
- {"aws-cdk-lib": "2.232.1", "constructs": "^10.0.0"}
1
+ {"aws-cdk-lib": "^2.232.2", "constructs": "^10.0.0"}
@@ -4,6 +4,6 @@ go 1.23.0
4
4
 
5
5
  require (
6
6
  github.com/aws/aws-cdk-go/awscdk/v2 v%cdk-version%
7
- github.com/aws/constructs-go/constructs/v10 v10.0.5
8
- github.com/aws/jsii-runtime-go v1.112.0
7
+ github.com/aws/constructs-go/constructs/v10 v%constructs-version%
8
+ github.com/aws/jsii-runtime-go v1.121.0
9
9
  )
@@ -6,7 +6,7 @@ The `cdk.json` file tells the CDK Toolkit how to execute your app. The build ste
6
6
 
7
7
  ## Useful commands
8
8
 
9
- * `npm run test` perform the jest unit tests
9
+ * `%pm-cmd% test` perform the jest unit tests
10
10
  * `npx cdk deploy` deploy this stack to your default AWS account/region
11
11
  * `npx cdk diff` compare deployed stack with current state
12
12
  * `npx cdk synth` emits the synthesized CloudFormation template
@@ -11,7 +11,7 @@
11
11
  },
12
12
  "devDependencies": {
13
13
  "aws-cdk": "%cdk-cli-version%",
14
- "jest": "^29.7.0"
14
+ "jest": "^30"
15
15
  },
16
16
  "dependencies": {
17
17
  "aws-cdk-lib": "%cdk-version%",
@@ -1,2 +1,2 @@
1
- aws-cdk-lib==%cdk-version%
1
+ aws-cdk-lib%cdk-version%
2
2
  constructs%constructs-version%
@@ -6,9 +6,9 @@ The `cdk.json` file tells the CDK Toolkit how to execute your app.
6
6
 
7
7
  ## Useful commands
8
8
 
9
- * `npm run build` compile typescript to js
10
- * `npm run watch` watch for changes and compile
11
- * `npm run test` perform the jest unit tests
9
+ * `%pm-cmd% build` compile typescript to js
10
+ * `%pm-cmd% watch` watch for changes and compile
11
+ * `%pm-cmd% test` perform the jest unit tests
12
12
  * `npx cdk deploy` deploy this stack to your default AWS account/region
13
13
  * `npx cdk diff` compare deployed stack with current state
14
14
  * `npx cdk synth` emits the synthesized CloudFormation template
@@ -11,10 +11,10 @@
11
11
  "cdk": "cdk"
12
12
  },
13
13
  "devDependencies": {
14
- "@types/jest": "^29.5.14",
14
+ "@types/jest": "^30",
15
15
  "@types/node": "^24.10.1",
16
- "jest": "^29.7.0",
17
- "ts-jest": "^29.2.5",
16
+ "jest": "^30",
17
+ "ts-jest": "^29",
18
18
  "aws-cdk": "%cdk-cli-version%",
19
19
  "ts-node": "^10.9.2",
20
20
  "typescript": "~5.9.3"
@@ -7,6 +7,6 @@ The construct defines an interface (`%name.PascalCased%Props`) to configure the
7
7
 
8
8
  ## Useful commands
9
9
 
10
- * `npm run build` compile typescript to js
11
- * `npm run watch` watch for changes and compile
12
- * `npm run test` perform the jest unit tests
10
+ * `%pm-cmd% build` compile typescript to js
11
+ * `%pm-cmd% watch` watch for changes and compile
12
+ * `%pm-cmd% test` perform the jest unit tests
@@ -9,16 +9,16 @@
9
9
  "test": "jest"
10
10
  },
11
11
  "devDependencies": {
12
- "@types/jest": "^29.5.14",
12
+ "@types/jest": "^30",
13
13
  "@types/node": "^20.19.24",
14
14
  "aws-cdk-lib": "%cdk-version%",
15
15
  "constructs": "%constructs-version%",
16
- "jest": "^29.7.0",
17
- "ts-jest": "^29.2.5",
16
+ "jest": "^30",
17
+ "ts-jest": "^29",
18
18
  "typescript": "~5.9.3"
19
19
  },
20
20
  "peerDependencies": {
21
21
  "aws-cdk-lib": "%cdk-version%",
22
22
  "constructs": "%constructs-version%"
23
23
  }
24
- }
24
+ }
@@ -4,6 +4,6 @@ go 1.23.0
4
4
 
5
5
  require (
6
6
  github.com/aws/aws-cdk-go/awscdk/v2 v%cdk-version%
7
- github.com/aws/constructs-go/constructs/v10 v10.0.5
7
+ github.com/aws/constructs-go/constructs/v10 v%constructs-version%
8
8
  github.com/aws/jsii-runtime-go v1.112.0
9
9
  )
@@ -7,7 +7,7 @@ The `cdk.json` file tells the CDK Toolkit how to execute your app. The build ste
7
7
 
8
8
  ## Useful commands
9
9
 
10
- * `npm run test` perform the jest unit tests
10
+ * `%pm-cmd% test` perform the jest unit tests
11
11
  * `cdk deploy` deploy this stack to your default AWS account/region
12
12
  * `cdk diff` compare deployed stack with current state
13
13
  * `cdk synth` emits the synthesized CloudFormation template
@@ -11,7 +11,7 @@
11
11
  },
12
12
  "devDependencies": {
13
13
  "aws-cdk": "%cdk-cli-version%",
14
- "jest": "^29.7.0"
14
+ "jest": "^30"
15
15
  },
16
16
  "dependencies": {
17
17
  "aws-cdk-lib": "%cdk-version%",
@@ -1,2 +1,2 @@
1
- aws-cdk-lib==%cdk-version%
1
+ aws-cdk-lib%cdk-version%
2
2
  constructs%constructs-version%
@@ -7,9 +7,9 @@ The `cdk.json` file tells the CDK Toolkit how to execute your app.
7
7
 
8
8
  ## Useful commands
9
9
 
10
- * `npm run build` compile typescript to js
11
- * `npm run watch` watch for changes and compile
12
- * `npm run test` perform the jest unit tests
10
+ * `%pm-cmd% build` compile typescript to js
11
+ * `%pm-cmd% watch` watch for changes and compile
12
+ * `%pm-cmd% test` perform the jest unit tests
13
13
  * `cdk deploy` deploy this stack to your default AWS account/region
14
14
  * `cdk diff` compare deployed stack with current state
15
15
  * `cdk synth` emits the synthesized CloudFormation template
@@ -11,10 +11,10 @@
11
11
  "cdk": "cdk"
12
12
  },
13
13
  "devDependencies": {
14
- "@types/jest": "^29.5.14",
14
+ "@types/jest": "^30",
15
15
  "@types/node": "^24.10.1",
16
- "jest": "^29.7.0",
17
- "ts-jest": "^29.2.5",
16
+ "jest": "^30",
17
+ "ts-jest": "^29",
18
18
  "aws-cdk": "%cdk-cli-version%",
19
19
  "ts-node": "^10.9.2",
20
20
  "typescript": "~5.9.3"
@@ -23,4 +23,4 @@
23
23
  "aws-cdk-lib": "%cdk-version%",
24
24
  "constructs": "%constructs-version%"
25
25
  }
26
- }
26
+ }
package/package.json CHANGED
@@ -21,10 +21,12 @@
21
21
  "nx": "npx projen nx",
22
22
  "package": "npx projen package",
23
23
  "post-compile": "npx projen post-compile",
24
+ "post-upgrade": "npx projen post-upgrade",
24
25
  "pre-compile": "npx projen pre-compile",
25
26
  "test": "npx projen test",
26
27
  "test:watch": "npx projen test:watch",
27
28
  "unbump": "npx projen unbump",
29
+ "upgrade-aws-cdk-lib": "npx projen upgrade-aws-cdk-lib",
28
30
  "watch": "npx projen watch",
29
31
  "projen": "npx projen"
30
32
  },
@@ -49,7 +51,7 @@
49
51
  "@types/yargs": "^15",
50
52
  "@typescript-eslint/eslint-plugin": "^8",
51
53
  "@typescript-eslint/parser": "^8",
52
- "aws-cdk-lib": "2.232.1",
54
+ "aws-cdk-lib": "2.232.2",
53
55
  "aws-sdk-client-mock": "^4.1.0",
54
56
  "aws-sdk-client-mock-jest": "^4.1.0",
55
57
  "axios": "^1.13.2",
@@ -70,7 +72,7 @@
70
72
  "license-checker": "^25.0.1",
71
73
  "madge": "^8.0.0",
72
74
  "nock": "13",
73
- "node-backpack": "^1.1.15",
75
+ "node-backpack": "^1.1.16",
74
76
  "prettier": "^2.8",
75
77
  "sinon": "^19.0.5",
76
78
  "ts-jest": "^29.4.6",
@@ -78,10 +80,10 @@
78
80
  "typescript": "5.9",
79
81
  "xml-js": "^1.6.11",
80
82
  "@aws-cdk/cdk-assets-lib": "^1.1.0",
81
- "@aws-cdk/cloud-assembly-schema": ">=49.1.0",
83
+ "@aws-cdk/cloud-assembly-schema": ">=49.3.0",
82
84
  "@aws-cdk/cloudformation-diff": "2.185.0",
83
- "@aws-cdk/cx-api": "^2.232.1",
84
- "@aws-cdk/toolkit-lib": "^1.12.1",
85
+ "@aws-cdk/cx-api": "^2.232.2",
86
+ "@aws-cdk/toolkit-lib": "^1.12.3",
85
87
  "@aws-sdk/client-appsync": "^3",
86
88
  "@aws-sdk/client-cloudcontrol": "^3",
87
89
  "@aws-sdk/client-cloudformation": "^3",
@@ -103,15 +105,15 @@
103
105
  "@aws-sdk/credential-providers": "^3",
104
106
  "@aws-sdk/ec2-metadata-service": "^3",
105
107
  "@aws-sdk/lib-storage": "^3",
106
- "@smithy/middleware-endpoint": "^4.3.14",
107
- "@smithy/property-provider": "^4.2.5",
108
- "@smithy/shared-ini-file-loader": "^4.4.0",
109
- "@smithy/types": "^4.9.0",
110
- "@smithy/util-retry": "^4.2.5",
111
- "@smithy/util-waiter": "^4.2.5",
108
+ "@smithy/middleware-endpoint": "^4.4.0",
109
+ "@smithy/property-provider": "^4.2.6",
110
+ "@smithy/shared-ini-file-loader": "^4.4.1",
111
+ "@smithy/types": "^4.10.0",
112
+ "@smithy/util-retry": "^4.2.6",
113
+ "@smithy/util-waiter": "^4.2.6",
112
114
  "archiver": "^7.0.1",
113
115
  "camelcase": "^6",
114
- "cdk-from-cfn": "^0.248.0",
116
+ "cdk-from-cfn": "^0.263.0",
115
117
  "chalk": "^4",
116
118
  "chokidar": "^3",
117
119
  "decamelize": "^5",
@@ -144,7 +146,7 @@
144
146
  "publishConfig": {
145
147
  "access": "public"
146
148
  },
147
- "version": "2.1100.0",
149
+ "version": "2.1100.2",
148
150
  "types": "lib/index.d.ts",
149
151
  "exports": {
150
152
  "./package.json": "./package.json",