aws-cdk 2.1033.0 → 2.1100.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 +515 -130
- package/build-info.json +2 -2
- package/db.json.gz +0 -0
- package/lib/api/bootstrap/bootstrap-template.yaml +3 -2
- package/lib/cli/cdk-toolkit.d.ts +1 -1
- package/lib/cli/cdk-toolkit.js +4 -9
- package/lib/cli/cli-config.js +3 -1
- package/lib/cli/cli-type-registry.json +10 -0
- package/lib/cli/cli.js +3 -5
- package/lib/cli/convert-to-user-input.js +3 -1
- package/lib/cli/io-host/cli-io-host.d.ts +1 -1
- package/lib/cli/io-host/cli-io-host.js +35 -17
- package/lib/cli/parse-command-line-arguments.js +14 -2
- package/lib/cli/telemetry/collect-telemetry.js +3 -2
- package/lib/cli/telemetry/sink/endpoint-sink.js +8 -5
- package/lib/cli/user-input.d.ts +6 -0
- package/lib/cli/user-input.js +1 -1
- package/lib/commands/flags/flags.js +2 -2
- package/lib/commands/flags/operations.d.ts +21 -2
- package/lib/commands/flags/operations.js +57 -13
- package/lib/commands/init/init.d.ts +6 -0
- package/lib/commands/init/init.js +20 -11
- package/lib/commands/init/package-manager.d.ts +2 -0
- package/lib/commands/init/package-manager.js +5 -0
- package/lib/index.js +139815 -202489
- package/lib/init-templates/.init-version.json +1 -1
- package/lib/init-templates/.recommended-feature-flags.json +3 -1
- package/lib/init-templates/app/javascript/jest.config.js +2 -1
- package/lib/init-templates/app/typescript/jest.config.js +2 -1
- package/lib/init-templates/lib/typescript/jest.config.js +2 -1
- package/lib/init-templates/sample-app/javascript/jest.config.js +2 -1
- package/lib/init-templates/sample-app/typescript/jest.config.js +2 -1
- package/package.json +21 -21
- package/lib/commands/flag-operations.d.ts +0 -23
- package/lib/commands/flag-operations.js +0 -416
- /package/lib/{obsolete-flags.d.ts → commands/flags/obsolete-flags.d.ts} +0 -0
- /package/lib/{obsolete-flags.js → commands/flags/obsolete-flags.js} +0 -0
package/build-info.json
CHANGED
package/db.json.gz
CHANGED
|
Binary file
|
|
@@ -631,6 +631,7 @@ Resources:
|
|
|
631
631
|
- cloudformation:DeleteChangeSet
|
|
632
632
|
- cloudformation:DescribeChangeSet
|
|
633
633
|
- cloudformation:DescribeStacks
|
|
634
|
+
- cloudformation:DescribeEvents
|
|
634
635
|
- cloudformation:ExecuteChangeSet
|
|
635
636
|
- cloudformation:CreateStack
|
|
636
637
|
- cloudformation:UpdateStack
|
|
@@ -814,7 +815,7 @@ Resources:
|
|
|
814
815
|
Name:
|
|
815
816
|
Fn::Sub: '/cdk-bootstrap/${Qualifier}/version'
|
|
816
817
|
# Also update this value below (see comment there)
|
|
817
|
-
Value: '
|
|
818
|
+
Value: '30'
|
|
818
819
|
Outputs:
|
|
819
820
|
BucketName:
|
|
820
821
|
Description: The name of the S3 bucket owned by the CDK toolkit stack
|
|
@@ -849,4 +850,4 @@ Outputs:
|
|
|
849
850
|
# {Fn::GetAtt} on an SSM Parameter is eventually consistent, and can fail with "parameter
|
|
850
851
|
# doesn't exist" even after just having been created. To reduce our deploy failure rate, we
|
|
851
852
|
# duplicate the value here and use a build-time test to ensure the two values are the same.
|
|
852
|
-
Value: '
|
|
853
|
+
Value: '30'
|
package/lib/cli/cdk-toolkit.d.ts
CHANGED
|
@@ -98,7 +98,7 @@ export declare class CdkToolkit {
|
|
|
98
98
|
constructor(props: CdkToolkitProps);
|
|
99
99
|
metadata(stackName: string, json: boolean): Promise<void>;
|
|
100
100
|
acknowledge(noticeId: string): Promise<void>;
|
|
101
|
-
cliTelemetryStatus(
|
|
101
|
+
cliTelemetryStatus(args: any): Promise<void>;
|
|
102
102
|
cliTelemetry(enable: boolean): Promise<void>;
|
|
103
103
|
diff(options: DiffOptions): Promise<number>;
|
|
104
104
|
deploy(options: DeployOptions): Promise<void>;
|