@aws-cdk/integ-runner 2.190.1 → 2.190.2

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.
@@ -4878,7 +4878,7 @@ var require_semver2 = __commonJS({
4878
4878
  // ../cloud-assembly-schema/cli-version.json
4879
4879
  var require_cli_version = __commonJS({
4880
4880
  "../cloud-assembly-schema/cli-version.json"(exports2, module2) {
4881
- module2.exports = { version: "2.1026.0" };
4881
+ module2.exports = { version: "2.1027.0" };
4882
4882
  }
4883
4883
  });
4884
4884
 
@@ -323649,11 +323649,14 @@ var format_table_exports = {};
323649
323649
  __export(format_table_exports, {
323650
323650
  formatTable: () => formatTable
323651
323651
  });
323652
- function formatTable(cells, columns) {
323652
+ function formatTable(cells, columns, noHorizontalLines) {
323653
323653
  return table.table(cells, {
323654
323654
  border: TABLE_BORDER_CHARACTERS,
323655
323655
  columns: buildColumnConfig(columns !== void 0 ? calculateColumnWidths(cells, columns) : void 0),
323656
323656
  drawHorizontalLine: /* @__PURE__ */ __name((line) => {
323657
+ if (noHorizontalLines) {
323658
+ return line < 2 || line === cells.length;
323659
+ }
323657
323660
  return line < 2 || line === cells.length || lineBetween(cells[line - 1], cells[line]);
323658
323661
  }, "drawHorizontalLine")
323659
323662
  }).trimRight();
@@ -334711,19 +334714,33 @@ ${deployResult.stackArn}`));
334711
334714
  this.requireUnstableFeature("flags");
334712
334715
  const ioHelper = asIoHelper(this.ioHost, "flags");
334713
334716
  const assembly = __using(_stack, await assemblyFromSource(ioHelper, cx), true);
334714
- const artifacts = assembly.cloudAssembly.manifest.artifacts;
334715
- return Object.values(artifacts).filter((a3) => a3.type === import_cloud_assembly_schema8.ArtifactType.FEATURE_FLAG_REPORT).flatMap((report) => {
334717
+ const artifacts = Object.values(assembly.cloudAssembly.manifest.artifacts ?? {});
334718
+ const featureFlagReports = artifacts.filter((a3) => a3.type === import_cloud_assembly_schema8.ArtifactType.FEATURE_FLAG_REPORT);
334719
+ const flags = featureFlagReports.flatMap((report) => {
334716
334720
  const properties = report.properties;
334717
334721
  const moduleName = properties.module;
334718
- return Object.entries(properties.flags).map(([flagName, flagInfo]) => ({
334719
- module: moduleName,
334720
- name: flagName,
334721
- recommendedValue: flagInfo.recommendedValue,
334722
- userValue: flagInfo.userValue ?? void 0,
334723
- explanation: flagInfo.explanation ?? "",
334724
- unconfiguredBehavesLike: flagInfo.unconfiguredBehavesLike
334725
- }));
334722
+ const flagsWithUnconfiguredBehavesLike = Object.entries(properties.flags).filter(([_4, flagInfo]) => flagInfo.unconfiguredBehavesLike != void 0);
334723
+ const shouldIncludeUnconfiguredBehavesLike = flagsWithUnconfiguredBehavesLike.length > 0;
334724
+ return Object.entries(properties.flags).map(([flagName, flagInfo]) => {
334725
+ const baseFlag = {
334726
+ module: moduleName,
334727
+ name: flagName,
334728
+ recommendedValue: flagInfo.recommendedValue,
334729
+ userValue: flagInfo.userValue ?? void 0,
334730
+ explanation: flagInfo.explanation ?? ""
334731
+ };
334732
+ if (shouldIncludeUnconfiguredBehavesLike) {
334733
+ return {
334734
+ ...baseFlag,
334735
+ unconfiguredBehavesLike: {
334736
+ v2: flagInfo.unconfiguredBehavesLike?.v2 ?? false
334737
+ }
334738
+ };
334739
+ }
334740
+ return baseFlag;
334741
+ });
334726
334742
  });
334743
+ return flags;
334727
334744
  } catch (_3) {
334728
334745
  var _error = _3, _hasError = true;
334729
334746
  } finally {
package/package.json CHANGED
@@ -66,12 +66,12 @@
66
66
  "@aws-cdk/aws-service-spec": "^0.1.92",
67
67
  "@aws-cdk/cdk-assets-lib": "1.0.3",
68
68
  "@aws-cdk/cdk-cli-wrapper": "0.0.0",
69
- "@aws-cdk/cloud-assembly-schema": ">=48.5.0",
70
- "@aws-cdk/cloudformation-diff": "2.183.0",
69
+ "@aws-cdk/cloud-assembly-schema": ">=48.6.0",
70
+ "@aws-cdk/cloudformation-diff": "2.183.1",
71
71
  "@aws-cdk/cx-api": "^2.211.0",
72
- "@aws-cdk/toolkit-lib": "1.6.0",
72
+ "@aws-cdk/toolkit-lib": "1.6.1",
73
73
  "@aws-sdk/client-cloudformation": "^3",
74
- "aws-cdk": "2.1026.0",
74
+ "aws-cdk": "2.1027.0",
75
75
  "chalk": "^4",
76
76
  "chokidar": "^3",
77
77
  "fs-extra": "^9",
@@ -80,7 +80,7 @@
80
80
  },
81
81
  "dependencies": {
82
82
  "@aws-cdk/aws-service-spec": "0.1.92",
83
- "aws-cdk": "2.1026.0"
83
+ "aws-cdk": "2.1027.0"
84
84
  },
85
85
  "keywords": [
86
86
  "aws",
@@ -95,7 +95,7 @@
95
95
  "publishConfig": {
96
96
  "access": "public"
97
97
  },
98
- "version": "2.190.1",
98
+ "version": "2.190.2",
99
99
  "types": "lib/index.d.ts",
100
100
  "//": "~~ Generated by projen. To modify, edit .projenrc.js and run \"npx projen\".",
101
101
  "optionalDependencies": {