cdk-ecr-deployment 3.0.62 → 3.0.64
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/.jsii +2 -2
- package/.jsii.tabl.json +1 -1
- package/lib/index.js +3 -3
- package/node_modules/@types/cacheable-request/node_modules/@types/node/README.md +1 -1
- package/node_modules/@types/cacheable-request/node_modules/@types/node/buffer.d.ts +22 -22
- package/node_modules/@types/cacheable-request/node_modules/@types/node/child_process.d.ts +3 -3
- package/node_modules/@types/cacheable-request/node_modules/@types/node/crypto.d.ts +61 -61
- package/node_modules/@types/cacheable-request/node_modules/@types/node/dgram.d.ts +1 -1
- package/node_modules/@types/cacheable-request/node_modules/@types/node/fs.d.ts +2 -3
- package/node_modules/@types/cacheable-request/node_modules/@types/node/http.d.ts +1 -1
- package/node_modules/@types/cacheable-request/node_modules/@types/node/https.d.ts +2 -2
- package/node_modules/@types/cacheable-request/node_modules/@types/node/net.d.ts +2 -2
- package/node_modules/@types/cacheable-request/node_modules/@types/node/os.d.ts +1 -1
- package/node_modules/@types/cacheable-request/node_modules/@types/node/package.json +2 -2
- package/node_modules/@types/cacheable-request/node_modules/@types/node/perf_hooks.d.ts +1 -1
- package/node_modules/@types/cacheable-request/node_modules/@types/node/process.d.ts +1 -1
- package/node_modules/@types/cacheable-request/node_modules/@types/node/repl.d.ts +3 -3
- package/node_modules/@types/cacheable-request/node_modules/@types/node/test.d.ts +31 -23
- package/node_modules/@types/keyv/node_modules/@types/node/README.md +1 -1
- package/node_modules/@types/keyv/node_modules/@types/node/buffer.d.ts +22 -22
- package/node_modules/@types/keyv/node_modules/@types/node/child_process.d.ts +3 -3
- package/node_modules/@types/keyv/node_modules/@types/node/crypto.d.ts +61 -61
- package/node_modules/@types/keyv/node_modules/@types/node/dgram.d.ts +1 -1
- package/node_modules/@types/keyv/node_modules/@types/node/fs.d.ts +2 -3
- package/node_modules/@types/keyv/node_modules/@types/node/http.d.ts +1 -1
- package/node_modules/@types/keyv/node_modules/@types/node/https.d.ts +2 -2
- package/node_modules/@types/keyv/node_modules/@types/node/net.d.ts +2 -2
- package/node_modules/@types/keyv/node_modules/@types/node/os.d.ts +1 -1
- package/node_modules/@types/keyv/node_modules/@types/node/package.json +2 -2
- package/node_modules/@types/keyv/node_modules/@types/node/perf_hooks.d.ts +1 -1
- package/node_modules/@types/keyv/node_modules/@types/node/process.d.ts +1 -1
- package/node_modules/@types/keyv/node_modules/@types/node/repl.d.ts +3 -3
- package/node_modules/@types/keyv/node_modules/@types/node/test.d.ts +31 -23
- package/node_modules/@types/responselike/node_modules/@types/node/README.md +1 -1
- package/node_modules/@types/responselike/node_modules/@types/node/buffer.d.ts +22 -22
- package/node_modules/@types/responselike/node_modules/@types/node/child_process.d.ts +3 -3
- package/node_modules/@types/responselike/node_modules/@types/node/crypto.d.ts +61 -61
- package/node_modules/@types/responselike/node_modules/@types/node/dgram.d.ts +1 -1
- package/node_modules/@types/responselike/node_modules/@types/node/fs.d.ts +2 -3
- package/node_modules/@types/responselike/node_modules/@types/node/http.d.ts +1 -1
- package/node_modules/@types/responselike/node_modules/@types/node/https.d.ts +2 -2
- package/node_modules/@types/responselike/node_modules/@types/node/net.d.ts +2 -2
- package/node_modules/@types/responselike/node_modules/@types/node/os.d.ts +1 -1
- package/node_modules/@types/responselike/node_modules/@types/node/package.json +2 -2
- package/node_modules/@types/responselike/node_modules/@types/node/perf_hooks.d.ts +1 -1
- package/node_modules/@types/responselike/node_modules/@types/node/process.d.ts +1 -1
- package/node_modules/@types/responselike/node_modules/@types/node/repl.d.ts +3 -3
- package/node_modules/@types/responselike/node_modules/@types/node/test.d.ts +31 -23
- package/package.json +6 -6
|
@@ -299,49 +299,57 @@ declare module "node:test" {
|
|
|
299
299
|
}
|
|
300
300
|
interface RunOptions {
|
|
301
301
|
/**
|
|
302
|
-
* If a number is provided, then that many
|
|
303
|
-
* If
|
|
304
|
-
*
|
|
305
|
-
* If unspecified, subtests inherit this value from their parent.
|
|
306
|
-
* @default true
|
|
302
|
+
* If a number is provided, then that many test processes would run in parallel, where each process corresponds to one test file.
|
|
303
|
+
* If `true`, it would run `os.availableParallelism() - 1` test files in parallel. If `false`, it would only run one test file at a time.
|
|
304
|
+
* @default false
|
|
307
305
|
*/
|
|
308
306
|
concurrency?: number | boolean | undefined;
|
|
309
307
|
/**
|
|
310
|
-
* An array containing the list of files to run.
|
|
311
|
-
*
|
|
308
|
+
* An array containing the list of files to run. **Default** matching files from
|
|
309
|
+
* [test runner execution model](https://nodejs.org/docs/latest-v20.x/api/test.html#test-runner-execution-model).
|
|
312
310
|
*/
|
|
313
311
|
files?: readonly string[] | undefined;
|
|
314
312
|
/**
|
|
315
|
-
*
|
|
316
|
-
*
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
/**
|
|
320
|
-
* A number of milliseconds the test will fail after.
|
|
321
|
-
* If unspecified, subtests inherit this value from their parent.
|
|
322
|
-
* @default Infinity
|
|
313
|
+
* Configures the test runner to exit the process once all known
|
|
314
|
+
* tests have finished executing even if the event loop would
|
|
315
|
+
* otherwise remain active.
|
|
316
|
+
* @default false
|
|
323
317
|
*/
|
|
324
|
-
|
|
318
|
+
forceExit?: boolean | undefined;
|
|
325
319
|
/**
|
|
326
320
|
* Sets inspector port of test child process.
|
|
327
321
|
* If a nullish value is provided, each process gets its own port,
|
|
328
322
|
* incremented from the primary's `process.debugPort`.
|
|
323
|
+
* @default undefined
|
|
329
324
|
*/
|
|
330
325
|
inspectPort?: number | (() => number) | undefined;
|
|
331
|
-
/**
|
|
332
|
-
* That can be used to only run tests whose name matches the provided pattern.
|
|
333
|
-
* Test name patterns are interpreted as JavaScript regular expressions.
|
|
334
|
-
* For each test that is executed, any corresponding test hooks, such as `beforeEach()`, are also run.
|
|
335
|
-
*/
|
|
336
|
-
testNamePatterns?: string | RegExp | string[] | RegExp[];
|
|
337
326
|
/**
|
|
338
327
|
* If truthy, the test context will only run tests that have the `only` option set
|
|
339
328
|
*/
|
|
340
329
|
only?: boolean;
|
|
341
330
|
/**
|
|
342
|
-
* A function that accepts the TestsStream instance and can be used to setup listeners before any tests are run.
|
|
331
|
+
* A function that accepts the `TestsStream` instance and can be used to setup listeners before any tests are run.
|
|
332
|
+
* @default undefined
|
|
343
333
|
*/
|
|
344
334
|
setup?: (root: Test) => void | Promise<void>;
|
|
335
|
+
/**
|
|
336
|
+
* Allows aborting an in-progress test execution.
|
|
337
|
+
*/
|
|
338
|
+
signal?: AbortSignal | undefined;
|
|
339
|
+
/**
|
|
340
|
+
* A String, RegExp or a RegExp Array, that can be used to only run tests whose
|
|
341
|
+
* name matches the provided pattern. Test name patterns are interpreted as JavaScript
|
|
342
|
+
* regular expressions. For each test that is executed, any corresponding test hooks,
|
|
343
|
+
* such as `beforeEach()`, are also run.
|
|
344
|
+
* @default undefined
|
|
345
|
+
*/
|
|
346
|
+
testNamePatterns?: string | RegExp | string[] | RegExp[];
|
|
347
|
+
/**
|
|
348
|
+
* A number of milliseconds the test execution will fail after.
|
|
349
|
+
* If unspecified, subtests inherit this value from their parent.
|
|
350
|
+
* @default Infinity
|
|
351
|
+
*/
|
|
352
|
+
timeout?: number | undefined;
|
|
345
353
|
/**
|
|
346
354
|
* Whether to run in watch mode or not.
|
|
347
355
|
* @default false
|
package/package.json
CHANGED
|
@@ -50,18 +50,18 @@
|
|
|
50
50
|
"@types/node": "^18",
|
|
51
51
|
"@typescript-eslint/eslint-plugin": "^6",
|
|
52
52
|
"@typescript-eslint/parser": "^6",
|
|
53
|
-
"cdklabs-projen-project-types": "^0.1.
|
|
53
|
+
"cdklabs-projen-project-types": "^0.1.197",
|
|
54
54
|
"eslint": "^8",
|
|
55
55
|
"eslint-import-resolver-typescript": "^2.7.1",
|
|
56
56
|
"eslint-plugin-import": "^2.29.1",
|
|
57
57
|
"jest": "^27",
|
|
58
58
|
"jest-junit": "^15",
|
|
59
59
|
"jsii": "5.1.x",
|
|
60
|
-
"jsii-diff": "^1.
|
|
60
|
+
"jsii-diff": "^1.99.0",
|
|
61
61
|
"jsii-docgen": "^1.8.110",
|
|
62
|
-
"jsii-pacmak": "^1.
|
|
63
|
-
"jsii-rosetta": "^5.4.
|
|
64
|
-
"projen": "^0.82.
|
|
62
|
+
"jsii-pacmak": "^1.99.0",
|
|
63
|
+
"jsii-rosetta": "^5.4.21",
|
|
64
|
+
"projen": "^0.82.4",
|
|
65
65
|
"standard-version": "^9",
|
|
66
66
|
"ts-jest": "^27",
|
|
67
67
|
"ts-node": "^10.9.2",
|
|
@@ -93,7 +93,7 @@
|
|
|
93
93
|
"publishConfig": {
|
|
94
94
|
"access": "public"
|
|
95
95
|
},
|
|
96
|
-
"version": "3.0.
|
|
96
|
+
"version": "3.0.64",
|
|
97
97
|
"jest": {
|
|
98
98
|
"coverageProvider": "v8",
|
|
99
99
|
"testMatch": [
|