aws-cdk 2.1118.3 → 2.1118.4

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/build-info.json CHANGED
@@ -1,4 +1,4 @@
1
1
  {
2
- "comment": "Generated at 2026-04-20T12:35:10Z by generate.sh",
3
- "commit": "bc64f64"
2
+ "comment": "Generated at 2026-04-20T15:22:56Z by generate.sh",
3
+ "commit": "82715b6"
4
4
  }
package/lib/index.js CHANGED
@@ -3601,7 +3601,7 @@ var require_semver2 = __commonJS({
3601
3601
  // ../@aws-cdk/cloud-assembly-schema/cli-version.json
3602
3602
  var require_cli_version = __commonJS({
3603
3603
  "../@aws-cdk/cloud-assembly-schema/cli-version.json"(exports2, module2) {
3604
- module2.exports = { version: "2.1118.3" };
3604
+ module2.exports = { version: "2.1118.4" };
3605
3605
  }
3606
3606
  });
3607
3607
 
@@ -4032,14 +4032,14 @@ have a unique display name. (Default - no display name)`,
4032
4032
  {
4033
4033
  type: "array",
4034
4034
  items: {
4035
- $ref: "#/definitions/Tag"
4036
- }
4037
- },
4038
- {
4039
- description: "Type of creation stack data",
4040
- type: "array",
4041
- items: {
4042
- type: "string"
4035
+ anyOf: [
4036
+ {
4037
+ $ref: "#/definitions/Tag"
4038
+ },
4039
+ {
4040
+ type: "string"
4041
+ }
4042
+ ]
4043
4043
  }
4044
4044
  },
4045
4045
  {
@@ -5638,7 +5638,7 @@ var require_integ_schema = __commonJS({
5638
5638
  var require_version = __commonJS({
5639
5639
  "../@aws-cdk/cloud-assembly-schema/schema/version.json"(exports2, module2) {
5640
5640
  module2.exports = {
5641
- schemaHash: "794dc834654646b4a60c6d8ea46ed0245a71de33e598289f6922082951768d04",
5641
+ schemaHash: "cf2452236640f556f1b81778515335af1c6bbdb54c7ef12dad43f8cf6a56ddee",
5642
5642
  $comment: "Do not hold back the version on additions: jsonschema validation of the manifest by the consumer will trigger errors on unexpected fields.",
5643
5643
  revision: 53
5644
5644
  };
@@ -129004,7 +129004,7 @@ var init_filter = __esm({
129004
129004
  const matched = ands.map((affected) => actualComponents.filter((actual) => this.componentNameMatches(affected, actual) && semver3.satisfies(actual.version, affected.version, { includePrerelease: true })));
129005
129005
  if (matched.every((xs) => xs.length > 0)) {
129006
129006
  const ret = new FilteredNotice(notice);
129007
- this.addDynamicValues(matched.flatMap((x6) => x6), ret);
129007
+ this.addDynamicValues(matched.flatMap((x6) => x6), ret, notice.dynamicValues);
129008
129008
  return [ret];
129009
129009
  }
129010
129010
  }
@@ -129024,9 +129024,9 @@ var init_filter = __esm({
129024
129024
  * Adds dynamic values from the given ActualComponents
129025
129025
  *
129026
129026
  * If there are multiple components with the same dynamic name, they are joined
129027
- * by a comma.
129027
+ * by the separator declared in `specs[name].separator`, defaulting to `','`.
129028
129028
  */
129029
- addDynamicValues(comps, notice) {
129029
+ addDynamicValues(comps, notice, specs) {
129030
129030
  const dynamicValues = {};
129031
129031
  for (const comp of comps) {
129032
129032
  if (comp.dynamicName) {
@@ -129035,7 +129035,7 @@ var init_filter = __esm({
129035
129035
  }
129036
129036
  }
129037
129037
  for (const [key, values] of Object.entries(dynamicValues)) {
129038
- notice.addDynamicValue(key, values.join(","));
129038
+ notice.addDynamicValue(key, values.join(specs?.[key]?.separator ?? ","));
129039
129039
  }
129040
129040
  }
129041
129041
  /**
@@ -311455,6 +311455,7 @@ var init_stack_refresh = __esm({
311455
311455
  timeout;
311456
311456
  lastRefreshTime;
311457
311457
  queuedPromises = [];
311458
+ stopped = false;
311458
311459
  start() {
311459
311460
  this.timeout = setTimeout(() => this.refresh(), 3e5);
311460
311461
  }
@@ -311467,6 +311468,9 @@ var init_stack_refresh = __esm({
311467
311468
  qualifier: this.props.qualifier
311468
311469
  });
311469
311470
  this.justRefreshedStacks();
311471
+ if (this.stopped) {
311472
+ return;
311473
+ }
311470
311474
  this.timeout = setTimeout(() => this.refresh(), Math.max(startTime + 3e5 - Date.now(), 0));
311471
311475
  }
311472
311476
  justRefreshedStacks() {
@@ -311491,6 +311495,7 @@ var init_stack_refresh = __esm({
311491
311495
  ]);
311492
311496
  }
311493
311497
  stop() {
311498
+ this.stopped = true;
311494
311499
  clearTimeout(this.timeout);
311495
311500
  }
311496
311501
  };
package/package.json CHANGED
@@ -80,12 +80,12 @@
80
80
  "ts-mock-imports": "^1.3.19",
81
81
  "tsx": "^4.21.0",
82
82
  "typescript": "5.9",
83
- "@aws-cdk/cdk-assets-lib": "^1.4.4",
83
+ "@aws-cdk/cdk-assets-lib": "^1.4.5",
84
84
  "@aws-cdk/cloud-assembly-api": "2.2.2",
85
85
  "@aws-cdk/cloud-assembly-schema": ">=53.17.0",
86
86
  "@aws-cdk/cloudformation-diff": "2.187.1",
87
87
  "@aws-cdk/cx-api": "^2",
88
- "@aws-cdk/toolkit-lib": "^1.22.1",
88
+ "@aws-cdk/toolkit-lib": "^1.23.0",
89
89
  "@aws-sdk/client-appsync": "^3",
90
90
  "@aws-sdk/client-bedrock-agentcore-control": "^3",
91
91
  "@aws-sdk/client-cloudcontrol": "^3",
@@ -157,7 +157,7 @@
157
157
  "publishConfig": {
158
158
  "access": "public"
159
159
  },
160
- "version": "2.1118.3",
160
+ "version": "2.1118.4",
161
161
  "packageManager": "yarn@4.13.0",
162
162
  "types": "lib/index.d.ts",
163
163
  "exports": {