@go-to-k/cdkd 0.231.10 → 0.231.11

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/dist/cli.js CHANGED
@@ -1445,7 +1445,7 @@ const FLUSH_INTERVAL_MS = 2e3;
1445
1445
  const FLUSH_EVENT_THRESHOLD = 50;
1446
1446
  /** Build-time cdkd version, with a dev fallback for non-built contexts. */
1447
1447
  function getCdkdVersion() {
1448
- return "0.231.10";
1448
+ return "0.231.11";
1449
1449
  }
1450
1450
  /**
1451
1451
  * Generate a time-sortable unique run id, e.g.
@@ -10248,6 +10248,7 @@ var DynamoDBTableProvider = class {
10248
10248
  TableName: physicalId,
10249
10249
  OnDemandThroughput: properties["OnDemandThroughput"]
10250
10250
  }));
10251
+ await this.waitForTableActiveAfterUpdate(physicalId);
10251
10252
  this.logger.debug(`Updated OnDemandThroughput on DynamoDB table ${physicalId}`);
10252
10253
  }
10253
10254
  }
@@ -10257,6 +10258,7 @@ var DynamoDBTableProvider = class {
10257
10258
  TableName: physicalId,
10258
10259
  WarmThroughput: properties["WarmThroughput"]
10259
10260
  }));
10261
+ await this.waitForTableActiveAfterUpdate(physicalId);
10260
10262
  this.logger.debug(`Updated WarmThroughput on DynamoDB table ${physicalId}`);
10261
10263
  }
10262
10264
  }
@@ -55777,7 +55779,7 @@ function reorderArgs(argv) {
55777
55779
  async function main() {
55778
55780
  installPipeCloseHandler();
55779
55781
  const program = new Command();
55780
- program.name("cdkd").description("CDK Direct - Deploy AWS CDK apps directly via SDK/Cloud Control API").version("0.231.10");
55782
+ program.name("cdkd").description("CDK Direct - Deploy AWS CDK apps directly via SDK/Cloud Control API").version("0.231.11");
55781
55783
  program.addCommand(createBootstrapCommand());
55782
55784
  program.addCommand(createSynthCommand());
55783
55785
  program.addCommand(createListCommand());