cdk-ecr-deployment 3.0.63 → 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 -2
  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 -2
  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 -2
  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
@@ -8,7 +8,7 @@ This package contains type definitions for node (https://nodejs.org/).
8
8
  Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node.
9
9
 
10
10
  ### Additional Details
11
- * Last updated: Fri, 31 May 2024 19:31:07 GMT
11
+ * Last updated: Mon, 03 Jun 2024 23:35:49 GMT
12
12
  * Dependencies: [undici-types](https://npmjs.com/package/undici-types)
13
13
 
14
14
  # Credits
@@ -88,7 +88,7 @@ declare module "buffer" {
88
88
  * Throws if the `fromEnc` or `toEnc` specify invalid character encodings or if
89
89
  * conversion from `fromEnc` to `toEnc` is not permitted.
90
90
  *
91
- * Encodings supported by `buffer.transcode()` are: `'ascii'`, `'utf8'`,`'utf16le'`, `'ucs2'`, `'latin1'`, and `'binary'`.
91
+ * Encodings supported by `buffer.transcode()` are: `'ascii'`, `'utf8'`, `'utf16le'`, `'ucs2'`, `'latin1'`, and `'binary'`.
92
92
  *
93
93
  * The transcoding process will use substitution characters if a given byte
94
94
  * sequence cannot be adequately represented in the target encoding. For instance:
@@ -781,7 +781,7 @@ declare module "buffer" {
781
781
  * // (This result is equal to: [buf1, buf3, buf2].)
782
782
  * ```
783
783
  *
784
- * The optional `targetStart`, `targetEnd`, `sourceStart`, and `sourceEnd`arguments can be used to limit the comparison to specific ranges within `target`and `buf` respectively.
784
+ * The optional `targetStart`, `targetEnd`, `sourceStart`, and `sourceEnd` arguments can be used to limit the comparison to specific ranges within `target` and `buf` respectively.
785
785
  *
786
786
  * ```js
787
787
  * import { Buffer } from 'node:buffer';
@@ -797,7 +797,7 @@ declare module "buffer" {
797
797
  * // Prints: 1
798
798
  * ```
799
799
  *
800
- * `ERR_OUT_OF_RANGE` is thrown if `targetStart < 0`, `sourceStart < 0`,`targetEnd > target.byteLength`, or `sourceEnd > source.byteLength`.
800
+ * `ERR_OUT_OF_RANGE` is thrown if `targetStart < 0`, `sourceStart < 0`, `targetEnd > target.byteLength`, or `sourceEnd > source.byteLength`.
801
801
  * @since v0.11.13
802
802
  * @param target A `Buffer` or {@link Uint8Array} with which to compare `buf`.
803
803
  * @param [targetStart=0] The offset within `target` at which to begin comparison.
@@ -1215,7 +1215,7 @@ declare module "buffer" {
1215
1215
  */
1216
1216
  readBigInt64LE(offset?: number): bigint;
1217
1217
  /**
1218
- * Reads `byteLength` number of bytes from `buf` at the specified `offset`and interprets the result as an unsigned, little-endian integer supporting
1218
+ * Reads `byteLength` number of bytes from `buf` at the specified `offset` and interprets the result as an unsigned, little-endian integer supporting
1219
1219
  * up to 48 bits of accuracy.
1220
1220
  *
1221
1221
  * This function is also available under the `readUintLE` alias.
@@ -1239,7 +1239,7 @@ declare module "buffer" {
1239
1239
  */
1240
1240
  readUintLE(offset: number, byteLength: number): number;
1241
1241
  /**
1242
- * Reads `byteLength` number of bytes from `buf` at the specified `offset`and interprets the result as an unsigned big-endian integer supporting
1242
+ * Reads `byteLength` number of bytes from `buf` at the specified `offset` and interprets the result as an unsigned big-endian integer supporting
1243
1243
  * up to 48 bits of accuracy.
1244
1244
  *
1245
1245
  * This function is also available under the `readUintBE` alias.
@@ -1265,7 +1265,7 @@ declare module "buffer" {
1265
1265
  */
1266
1266
  readUintBE(offset: number, byteLength: number): number;
1267
1267
  /**
1268
- * Reads `byteLength` number of bytes from `buf` at the specified `offset`and interprets the result as a little-endian, two's complement signed value
1268
+ * Reads `byteLength` number of bytes from `buf` at the specified `offset` and interprets the result as a little-endian, two's complement signed value
1269
1269
  * supporting up to 48 bits of accuracy.
1270
1270
  *
1271
1271
  * ```js
@@ -1282,7 +1282,7 @@ declare module "buffer" {
1282
1282
  */
1283
1283
  readIntLE(offset: number, byteLength: number): number;
1284
1284
  /**
1285
- * Reads `byteLength` number of bytes from `buf` at the specified `offset`and interprets the result as a big-endian, two's complement signed value
1285
+ * Reads `byteLength` number of bytes from `buf` at the specified `offset` and interprets the result as a big-endian, two's complement signed value
1286
1286
  * supporting up to 48 bits of accuracy.
1287
1287
  *
1288
1288
  * ```js
@@ -1329,7 +1329,7 @@ declare module "buffer" {
1329
1329
  */
1330
1330
  readUint8(offset?: number): number;
1331
1331
  /**
1332
- * Reads an unsigned, little-endian 16-bit integer from `buf` at the specified`offset`.
1332
+ * Reads an unsigned, little-endian 16-bit integer from `buf` at the specified `offset`.
1333
1333
  *
1334
1334
  * This function is also available under the `readUint16LE` alias.
1335
1335
  *
@@ -1702,7 +1702,7 @@ declare module "buffer" {
1702
1702
  */
1703
1703
  writeUint8(value: number, offset?: number): number;
1704
1704
  /**
1705
- * Writes `value` to `buf` at the specified `offset` as little-endian. The `value`must be a valid unsigned 16-bit integer. Behavior is undefined when `value` is
1705
+ * Writes `value` to `buf` at the specified `offset` as little-endian. The `value` must be a valid unsigned 16-bit integer. Behavior is undefined when `value` is
1706
1706
  * anything other than an unsigned 16-bit integer.
1707
1707
  *
1708
1708
  * This function is also available under the `writeUint16LE` alias.
@@ -1730,7 +1730,7 @@ declare module "buffer" {
1730
1730
  */
1731
1731
  writeUint16LE(value: number, offset?: number): number;
1732
1732
  /**
1733
- * Writes `value` to `buf` at the specified `offset` as big-endian. The `value`must be a valid unsigned 16-bit integer. Behavior is undefined when `value`is anything other than an
1733
+ * Writes `value` to `buf` at the specified `offset` as big-endian. The `value` must be a valid unsigned 16-bit integer. Behavior is undefined when `value`is anything other than an
1734
1734
  * unsigned 16-bit integer.
1735
1735
  *
1736
1736
  * This function is also available under the `writeUint16BE` alias.
@@ -1758,7 +1758,7 @@ declare module "buffer" {
1758
1758
  */
1759
1759
  writeUint16BE(value: number, offset?: number): number;
1760
1760
  /**
1761
- * Writes `value` to `buf` at the specified `offset` as little-endian. The `value`must be a valid unsigned 32-bit integer. Behavior is undefined when `value` is
1761
+ * Writes `value` to `buf` at the specified `offset` as little-endian. The `value` must be a valid unsigned 32-bit integer. Behavior is undefined when `value` is
1762
1762
  * anything other than an unsigned 32-bit integer.
1763
1763
  *
1764
1764
  * This function is also available under the `writeUint32LE` alias.
@@ -1785,7 +1785,7 @@ declare module "buffer" {
1785
1785
  */
1786
1786
  writeUint32LE(value: number, offset?: number): number;
1787
1787
  /**
1788
- * Writes `value` to `buf` at the specified `offset` as big-endian. The `value`must be a valid unsigned 32-bit integer. Behavior is undefined when `value`is anything other than an
1788
+ * Writes `value` to `buf` at the specified `offset` as big-endian. The `value` must be a valid unsigned 32-bit integer. Behavior is undefined when `value`is anything other than an
1789
1789
  * unsigned 32-bit integer.
1790
1790
  *
1791
1791
  * This function is also available under the `writeUint32BE` alias.
@@ -1836,7 +1836,7 @@ declare module "buffer" {
1836
1836
  */
1837
1837
  writeInt8(value: number, offset?: number): number;
1838
1838
  /**
1839
- * Writes `value` to `buf` at the specified `offset` as little-endian. The `value`must be a valid signed 16-bit integer. Behavior is undefined when `value` is
1839
+ * Writes `value` to `buf` at the specified `offset` as little-endian. The `value` must be a valid signed 16-bit integer. Behavior is undefined when `value` is
1840
1840
  * anything other than a signed 16-bit integer.
1841
1841
  *
1842
1842
  * The `value` is interpreted and written as a two's complement signed integer.
@@ -1858,7 +1858,7 @@ declare module "buffer" {
1858
1858
  */
1859
1859
  writeInt16LE(value: number, offset?: number): number;
1860
1860
  /**
1861
- * Writes `value` to `buf` at the specified `offset` as big-endian. The `value`must be a valid signed 16-bit integer. Behavior is undefined when `value` is
1861
+ * Writes `value` to `buf` at the specified `offset` as big-endian. The `value` must be a valid signed 16-bit integer. Behavior is undefined when `value` is
1862
1862
  * anything other than a signed 16-bit integer.
1863
1863
  *
1864
1864
  * The `value` is interpreted and written as a two's complement signed integer.
@@ -1880,7 +1880,7 @@ declare module "buffer" {
1880
1880
  */
1881
1881
  writeInt16BE(value: number, offset?: number): number;
1882
1882
  /**
1883
- * Writes `value` to `buf` at the specified `offset` as little-endian. The `value`must be a valid signed 32-bit integer. Behavior is undefined when `value` is
1883
+ * Writes `value` to `buf` at the specified `offset` as little-endian. The `value` must be a valid signed 32-bit integer. Behavior is undefined when `value` is
1884
1884
  * anything other than a signed 32-bit integer.
1885
1885
  *
1886
1886
  * The `value` is interpreted and written as a two's complement signed integer.
@@ -1902,7 +1902,7 @@ declare module "buffer" {
1902
1902
  */
1903
1903
  writeInt32LE(value: number, offset?: number): number;
1904
1904
  /**
1905
- * Writes `value` to `buf` at the specified `offset` as big-endian. The `value`must be a valid signed 32-bit integer. Behavior is undefined when `value` is
1905
+ * Writes `value` to `buf` at the specified `offset` as big-endian. The `value` must be a valid signed 32-bit integer. Behavior is undefined when `value` is
1906
1906
  * anything other than a signed 32-bit integer.
1907
1907
  *
1908
1908
  * The `value` is interpreted and written as a two's complement signed integer.
@@ -1964,7 +1964,7 @@ declare module "buffer" {
1964
1964
  */
1965
1965
  writeFloatBE(value: number, offset?: number): number;
1966
1966
  /**
1967
- * Writes `value` to `buf` at the specified `offset` as little-endian. The `value`must be a JavaScript number. Behavior is undefined when `value` is anything
1967
+ * Writes `value` to `buf` at the specified `offset` as little-endian. The `value` must be a JavaScript number. Behavior is undefined when `value` is anything
1968
1968
  * other than a JavaScript number.
1969
1969
  *
1970
1970
  * ```js
@@ -1984,7 +1984,7 @@ declare module "buffer" {
1984
1984
  */
1985
1985
  writeDoubleLE(value: number, offset?: number): number;
1986
1986
  /**
1987
- * Writes `value` to `buf` at the specified `offset` as big-endian. The `value`must be a JavaScript number. Behavior is undefined when `value` is anything
1987
+ * Writes `value` to `buf` at the specified `offset` as big-endian. The `value` must be a JavaScript number. Behavior is undefined when `value` is anything
1988
1988
  * other than a JavaScript number.
1989
1989
  *
1990
1990
  * ```js
@@ -2066,7 +2066,7 @@ declare module "buffer" {
2066
2066
  /**
2067
2067
  * If `value` is:
2068
2068
  *
2069
- * * a string, `value` is interpreted according to the character encoding in`encoding`.
2069
+ * * a string, `value` is interpreted according to the character encoding in `encoding`.
2070
2070
  * * a `Buffer` or [`Uint8Array`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint8Array), `value` will be used in its entirety.
2071
2071
  * To compare a partial `Buffer`, use `buf.subarray`.
2072
2072
  * * a number, `value` will be interpreted as an unsigned 8-bit integer
@@ -2164,7 +2164,7 @@ declare module "buffer" {
2164
2164
  * // Prints: 4
2165
2165
  * ```
2166
2166
  *
2167
- * If `value` is not a string, number, or `Buffer`, this method will throw a`TypeError`. If `value` is a number, it will be coerced to a valid byte value,
2167
+ * If `value` is not a string, number, or `Buffer`, this method will throw a `TypeError`. If `value` is a number, it will be coerced to a valid byte value,
2168
2168
  * an integer between 0 and 255.
2169
2169
  *
2170
2170
  * If `byteOffset` is not a number, it will be coerced to a number. Any arguments
@@ -2323,7 +2323,7 @@ declare module "buffer" {
2323
2323
  * **and should never be used in new code, because they use strings to represent**
2324
2324
  * **binary data and predate the introduction of typed arrays in JavaScript.**
2325
2325
  * **For code running using Node.js APIs, converting between base64-encoded strings**
2326
- * **and binary data should be performed using `Buffer.from(str, 'base64')` and`buf.toString('base64')`.**
2326
+ * **and binary data should be performed using `Buffer.from(str, 'base64')` and `buf.toString('base64')`.**
2327
2327
  * @since v15.13.0, v14.17.0
2328
2328
  * @legacy Use `Buffer.from(data, 'base64')` instead.
2329
2329
  * @param data The Base64-encoded input string.
@@ -2339,7 +2339,7 @@ declare module "buffer" {
2339
2339
  * **and should never be used in new code, because they use strings to represent**
2340
2340
  * **binary data and predate the introduction of typed arrays in JavaScript.**
2341
2341
  * **For code running using Node.js APIs, converting between base64-encoded strings**
2342
- * **and binary data should be performed using `Buffer.from(str, 'base64')` and`buf.toString('base64')`.**
2342
+ * **and binary data should be performed using `Buffer.from(str, 'base64')` and `buf.toString('base64')`.**
2343
2343
  * @since v15.13.0, v14.17.0
2344
2344
  * @legacy Use `buf.toString('base64')` instead.
2345
2345
  * @param data An ASCII (Latin1) string.
@@ -95,7 +95,7 @@ declare module "child_process" {
95
95
  * `subprocess.stdin` is an alias for `subprocess.stdio[0]`. Both properties will
96
96
  * refer to the same value.
97
97
  *
98
- * The `subprocess.stdin` property can be `null` or `undefined`if the child process could not be successfully spawned.
98
+ * The `subprocess.stdin` property can be `null` or `undefined` if the child process could not be successfully spawned.
99
99
  * @since v0.1.90
100
100
  */
101
101
  stdin: Writable | null;
@@ -118,7 +118,7 @@ declare module "child_process" {
118
118
  * });
119
119
  * ```
120
120
  *
121
- * The `subprocess.stdout` property can be `null` or `undefined`if the child process could not be successfully spawned.
121
+ * The `subprocess.stdout` property can be `null` or `undefined` if the child process could not be successfully spawned.
122
122
  * @since v0.1.90
123
123
  */
124
124
  stdout: Readable | null;
@@ -131,7 +131,7 @@ declare module "child_process" {
131
131
  * `subprocess.stderr` is an alias for `subprocess.stdio[2]`. Both properties will
132
132
  * refer to the same value.
133
133
  *
134
- * The `subprocess.stderr` property can be `null` or `undefined`if the child process could not be successfully spawned.
134
+ * The `subprocess.stderr` property can be `null` or `undefined` if the child process could not be successfully spawned.
135
135
  * @since v0.1.90
136
136
  */
137
137
  stderr: Readable | null;