cdk-ecr-deployment 3.0.83 → 3.0.84

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 (46) 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/globals.d.ts +78 -0
  6. package/node_modules/@types/cacheable-request/node_modules/@types/node/package.json +3 -3
  7. package/node_modules/@types/cacheable-request/node_modules/@types/node/process.d.ts +20 -15
  8. package/node_modules/@types/cacheable-request/node_modules/@types/node/test.d.ts +24 -8
  9. package/node_modules/@types/cacheable-request/node_modules/@types/node/tls.d.ts +3 -0
  10. package/node_modules/@types/cacheable-request/node_modules/@types/node/util.d.ts +6 -0
  11. package/node_modules/@types/cacheable-request/node_modules/undici-types/errors.d.ts +21 -0
  12. package/node_modules/@types/cacheable-request/node_modules/undici-types/formdata.d.ts +1 -1
  13. package/node_modules/@types/cacheable-request/node_modules/undici-types/index.d.ts +4 -7
  14. package/node_modules/@types/cacheable-request/node_modules/undici-types/interceptors.d.ts +11 -7
  15. package/node_modules/@types/cacheable-request/node_modules/undici-types/package.json +1 -1
  16. package/node_modules/@types/cacheable-request/node_modules/undici-types/retry-agent.d.ts +0 -3
  17. package/node_modules/@types/cacheable-request/node_modules/undici-types/webidl.d.ts +1 -3
  18. package/node_modules/@types/keyv/node_modules/@types/node/README.md +1 -1
  19. package/node_modules/@types/keyv/node_modules/@types/node/globals.d.ts +78 -0
  20. package/node_modules/@types/keyv/node_modules/@types/node/package.json +3 -3
  21. package/node_modules/@types/keyv/node_modules/@types/node/process.d.ts +20 -15
  22. package/node_modules/@types/keyv/node_modules/@types/node/test.d.ts +24 -8
  23. package/node_modules/@types/keyv/node_modules/@types/node/tls.d.ts +3 -0
  24. package/node_modules/@types/keyv/node_modules/@types/node/util.d.ts +6 -0
  25. package/node_modules/@types/keyv/node_modules/undici-types/errors.d.ts +21 -0
  26. package/node_modules/@types/keyv/node_modules/undici-types/formdata.d.ts +1 -1
  27. package/node_modules/@types/keyv/node_modules/undici-types/index.d.ts +4 -7
  28. package/node_modules/@types/keyv/node_modules/undici-types/interceptors.d.ts +11 -7
  29. package/node_modules/@types/keyv/node_modules/undici-types/package.json +1 -1
  30. package/node_modules/@types/keyv/node_modules/undici-types/retry-agent.d.ts +0 -3
  31. package/node_modules/@types/keyv/node_modules/undici-types/webidl.d.ts +1 -3
  32. package/node_modules/@types/responselike/node_modules/@types/node/README.md +1 -1
  33. package/node_modules/@types/responselike/node_modules/@types/node/globals.d.ts +78 -0
  34. package/node_modules/@types/responselike/node_modules/@types/node/package.json +3 -3
  35. package/node_modules/@types/responselike/node_modules/@types/node/process.d.ts +20 -15
  36. package/node_modules/@types/responselike/node_modules/@types/node/test.d.ts +24 -8
  37. package/node_modules/@types/responselike/node_modules/@types/node/tls.d.ts +3 -0
  38. package/node_modules/@types/responselike/node_modules/@types/node/util.d.ts +6 -0
  39. package/node_modules/@types/responselike/node_modules/undici-types/errors.d.ts +21 -0
  40. package/node_modules/@types/responselike/node_modules/undici-types/formdata.d.ts +1 -1
  41. package/node_modules/@types/responselike/node_modules/undici-types/index.d.ts +4 -7
  42. package/node_modules/@types/responselike/node_modules/undici-types/interceptors.d.ts +11 -7
  43. package/node_modules/@types/responselike/node_modules/undici-types/package.json +1 -1
  44. package/node_modules/@types/responselike/node_modules/undici-types/retry-agent.d.ts +0 -3
  45. package/node_modules/@types/responselike/node_modules/undici-types/webidl.d.ts +1 -3
  46. package/package.json +2 -2
@@ -843,6 +843,7 @@ declare module "tls" {
843
843
  ciphers?: string | undefined;
844
844
  /**
845
845
  * Name of an OpenSSL engine which can provide the client certificate.
846
+ * @deprecated
846
847
  */
847
848
  clientCertEngine?: string | undefined;
848
849
  /**
@@ -885,12 +886,14 @@ declare module "tls" {
885
886
  /**
886
887
  * Name of an OpenSSL engine to get private key from. Should be used
887
888
  * together with privateKeyIdentifier.
889
+ * @deprecated
888
890
  */
889
891
  privateKeyEngine?: string | undefined;
890
892
  /**
891
893
  * Identifier of a private key managed by an OpenSSL engine. Should be
892
894
  * used together with privateKeyEngine. Should not be set together with
893
895
  * key, because both options define a private key in different ways.
896
+ * @deprecated
894
897
  */
895
898
  privateKeyIdentifier?: string | undefined;
896
899
  /**
@@ -1480,6 +1480,12 @@ declare module "util" {
1480
1480
  * Whether this command accepts positional arguments.
1481
1481
  */
1482
1482
  allowPositionals?: boolean | undefined;
1483
+ /**
1484
+ * If `true`, allows explicitly setting boolean options to `false` by prefixing the option name with `--no-`.
1485
+ * @default false
1486
+ * @since v22.4.0
1487
+ */
1488
+ allowNegative?: boolean | undefined;
1483
1489
  /**
1484
1490
  * Return the parsed tokens. This is useful for extending the built-in behavior,
1485
1491
  * from adding additional checks through to reprocessing the tokens in different ways.
@@ -125,4 +125,25 @@ declare namespace Errors {
125
125
  name: 'ResponseExceededMaxSizeError';
126
126
  code: 'UND_ERR_RES_EXCEEDED_MAX_SIZE';
127
127
  }
128
+
129
+ export class RequestRetryError extends UndiciError {
130
+ constructor (
131
+ message: string,
132
+ statusCode: number,
133
+ headers?: IncomingHttpHeaders | string[] | null,
134
+ body?: null | Record<string, any> | string
135
+ );
136
+ name: 'RequestRetryError';
137
+ code: 'UND_ERR_REQ_RETRY';
138
+ statusCode: number;
139
+ data: {
140
+ count: number;
141
+ };
142
+ headers: Record<string, string | string[]>;
143
+ }
144
+
145
+ export class SecureProxyConnectionError extends UndiciError {
146
+ name: 'SecureProxyConnectionError';
147
+ code: 'UND_ERR_PRX_TLS';
148
+ }
128
149
  }
@@ -2,7 +2,7 @@
2
2
  /// <reference types="node" />
3
3
 
4
4
  import { File } from './file'
5
- import { SpecIterator, SpecIterableIterator } from './fetch'
5
+ import { SpecIterableIterator } from './fetch'
6
6
 
7
7
  /**
8
8
  * A `string` or `File` that represents a single value from a set of `FormData` key-value pairs.
@@ -18,6 +18,7 @@ import EnvHttpProxyAgent from './env-http-proxy-agent'
18
18
  import RetryHandler from'./retry-handler'
19
19
  import RetryAgent from'./retry-agent'
20
20
  import { request, pipeline, stream, connect, upgrade } from './api'
21
+ import interceptors from './interceptors'
21
22
 
22
23
  export * from './util'
23
24
  export * from './cookies'
@@ -32,7 +33,7 @@ export * from './content-type'
32
33
  export * from './cache'
33
34
  export { Interceptable } from './mock-interceptor'
34
35
 
35
- export { Dispatcher, BalancedPool, Pool, Client, buildConnector, errors, Agent, request, stream, pipeline, connect, upgrade, setGlobalDispatcher, getGlobalDispatcher, setGlobalOrigin, getGlobalOrigin, MockClient, MockPool, MockAgent, mockErrors, ProxyAgent, EnvHttpProxyAgent, RedirectHandler, DecoratorHandler, RetryHandler, RetryAgent }
36
+ export { Dispatcher, BalancedPool, Pool, Client, buildConnector, errors, Agent, request, stream, pipeline, connect, upgrade, setGlobalDispatcher, getGlobalDispatcher, setGlobalOrigin, getGlobalOrigin, interceptors, MockClient, MockPool, MockAgent, mockErrors, ProxyAgent, EnvHttpProxyAgent, RedirectHandler, DecoratorHandler, RetryHandler, RetryAgent }
36
37
  export default Undici
37
38
 
38
39
  declare namespace Undici {
@@ -41,7 +42,7 @@ declare namespace Undici {
41
42
  var RedirectHandler: typeof import ('./handlers').RedirectHandler
42
43
  var DecoratorHandler: typeof import ('./handlers').DecoratorHandler
43
44
  var RetryHandler: typeof import ('./retry-handler').default
44
- var createRedirectInterceptor: typeof import ('./interceptors').createRedirectInterceptor
45
+ var createRedirectInterceptor: typeof import ('./interceptors').default.createRedirectInterceptor
45
46
  var BalancedPool: typeof import('./balanced-pool').default;
46
47
  var Client: typeof import('./client').default;
47
48
  var buildConnector: typeof import('./connector').default;
@@ -66,9 +67,5 @@ declare namespace Undici {
66
67
  var File: typeof import('./file').File;
67
68
  var FileReader: typeof import('./filereader').FileReader;
68
69
  var caches: typeof import('./cache').caches;
69
- var interceptors: {
70
- dump: typeof import('./interceptors').dump;
71
- retry: typeof import('./interceptors').retry;
72
- redirect: typeof import('./interceptors').redirect;
73
- }
70
+ var interceptors: typeof import('./interceptors').default;
74
71
  }
@@ -1,11 +1,15 @@
1
1
  import Dispatcher from "./dispatcher";
2
2
  import RetryHandler from "./retry-handler";
3
3
 
4
- export type DumpInterceptorOpts = { maxSize?: number }
5
- export type RetryInterceptorOpts = RetryHandler.RetryOptions
6
- export type RedirectInterceptorOpts = { maxRedirections?: number }
4
+ export default Interceptors;
7
5
 
8
- export declare function createRedirectInterceptor (opts: RedirectInterceptorOpts): Dispatcher.DispatcherComposeInterceptor
9
- export declare function dump(opts?: DumpInterceptorOpts): Dispatcher.DispatcherComposeInterceptor
10
- export declare function retry(opts?: RetryInterceptorOpts): Dispatcher.DispatcherComposeInterceptor
11
- export declare function redirect(opts?: RedirectInterceptorOpts): Dispatcher.DispatcherComposeInterceptor
6
+ declare namespace Interceptors {
7
+ export type DumpInterceptorOpts = { maxSize?: number }
8
+ export type RetryInterceptorOpts = RetryHandler.RetryOptions
9
+ export type RedirectInterceptorOpts = { maxRedirections?: number }
10
+
11
+ export function createRedirectInterceptor(opts: RedirectInterceptorOpts): Dispatcher.DispatcherComposeInterceptor
12
+ export function dump(opts?: DumpInterceptorOpts): Dispatcher.DispatcherComposeInterceptor
13
+ export function retry(opts?: RetryInterceptorOpts): Dispatcher.DispatcherComposeInterceptor
14
+ export function redirect(opts?: RedirectInterceptorOpts): Dispatcher.DispatcherComposeInterceptor
15
+ }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "undici-types",
3
- "version": "6.18.2",
3
+ "version": "6.19.8",
4
4
  "description": "A stand-alone types package for Undici",
5
5
  "homepage": "https://undici.nodejs.org",
6
6
  "bugs": {
@@ -1,7 +1,4 @@
1
- import Agent from './agent'
2
- import buildConnector from './connector';
3
1
  import Dispatcher from './dispatcher'
4
- import { IncomingHttpHeaders } from './header'
5
2
  import RetryHandler from './retry-handler'
6
3
 
7
4
  export default RetryAgent
@@ -55,9 +55,7 @@ interface WebidlUtil {
55
55
  V: unknown,
56
56
  bitLength: number,
57
57
  signedness: 'signed' | 'unsigned',
58
- opts?: ConvertToIntOpts,
59
- prefix: string,
60
- argument: string
58
+ opts?: ConvertToIntOpts
61
59
  ): number
62
60
 
63
61
  /**
package/package.json CHANGED
@@ -60,7 +60,7 @@
60
60
  "jsii-diff": "^1.102.0",
61
61
  "jsii-docgen": "^1.8.110",
62
62
  "jsii-pacmak": "^1.102.0",
63
- "jsii-rosetta": "^5.4.30",
63
+ "jsii-rosetta": "^5.4.31",
64
64
  "projen": "^0.85.0",
65
65
  "standard-version": "^9",
66
66
  "ts-jest": "^27",
@@ -93,7 +93,7 @@
93
93
  "publishConfig": {
94
94
  "access": "public"
95
95
  },
96
- "version": "3.0.83",
96
+ "version": "3.0.84",
97
97
  "jest": {
98
98
  "coverageProvider": "v8",
99
99
  "testMatch": [