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.
Files changed (37) hide show
  1. package/THIRD_PARTY_LICENSES +515 -130
  2. package/build-info.json +2 -2
  3. package/db.json.gz +0 -0
  4. package/lib/api/bootstrap/bootstrap-template.yaml +3 -2
  5. package/lib/cli/cdk-toolkit.d.ts +1 -1
  6. package/lib/cli/cdk-toolkit.js +4 -9
  7. package/lib/cli/cli-config.js +3 -1
  8. package/lib/cli/cli-type-registry.json +10 -0
  9. package/lib/cli/cli.js +3 -5
  10. package/lib/cli/convert-to-user-input.js +3 -1
  11. package/lib/cli/io-host/cli-io-host.d.ts +1 -1
  12. package/lib/cli/io-host/cli-io-host.js +35 -17
  13. package/lib/cli/parse-command-line-arguments.js +14 -2
  14. package/lib/cli/telemetry/collect-telemetry.js +3 -2
  15. package/lib/cli/telemetry/sink/endpoint-sink.js +8 -5
  16. package/lib/cli/user-input.d.ts +6 -0
  17. package/lib/cli/user-input.js +1 -1
  18. package/lib/commands/flags/flags.js +2 -2
  19. package/lib/commands/flags/operations.d.ts +21 -2
  20. package/lib/commands/flags/operations.js +57 -13
  21. package/lib/commands/init/init.d.ts +6 -0
  22. package/lib/commands/init/init.js +20 -11
  23. package/lib/commands/init/package-manager.d.ts +2 -0
  24. package/lib/commands/init/package-manager.js +5 -0
  25. package/lib/index.js +139815 -202489
  26. package/lib/init-templates/.init-version.json +1 -1
  27. package/lib/init-templates/.recommended-feature-flags.json +3 -1
  28. package/lib/init-templates/app/javascript/jest.config.js +2 -1
  29. package/lib/init-templates/app/typescript/jest.config.js +2 -1
  30. package/lib/init-templates/lib/typescript/jest.config.js +2 -1
  31. package/lib/init-templates/sample-app/javascript/jest.config.js +2 -1
  32. package/lib/init-templates/sample-app/typescript/jest.config.js +2 -1
  33. package/package.json +21 -21
  34. package/lib/commands/flag-operations.d.ts +0 -23
  35. package/lib/commands/flag-operations.js +0 -416
  36. /package/lib/{obsolete-flags.d.ts → commands/flags/obsolete-flags.d.ts} +0 -0
  37. /package/lib/{obsolete-flags.js → commands/flags/obsolete-flags.js} +0 -0
package/build-info.json CHANGED
@@ -1,4 +1,4 @@
1
1
  {
2
- "comment": "Generated at 2025-11-19T12:12:48Z by generate.sh",
3
- "commit": "1ec3310"
2
+ "comment": "Generated at 2025-12-15T16:39:36Z by generate.sh",
3
+ "commit": "8ac049e"
4
4
  }
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: '29'
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: '29'
853
+ Value: '30'
@@ -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(versionReporting?: boolean): Promise<void>;
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>;