Skip to content

Commit 9ffe82d

Browse files
authored
Bump codegen version to 0.27.0 (#1542)
1 parent ee3ec22 commit 9ffe82d

File tree

3 files changed

+18
-3
lines changed

3 files changed

+18
-3
lines changed

CHANGELOG.md

+15
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# Smithy Typescript Codegen Changelog
22

3+
## 0.27.0 (2025-03-04)
4+
5+
### Features
6+
- Support MultiSelect List in OperationContextParams ([#1536](https://github.com/smithy-lang/smithy-typescript/pull/1536))
7+
- Support MultiSelect Flatten in OperationContextParams ([#1537](https://github.com/smithy-lang/smithy-typescript/pull/1537))
8+
- Upgrade smithy version to 1.53.0 ([#1538](https://github.com/smithy-lang/smithy-typescript/pull/1538))
9+
- Upgrade smithy version to 1.54.0 ([#1540](https://github.com/smithy-lang/smithy-typescript/pull/1540))
10+
11+
### Bug Fixes
12+
- Fixed union member serialization in CBOR ([#1526](https://github.com/smithy-lang/smithy-typescript/pull/1526))
13+
- Fixed allocation of strings starting with underscore and other cases ([#1527](https://github.com/smithy-lang/smithy-typescript/pull/1527))
14+
15+
### Documentation
16+
- Moved description block before deprecated tag ([#1516](https://github.com/smithy-lang/smithy-typescript/pull/1516))
17+
318
## 0.26.0 (2025-01-22)
419

520
### Features

README.md

+2-2
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.26.0"
50+
"software.amazon.smithy.typescript:smithy-typescript-codegen:0.27.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.26.0")
144+
implementation("software.amazon.smithy.typescript:smithy-typescript-codegen:0.27.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

+1-1
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.26.0"
31+
version = "0.27.0"
3232
}
3333

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

0 commit comments

Comments
 (0)