@aws-cdk/integ-runner 2.197.16 → 2.197.17

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.
@@ -4672,7 +4672,7 @@ var require_semver2 = __commonJS({
4672
4672
  // ../cloud-assembly-schema/cli-version.json
4673
4673
  var require_cli_version = __commonJS({
4674
4674
  "../cloud-assembly-schema/cli-version.json"(exports2, module2) {
4675
- module2.exports = { version: "2.1118.3" };
4675
+ module2.exports = { version: "2.1118.4" };
4676
4676
  }
4677
4677
  });
4678
4678
 
@@ -5103,14 +5103,14 @@ have a unique display name. (Default - no display name)`,
5103
5103
  {
5104
5104
  type: "array",
5105
5105
  items: {
5106
- $ref: "#/definitions/Tag"
5107
- }
5108
- },
5109
- {
5110
- description: "Type of creation stack data",
5111
- type: "array",
5112
- items: {
5113
- type: "string"
5106
+ anyOf: [
5107
+ {
5108
+ $ref: "#/definitions/Tag"
5109
+ },
5110
+ {
5111
+ type: "string"
5112
+ }
5113
+ ]
5114
5114
  }
5115
5115
  },
5116
5116
  {
@@ -6709,7 +6709,7 @@ var require_integ_schema = __commonJS({
6709
6709
  var require_version = __commonJS({
6710
6710
  "../cloud-assembly-schema/schema/version.json"(exports2, module2) {
6711
6711
  module2.exports = {
6712
- schemaHash: "794dc834654646b4a60c6d8ea46ed0245a71de33e598289f6922082951768d04",
6712
+ schemaHash: "cf2452236640f556f1b81778515335af1c6bbdb54c7ef12dad43f8cf6a56ddee",
6713
6713
  $comment: "Do not hold back the version on additions: jsonschema validation of the manifest by the consumer will trigger errors on unexpected fields.",
6714
6714
  revision: 53
6715
6715
  };
@@ -289609,7 +289609,7 @@ var init_filter = __esm({
289609
289609
  const matched = ands.map((affected) => actualComponents.filter((actual) => this.componentNameMatches(affected, actual) && semver3.satisfies(actual.version, affected.version, { includePrerelease: true })));
289610
289610
  if (matched.every((xs) => xs.length > 0)) {
289611
289611
  const ret = new FilteredNotice(notice);
289612
- this.addDynamicValues(matched.flatMap((x6) => x6), ret);
289612
+ this.addDynamicValues(matched.flatMap((x6) => x6), ret, notice.dynamicValues);
289613
289613
  return [ret];
289614
289614
  }
289615
289615
  }
@@ -289629,9 +289629,9 @@ var init_filter = __esm({
289629
289629
  * Adds dynamic values from the given ActualComponents
289630
289630
  *
289631
289631
  * If there are multiple components with the same dynamic name, they are joined
289632
- * by a comma.
289632
+ * by the separator declared in `specs[name].separator`, defaulting to `','`.
289633
289633
  */
289634
- addDynamicValues(comps, notice) {
289634
+ addDynamicValues(comps, notice, specs) {
289635
289635
  const dynamicValues = {};
289636
289636
  for (const comp of comps) {
289637
289637
  if (comp.dynamicName) {
@@ -289640,7 +289640,7 @@ var init_filter = __esm({
289640
289640
  }
289641
289641
  }
289642
289642
  for (const [key, values] of Object.entries(dynamicValues)) {
289643
- notice.addDynamicValue(key, values.join(","));
289643
+ notice.addDynamicValue(key, values.join(specs?.[key]?.separator ?? ","));
289644
289644
  }
289645
289645
  }
289646
289646
  /**
package/package.json CHANGED
@@ -64,13 +64,13 @@
64
64
  "ts-jest": "^29.4.9",
65
65
  "typescript": "5.9",
66
66
  "@aws-cdk/aws-service-spec": "^0.1.171",
67
- "@aws-cdk/cdk-assets-lib": "1.4.4",
67
+ "@aws-cdk/cdk-assets-lib": "1.4.5",
68
68
  "@aws-cdk/cloud-assembly-api": "2.2.2",
69
69
  "@aws-cdk/cloud-assembly-schema": ">=53.17.0",
70
70
  "@aws-cdk/cloudformation-diff": "2.187.1",
71
- "@aws-cdk/toolkit-lib": "1.22.1",
71
+ "@aws-cdk/toolkit-lib": "1.23.0",
72
72
  "@aws-sdk/client-cloudformation": "^3",
73
- "aws-cdk": "2.1118.3",
73
+ "aws-cdk": "2.1118.4",
74
74
  "chalk": "^4",
75
75
  "chokidar": "^4",
76
76
  "fs-extra": "^11",
@@ -80,7 +80,7 @@
80
80
  },
81
81
  "dependencies": {
82
82
  "@aws-cdk/aws-service-spec": "0.1.171",
83
- "aws-cdk": "2.1118.3"
83
+ "aws-cdk": "2.1118.4"
84
84
  },
85
85
  "keywords": [
86
86
  "aws",
@@ -102,7 +102,7 @@
102
102
  "publishConfig": {
103
103
  "access": "public"
104
104
  },
105
- "version": "2.197.16",
105
+ "version": "2.197.17",
106
106
  "packageManager": "yarn@4.13.0",
107
107
  "types": "lib/index.d.ts",
108
108
  "//": "~~ Generated by projen. To modify, edit .projenrc.js and run \"yarn projen\"."