diff --git a/clients/client-s3/src/models/models_0.ts b/clients/client-s3/src/models/models_0.ts index 1fc23941642d..6f0d5a2a4d22 100644 --- a/clients/client-s3/src/models/models_0.ts +++ b/clients/client-s3/src/models/models_0.ts @@ -1,5 +1,6 @@ // smithy-typescript generated code import { ExceptionOptionType as __ExceptionOptionType, SENSITIVE_STRING } from "@smithy/smithy-client"; + import { StreamingBlobTypes } from "@smithy/types"; import { S3ServiceException as __BaseException } from "./S3ServiceException"; diff --git a/clients/client-s3/src/models/models_1.ts b/clients/client-s3/src/models/models_1.ts index 96378677b77e..b66d7727cacd 100644 --- a/clients/client-s3/src/models/models_1.ts +++ b/clients/client-s3/src/models/models_1.ts @@ -1,5 +1,6 @@ // smithy-typescript generated code import { ExceptionOptionType as __ExceptionOptionType, SENSITIVE_STRING } from "@smithy/smithy-client"; + import { StreamingBlobTypes } from "@smithy/types"; import { @@ -27,6 +28,7 @@ import { StorageClass, Tag, } from "./models_0"; + import { S3ServiceException as __BaseException } from "./S3ServiceException"; /** diff --git a/codegen/CHANGELOG.md b/codegen/CHANGELOG.md index fe9e758524ec..dd6d1529550c 100644 --- a/codegen/CHANGELOG.md +++ b/codegen/CHANGELOG.md @@ -1,5 +1,12 @@ # Smithy AWS Typescript Codegen Changelog +## 0.22.0 (2024-07-06) + +### Features +* Added support for `AccountIdEndpointMode` when configuring client endpoint parameters ([#6036](https://github.com/aws/aws-sdk-js-v3/pull/6036)) +* Enabled the new identity and auth behavior by default ([#1352](https://github.com/smithy-lang/smithy-typescript/pull/1352)) + + ## 0.21.0 (2024-05-22) ### Bug Fixes diff --git a/codegen/build.gradle.kts b/codegen/build.gradle.kts index 6995aa6ced20..5480f066dd2f 100644 --- a/codegen/build.gradle.kts +++ b/codegen/build.gradle.kts @@ -31,7 +31,7 @@ allprojects { mavenCentral() } group = "software.amazon.smithy.typescript" - version = "0.21.1" + version = "0.22.0" } // The root project doesn't produce a JAR. diff --git a/codegen/smithy-aws-typescript-codegen/build.gradle.kts b/codegen/smithy-aws-typescript-codegen/build.gradle.kts index 8cec21818c74..325623654971 100644 --- a/codegen/smithy-aws-typescript-codegen/build.gradle.kts +++ b/codegen/smithy-aws-typescript-codegen/build.gradle.kts @@ -36,7 +36,7 @@ buildscript { dependencies { // Smithy TypeScript - api("software.amazon.smithy.typescript:smithy-typescript-codegen:0.21.1") + api("software.amazon.smithy.typescript:smithy-typescript-codegen:0.22.0") // Smithy generic dependencies api("software.amazon.smithy:smithy-model:$smithyVersion") diff --git a/scripts/generate-clients/config.js b/scripts/generate-clients/config.js index acdc0faa79af..25b24604be75 100644 --- a/scripts/generate-clients/config.js +++ b/scripts/generate-clients/config.js @@ -1,7 +1,7 @@ // Update this commit when taking up new changes from smithy-typescript. module.exports = { // Use full commit hash as we explicitly fetch it. - SMITHY_TS_COMMIT: "efcbbf42baf48ed19d2634555b2545acbd974321", + SMITHY_TS_COMMIT: "e77488b746a5b98c0e64e009242382e56bed531f", }; if (module.exports.SMITHY_TS_COMMIT.length < 40) {