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.
Files changed (49) hide show
  1. package/.jsii +2 -2
  2. package/.jsii.tabl.json +1 -1
  3. package/lib/index.js +3 -3
  4. package/node_modules/@types/cacheable-request/node_modules/@types/node/README.md +1 -1
  5. package/node_modules/@types/cacheable-request/node_modules/@types/node/buffer.d.ts +22 -22
  6. package/node_modules/@types/cacheable-request/node_modules/@types/node/child_process.d.ts +3 -3
  7. package/node_modules/@types/cacheable-request/node_modules/@types/node/crypto.d.ts +61 -61
  8. package/node_modules/@types/cacheable-request/node_modules/@types/node/dgram.d.ts +1 -1
  9. package/node_modules/@types/cacheable-request/node_modules/@types/node/fs.d.ts +2 -3
  10. package/node_modules/@types/cacheable-request/node_modules/@types/node/http.d.ts +1 -1
  11. package/node_modules/@types/cacheable-request/node_modules/@types/node/https.d.ts +2 -2
  12. package/node_modules/@types/cacheable-request/node_modules/@types/node/net.d.ts +2 -2
  13. package/node_modules/@types/cacheable-request/node_modules/@types/node/os.d.ts +1 -1
  14. package/node_modules/@types/cacheable-request/node_modules/@types/node/package.json +2 -2
  15. package/node_modules/@types/cacheable-request/node_modules/@types/node/perf_hooks.d.ts +1 -1
  16. package/node_modules/@types/cacheable-request/node_modules/@types/node/process.d.ts +1 -1
  17. package/node_modules/@types/cacheable-request/node_modules/@types/node/repl.d.ts +3 -3
  18. package/node_modules/@types/cacheable-request/node_modules/@types/node/test.d.ts +31 -23
  19. package/node_modules/@types/keyv/node_modules/@types/node/README.md +1 -1
  20. package/node_modules/@types/keyv/node_modules/@types/node/buffer.d.ts +22 -22
  21. package/node_modules/@types/keyv/node_modules/@types/node/child_process.d.ts +3 -3
  22. package/node_modules/@types/keyv/node_modules/@types/node/crypto.d.ts +61 -61
  23. package/node_modules/@types/keyv/node_modules/@types/node/dgram.d.ts +1 -1
  24. package/node_modules/@types/keyv/node_modules/@types/node/fs.d.ts +2 -3
  25. package/node_modules/@types/keyv/node_modules/@types/node/http.d.ts +1 -1
  26. package/node_modules/@types/keyv/node_modules/@types/node/https.d.ts +2 -2
  27. package/node_modules/@types/keyv/node_modules/@types/node/net.d.ts +2 -2
  28. package/node_modules/@types/keyv/node_modules/@types/node/os.d.ts +1 -1
  29. package/node_modules/@types/keyv/node_modules/@types/node/package.json +2 -2
  30. package/node_modules/@types/keyv/node_modules/@types/node/perf_hooks.d.ts +1 -1
  31. package/node_modules/@types/keyv/node_modules/@types/node/process.d.ts +1 -1
  32. package/node_modules/@types/keyv/node_modules/@types/node/repl.d.ts +3 -3
  33. package/node_modules/@types/keyv/node_modules/@types/node/test.d.ts +31 -23
  34. package/node_modules/@types/responselike/node_modules/@types/node/README.md +1 -1
  35. package/node_modules/@types/responselike/node_modules/@types/node/buffer.d.ts +22 -22
  36. package/node_modules/@types/responselike/node_modules/@types/node/child_process.d.ts +3 -3
  37. package/node_modules/@types/responselike/node_modules/@types/node/crypto.d.ts +61 -61
  38. package/node_modules/@types/responselike/node_modules/@types/node/dgram.d.ts +1 -1
  39. package/node_modules/@types/responselike/node_modules/@types/node/fs.d.ts +2 -3
  40. package/node_modules/@types/responselike/node_modules/@types/node/http.d.ts +1 -1
  41. package/node_modules/@types/responselike/node_modules/@types/node/https.d.ts +2 -2
  42. package/node_modules/@types/responselike/node_modules/@types/node/net.d.ts +2 -2
  43. package/node_modules/@types/responselike/node_modules/@types/node/os.d.ts +1 -1
  44. package/node_modules/@types/responselike/node_modules/@types/node/package.json +2 -2
  45. package/node_modules/@types/responselike/node_modules/@types/node/perf_hooks.d.ts +1 -1
  46. package/node_modules/@types/responselike/node_modules/@types/node/process.d.ts +1 -1
  47. package/node_modules/@types/responselike/node_modules/@types/node/repl.d.ts +3 -3
  48. package/node_modules/@types/responselike/node_modules/@types/node/test.d.ts +31 -23
  49. 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 files would run in parallel.
303
- * If truthy, it would run (number of cpu cores - 1) files in parallel.
304
- * If falsy, it would only run one file at a time.
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
- * If unspecified, the test runner execution model will be used.
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
- * Allows aborting an in-progress test execution.
316
- * @default undefined
317
- */
318
- signal?: AbortSignal | undefined;
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
- timeout?: number | undefined;
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.196",
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.98.0",
60
+ "jsii-diff": "^1.99.0",
61
61
  "jsii-docgen": "^1.8.110",
62
- "jsii-pacmak": "^1.98.0",
63
- "jsii-rosetta": "^5.4.20",
64
- "projen": "^0.82.2",
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.62",
96
+ "version": "3.0.64",
97
97
  "jest": {
98
98
  "coverageProvider": "v8",
99
99
  "testMatch": [