Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Smithy Typescript Codegen Changelog

## 0.34.1 (2025-09-10)

### Bug Fixes

- Refactored http binding and cbor serializer ([#1659](https://github.com/smithy-lang/smithy-typescript/pull/1659))
- Added bucketing system to generate schema objects into separate files ([#1672](https://github.com/smithy-lang/smithy-typescript/pull/1672))
- Fixed event stream serialization when the `@eventStreamPayload` member is a string ([#1674](https://github.com/smithy-lang/smithy-typescript/pull/1674))

## 0.34.0 (2025-07-30)

### Features
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ To add a minimal `typescript-client-codegen` plugin, add the following to `smith
"sources": ["models"],
// Add the Smithy TypeScript code generator dependency
"maven": {
"dependencies": ["software.amazon.smithy.typescript:smithy-typescript-codegen:0.34.0"]
"dependencies": ["software.amazon.smithy.typescript:smithy-typescript-codegen:0.34.1"]
},
"plugins": {
// Add the Smithy TypeScript client plugin
Expand Down Expand Up @@ -139,7 +139,7 @@ dependencies {
smithyCli("software.amazon.smithy:smithy-cli:$smithyVersion")

// Add the Smithy TypeScript code generator dependency
implementation("software.amazon.smithy.typescript:smithy-typescript-codegen:0.34.0")
implementation("software.amazon.smithy.typescript:smithy-typescript-codegen:0.34.1")

// Uncomment below to add various smithy dependencies (see full list of smithy dependencies in https://github.com/awslabs/smithy)
// implementation("software.amazon.smithy:smithy-model:$smithyVersion")
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ plugins {

allprojects {
group = "software.amazon.smithy.typescript"
version = "0.34.0"
version = "0.34.1"
}

// The root project doesn't produce a JAR.
Expand Down
Loading