@aws-cdk-testing/cli-integ 3.12.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/package.json CHANGED
@@ -39,7 +39,7 @@
39
39
  "organization": true
40
40
  },
41
41
  "devDependencies": {
42
- "@aws-cdk/toolkit-lib": "1.1.0",
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,8 +57,8 @@
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.12.0",
61
- "eslint-plugin-jsdoc": "^50.7.1",
60
+ "eslint-plugin-jest": "^28.14.0",
61
+ "eslint-plugin-jsdoc": "^50.8.0",
62
62
  "eslint-plugin-prettier": "^5.4.1",
63
63
  "jest": "^29.7.0",
64
64
  "jest-junit": "^16",
@@ -80,8 +80,8 @@
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.53",
84
- "@octokit/rest": "^18.12.0",
83
+ "@cdklabs/cdk-atmosphere-client": "^0.0.54",
84
+ "@octokit/rest": "^20",
85
85
  "@smithy/types": "^4.3.1",
86
86
  "@smithy/util-retry": "^4.0.5",
87
87
  "axios": "^1",
@@ -115,7 +115,7 @@
115
115
  "publishConfig": {
116
116
  "access": "public"
117
117
  },
118
- "version": "3.12.0",
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 synthesizer = parent.node.tryGetContext('legacySynth') === 'true' ?
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 synthesizer = parent.node.tryGetContext('legacySynth') === 'true' ?
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
@@ -5,4 +5,5 @@
5
5
  # and edit it there if you want to exclude certain tests from running
6
6
  # when performing a certain version's regression tests.
7
7
  #
8
- # Put a test name on a line by itself to skip it.
8
+ # Put a test name on a line by itself to skip it.
9
+ amplify integration