aws-cdk 2.1111.0 → 2.1113.0
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/THIRD_PARTY_LICENSES +6 -6
- package/build-info.json +2 -2
- package/lib/cli/cdk-toolkit.d.ts +4 -0
- package/lib/cli/cdk-toolkit.js +24 -8
- package/lib/cli/cli-config.js +2 -1
- package/lib/cli/cli-type-registry.json +6 -0
- package/lib/cli/cli.js +12 -1
- package/lib/cli/convert-to-user-input.js +3 -1
- package/lib/cli/io-host/cli-io-host.js +26 -2
- package/lib/cli/parse-command-line-arguments.js +7 -1
- package/lib/cli/telemetry/messages.d.ts +4 -0
- package/lib/cli/telemetry/messages.js +1 -1
- package/lib/cli/telemetry/schema.d.ts +3 -1
- package/lib/cli/telemetry/schema.js +1 -1
- package/lib/cli/telemetry/session.d.ts +34 -0
- package/lib/cli/telemetry/session.js +45 -1
- package/lib/cli/user-input.d.ts +6 -0
- package/lib/cli/user-input.js +1 -1
- package/lib/cli/util/guess-agent.d.ts +7 -0
- package/lib/cli/util/guess-agent.js +32 -0
- package/lib/cxapp/cloud-executable.js +28 -7
- package/lib/index.js +1375 -686
- package/lib/init-templates/.init-version.json +1 -1
- package/package.json +4 -4
package/THIRD_PARTY_LICENSES
CHANGED
|
@@ -12154,7 +12154,7 @@ Apache License
|
|
|
12154
12154
|
|
|
12155
12155
|
----------------
|
|
12156
12156
|
|
|
12157
|
-
** @aws-sdk/xml-builder@3.972.
|
|
12157
|
+
** @aws-sdk/xml-builder@3.972.13 - https://www.npmjs.com/package/@aws-sdk/xml-builder/v/3.972.13 | Apache-2.0
|
|
12158
12158
|
Apache License
|
|
12159
12159
|
Version 2.0, January 2004
|
|
12160
12160
|
http://www.apache.org/licenses/
|
|
@@ -16314,7 +16314,7 @@ Apache License
|
|
|
16314
16314
|
|
|
16315
16315
|
----------------
|
|
16316
16316
|
|
|
16317
|
-
** @smithy/node-config-provider@4.3.
|
|
16317
|
+
** @smithy/node-config-provider@4.3.12 - https://www.npmjs.com/package/@smithy/node-config-provider/v/4.3.12 | Apache-2.0
|
|
16318
16318
|
Apache License
|
|
16319
16319
|
Version 2.0, January 2004
|
|
16320
16320
|
http://www.apache.org/licenses/
|
|
@@ -16724,7 +16724,7 @@ Apache License
|
|
|
16724
16724
|
|
|
16725
16725
|
----------------
|
|
16726
16726
|
|
|
16727
|
-
** @smithy/property-provider@4.2.
|
|
16727
|
+
** @smithy/property-provider@4.2.12 - https://www.npmjs.com/package/@smithy/property-provider/v/4.2.12 | Apache-2.0
|
|
16728
16728
|
Apache License
|
|
16729
16729
|
Version 2.0, January 2004
|
|
16730
16730
|
http://www.apache.org/licenses/
|
|
@@ -17753,7 +17753,7 @@ Apache License
|
|
|
17753
17753
|
|
|
17754
17754
|
----------------
|
|
17755
17755
|
|
|
17756
|
-
** @smithy/shared-ini-file-loader@4.4.
|
|
17756
|
+
** @smithy/shared-ini-file-loader@4.4.7 - https://www.npmjs.com/package/@smithy/shared-ini-file-loader/v/4.4.7 | Apache-2.0
|
|
17757
17757
|
Apache License
|
|
17758
17758
|
Version 2.0, January 2004
|
|
17759
17759
|
http://www.apache.org/licenses/
|
|
@@ -18369,7 +18369,7 @@ Apache License
|
|
|
18369
18369
|
|
|
18370
18370
|
----------------
|
|
18371
18371
|
|
|
18372
|
-
** @smithy/types@4.13.
|
|
18372
|
+
** @smithy/types@4.13.1 - https://www.npmjs.com/package/@smithy/types/v/4.13.1 | Apache-2.0
|
|
18373
18373
|
Apache License
|
|
18374
18374
|
Version 2.0, January 2004
|
|
18375
18375
|
http://www.apache.org/licenses/
|
|
@@ -23829,7 +23829,7 @@ SOFTWARE.
|
|
|
23829
23829
|
|
|
23830
23830
|
----------------
|
|
23831
23831
|
|
|
23832
|
-
** fast-xml-parser@5.
|
|
23832
|
+
** fast-xml-parser@5.5.6 - https://www.npmjs.com/package/fast-xml-parser/v/5.5.6 | MIT
|
|
23833
23833
|
MIT License
|
|
23834
23834
|
|
|
23835
23835
|
Copyright (c) 2017 Amit Kumar Gupta
|
package/build-info.json
CHANGED
package/lib/cli/cdk-toolkit.d.ts
CHANGED
|
@@ -519,6 +519,10 @@ export interface DestroyOptions {
|
|
|
519
519
|
* Whether the destroy request came from a deploy.
|
|
520
520
|
*/
|
|
521
521
|
fromDeploy?: boolean;
|
|
522
|
+
/**
|
|
523
|
+
* Maximum number of simultaneous destroys (dependency permitting) to execute.
|
|
524
|
+
*/
|
|
525
|
+
concurrency?: number;
|
|
522
526
|
}
|
|
523
527
|
/**
|
|
524
528
|
* Options for the garbage collection
|