@aws-cdk-testing/cli-integ 3.11.0 → 3.12.1
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.
- package/README.md +24 -0
- package/lib/eventually.d.ts +4 -4
- package/lib/eventually.js +3 -3
- package/npm-shrinkwrap.json +1164 -1171
- package/package.json +10 -10
- package/resources/cdk-apps/app/app.js +4 -2
- package/skip-tests.txt +2 -1
package/package.json
CHANGED
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"organization": true
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
|
-
"@aws-cdk/toolkit-lib": "
|
|
42
|
+
"@aws-cdk/toolkit-lib": "1.1.2",
|
|
43
43
|
"@aws-cdk/yarn-cling": "0.0.0",
|
|
44
44
|
"@cdklabs/eslint-plugin": "^1.3.2",
|
|
45
45
|
"@stylistic/eslint-plugin": "^3",
|
|
@@ -57,9 +57,9 @@
|
|
|
57
57
|
"eslint-config-prettier": "^9.1.0",
|
|
58
58
|
"eslint-import-resolver-typescript": "^3.10.1",
|
|
59
59
|
"eslint-plugin-import": "^2.31.0",
|
|
60
|
-
"eslint-plugin-jest": "^28.
|
|
61
|
-
"eslint-plugin-jsdoc": "^50.
|
|
62
|
-
"eslint-plugin-prettier": "^5.4.
|
|
60
|
+
"eslint-plugin-jest": "^28.14.0",
|
|
61
|
+
"eslint-plugin-jsdoc": "^50.8.0",
|
|
62
|
+
"eslint-plugin-prettier": "^5.4.1",
|
|
63
63
|
"jest": "^29.7.0",
|
|
64
64
|
"jest-junit": "^16",
|
|
65
65
|
"license-checker": "^25.0.1",
|
|
@@ -80,10 +80,10 @@
|
|
|
80
80
|
"@aws-sdk/client-sso": "^3",
|
|
81
81
|
"@aws-sdk/client-sts": "^3",
|
|
82
82
|
"@aws-sdk/credential-providers": "^3",
|
|
83
|
-
"@cdklabs/cdk-atmosphere-client": "^0.0.
|
|
84
|
-
"@octokit/rest": "^
|
|
85
|
-
"@smithy/types": "^4.3.
|
|
86
|
-
"@smithy/util-retry": "^4.0.
|
|
83
|
+
"@cdklabs/cdk-atmosphere-client": "^0.0.54",
|
|
84
|
+
"@octokit/rest": "^20",
|
|
85
|
+
"@smithy/types": "^4.3.1",
|
|
86
|
+
"@smithy/util-retry": "^4.0.5",
|
|
87
87
|
"axios": "^1",
|
|
88
88
|
"chalk": "^4",
|
|
89
89
|
"fs-extra": "^9",
|
|
@@ -107,7 +107,7 @@
|
|
|
107
107
|
"cdk"
|
|
108
108
|
],
|
|
109
109
|
"engines": {
|
|
110
|
-
"node": ">=
|
|
110
|
+
"node": ">= 18.0.0"
|
|
111
111
|
},
|
|
112
112
|
"main": "lib/index.js",
|
|
113
113
|
"license": "Apache-2.0",
|
|
@@ -115,7 +115,7 @@
|
|
|
115
115
|
"publishConfig": {
|
|
116
116
|
"access": "public"
|
|
117
117
|
},
|
|
118
|
-
"version": "3.
|
|
118
|
+
"version": "3.12.1",
|
|
119
119
|
"types": "lib/index.d.ts",
|
|
120
120
|
"//": "~~ Generated by projen. To modify, edit .projenrc.js and run \"npx projen\"."
|
|
121
121
|
}
|
|
@@ -453,7 +453,8 @@ class LambdaStack extends cdk.Stack {
|
|
|
453
453
|
constructor(parent, id, props) {
|
|
454
454
|
// sometimes we need to specify the custom bootstrap bucket to use
|
|
455
455
|
// see the 'upgrade legacy bootstrap stack' test
|
|
456
|
-
const
|
|
456
|
+
const useLegacy = [true, 'true'].includes(parent.node.tryGetContext('legacySynth'));
|
|
457
|
+
const synthesizer = useLegacy ?
|
|
457
458
|
new LegacyStackSynthesizer({
|
|
458
459
|
fileAssetsBucketName: parent.node.tryGetContext('bootstrapBucket'),
|
|
459
460
|
})
|
|
@@ -477,7 +478,8 @@ class LambdaStack extends cdk.Stack {
|
|
|
477
478
|
|
|
478
479
|
class DriftableStack extends cdk.Stack {
|
|
479
480
|
constructor(parent, id, props) {
|
|
480
|
-
const
|
|
481
|
+
const useLegacy = [true, 'true'].includes(parent.node.tryGetContext('legacySynth'));
|
|
482
|
+
const synthesizer = useLegacy ?
|
|
481
483
|
new LegacyStackSynthesizer({
|
|
482
484
|
fileAssetsBucketName: parent.node.tryGetContext('bootstrapBucket'),
|
|
483
485
|
})
|
package/skip-tests.txt
CHANGED