Skip to content

Commit 2a6f8d3

Browse files
chore: upgrade dependencies (#966)
Additional changes, done by hand: - Added `IMAGE_ARCHIVED` to `ScanStatus` to reflect the latest version from the SDK - `renderYargs` output now has an additional line break. Fix the test - Added `--experimental-vm-modules` to the node options in the `test` task for `toolkit-lib`. (See aws/aws-sdk-js-v3#7420) --- By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license --------- Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 6693243 commit 2a6f8d3

File tree

47 files changed

+4668
-3337
lines changed

Some content is hidden

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

47 files changed

+4668
-3337
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/upgrade.yml

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.projen/tasks.json

Lines changed: 2 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.projenrc.ts

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -840,7 +840,7 @@ const toolkitLib = configureProject(
840840
'fast-deep-equal',
841841
'fs-extra@^9',
842842
'glob',
843-
'minimatch',
843+
'minimatch@10.0.1',
844844
'p-limit@^3',
845845
'semver',
846846
'split2',
@@ -908,6 +908,11 @@ const toolkitLib = configureProject(
908908
}),
909909
);
910910

911+
toolkitLib.tasks.tryFind('test')?.updateStep(0, {
912+
// https://github.com/aws/aws-sdk-js-v3/issues/7420
913+
exec: 'NODE_OPTIONS="$NODE_OPTIONS --experimental-vm-modules" jest --passWithNoTests --updateSnapshot',
914+
});
915+
911916
new TypecheckTests(toolkitLib);
912917

913918
// API Extractor documentation publishing
@@ -1158,7 +1163,7 @@ const cli = configureProject(
11581163
'enquirer',
11591164
'fs-extra@^9',
11601165
'glob',
1161-
'minimatch',
1166+
'minimatch@10.0.1',
11621167
'p-limit@^3',
11631168
'p-queue@^6',
11641169
'promptly',

package.json

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/@aws-cdk-testing/cli-integ/.projen/tasks.json

Lines changed: 3 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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

Lines changed: 16 additions & 16 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/@aws-cdk/cdk-assets-lib/.projen/tasks.json

Lines changed: 3 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/@aws-cdk/cdk-assets-lib/lib/aws-types.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1368,6 +1368,7 @@ export const ScanStatus = {
13681368
SCAN_ELIGIBILITY_EXPIRED: 'SCAN_ELIGIBILITY_EXPIRED',
13691369
UNSUPPORTED_IMAGE: 'UNSUPPORTED_IMAGE',
13701370
LIMIT_EXCEEDED: 'LIMIT_EXCEEDED',
1371+
IMAGE_ARCHIVED: 'IMAGE_ARCHIVED',
13711372
} as const;
13721373

13731374
export type ScanStatus = (typeof ScanStatus)[keyof typeof ScanStatus];

0 commit comments

Comments
 (0)