Skip to content

Commit 7bd1e90

Browse files
committed
Added IMAGE_ARCHIVED to ScanStatus and fixed test
1 parent a653f84 commit 7bd1e90

File tree

12 files changed

+520
-129
lines changed

12 files changed

+520
-129
lines changed

.projenrc.ts

Lines changed: 2 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',
@@ -1158,7 +1158,7 @@ const cli = configureProject(
11581158
'enquirer',
11591159
'fs-extra@^9',
11601160
'glob',
1161-
'minimatch',
1161+
'minimatch@10.0.1',
11621162
'p-limit@^3',
11631163
'p-queue@^6',
11641164
'promptly',

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];
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"schemaHash": "4755f1d1fcb2dc25dd6bff0494afa7d86c517274ffebdf2ac2dcb90ad4b899c4",
2+
"schemaHash": "e20bc1d07ab1a891372f40a6d2d8a8eb8e12f828b2b5b90d86b270dcb881ad74",
33
"$comment": "Do not hold back the version on additions: jsonschema validation of the manifest by the consumer will trigger errors on unexpected fields.",
4-
"revision": 48
4+
"revision": 49
55
}

packages/@aws-cdk/toolkit-lib/.projen/deps.json

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

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

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

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

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

packages/@aws-cdk/user-input-gen/test/yargs-gen.test.ts

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,8 @@ describe('render', () => {
6666
'If your app has a single stack, there is no need to specify the stack name\\n\\nIf one of cdk.json or ~/.cdk.json exists, options specified there will be used as defaults. Settings in cdk.json take precedence.',
6767
)
6868
.parse(args);
69-
} // eslint-disable-next-line @typescript-eslint/no-require-imports
69+
}
70+
// eslint-disable-next-line @typescript-eslint/no-require-imports
7071
const yargs = require('yargs');
7172
"
7273
`);
@@ -125,7 +126,8 @@ describe('render', () => {
125126
'If your app has a single stack, there is no need to specify the stack name\\n\\nIf one of cdk.json or ~/.cdk.json exists, options specified there will be used as defaults. Settings in cdk.json take precedence.',
126127
)
127128
.parse(args);
128-
} // eslint-disable-next-line @typescript-eslint/no-require-imports
129+
}
130+
// eslint-disable-next-line @typescript-eslint/no-require-imports
129131
const yargs = require('yargs');
130132
"
131133
`);
@@ -210,7 +212,8 @@ describe('render', () => {
210212
'If your app has a single stack, there is no need to specify the stack name\\n\\nIf one of cdk.json or ~/.cdk.json exists, options specified there will be used as defaults. Settings in cdk.json take precedence.',
211213
)
212214
.parse(args);
213-
} // eslint-disable-next-line @typescript-eslint/no-require-imports
215+
}
216+
// eslint-disable-next-line @typescript-eslint/no-require-imports
214217
const yargs = require('yargs');
215218
"
216219
`);

packages/aws-cdk/.projen/deps.json

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

packages/aws-cdk/.projen/tasks.json

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

packages/aws-cdk/package.json

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

0 commit comments

Comments
 (0)