Skip to content

Commit e77488b

Browse files
authored
Bump codegen version to 0.22.0 (#1361)
1 parent ca9e649 commit e77488b

File tree

3 files changed

+25
-3
lines changed

3 files changed

+25
-3
lines changed

CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,27 @@
11
# Smithy Typescript Codegen Changelog
22

3+
## 0.22.0 (2024-07-06)
4+
5+
### Features
6+
7+
- codegen: Enabled the new identity and auth behavior by default and add a legacy auth mode ([#1352](https://github.com/smithy-lang/smithy-typescript/pull/1352))
8+
9+
- codegen: Added logic to skip the application of the `CustomEndpoints` plugin for models using Endpoints-2.0 ([#1337](https://github.com/smithy-lang/smithy-typescript/pull/1337))
10+
11+
- codegen: Added automatic default idempotency tokens in headers for requests when a token is not explicitly provided ([#1327](https://github.com/smithy-lang/smithy-typescript/pull/1327))
12+
13+
- codegen: Added a set of built-in integration plugins to code-generator ([#1321](https://github.com/smithy-lang/smithy-typescript/pull/1321))
14+
15+
### Bug Fixes
16+
17+
- codegen: Fixed inconsistent ordering issue when writing client params during code-generation ([#1355](https://github.com/smithy-lang/smithy-typescript/pull/1355))
18+
19+
- codegen: Fixed incorrect usage of string templates when generating commands ([#1354](https://github.com/smithy-lang/smithy-typescript/pull/1354))
20+
21+
- codegen: Fixed serialization of `:event-type` in event-streams where the member target-id was being used instead of the member name ([#1349](https://github.com/smithy-lang/smithy-typescript/pull/1349))
22+
23+
- codegen: Fixed issue where content-type was being set when input body was empty ([#1304](https://github.com/smithy-lang/smithy-typescript/pull/1304))
24+
325
## 0.21.1 (2024-06-05)
426

527
### Features

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ To add a minimal `typescript-client-codegen` plugin, add the following to `smith
4747
// Add the Smithy TypeScript code generator dependency
4848
"maven": {
4949
"dependencies": [
50-
"software.amazon.smithy.typescript:smithy-typescript-codegen:0.21.1"
50+
"software.amazon.smithy.typescript:smithy-typescript-codegen:0.22.0"
5151
]
5252
},
5353
"plugins": {
@@ -141,7 +141,7 @@ dependencies {
141141
smithyCli("software.amazon.smithy:smithy-cli:$smithyVersion")
142142

143143
// Add the Smithy TypeScript code generator dependency
144-
implementation("software.amazon.smithy.typescript:smithy-typescript-codegen:0.21.1")
144+
implementation("software.amazon.smithy.typescript:smithy-typescript-codegen:0.22.0")
145145

146146
// Uncomment below to add various smithy dependencies (see full list of smithy dependencies in https://github.com/awslabs/smithy)
147147
// implementation("software.amazon.smithy:smithy-model:$smithyVersion")

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ plugins {
2828

2929
allprojects {
3030
group = "software.amazon.smithy.typescript"
31-
version = "0.21.1"
31+
version = "0.22.0"
3232
}
3333

3434
// The root project doesn't produce a JAR.

0 commit comments

Comments
 (0)