Update module github.com/aws/smithy-go to v1.28.2 #41

Open
renovate-bot wants to merge 1 commit from renovate/github.com-aws-smithy-go-1.x into master
Collaborator

This PR contains the following updates:

Package Type Update Change
github.com/aws/smithy-go require minor v1.25.1v1.28.2

Release Notes

aws/smithy-go (github.com/aws/smithy-go)

v1.28.2

Compare Source

General Highlights

  • Dependency Update: Updated to the latest SDK module versions

Module Highlights

  • github.com/aws/smithy-go: v1.28.2
    • Bug Fix: Avoid allocating a slice in ValidateEndpointHost by indexing into the hostname instead of using strings.Split.
    • Bug Fix: Fix event stream decode panic on unknown header value type.
    • Bug Fix: Fix schema-serde CBOR decode panic on malformed string/blob length.
    • Bug Fix: JoinPath keeps a trailing slash when the added path is a slash.

v1.28.1

Compare Source

General Highlights

  • Dependency Update: Updated to the latest SDK module versions

Module Highlights

  • github.com/aws/smithy-go: v1.28.1
    • Bug Fix: Fix broken AddLogger middleware since its insert point was removed.

v1.28.0

Compare Source

General Highlights

  • Dependency Update: Updated to the latest SDK module versions

Module Highlights

  • github.com/aws/smithy-go: v1.28.0
    • Feature: Set Content-Length inline when the request body is set via SetStream. The ComputeContentLength middleware is now deprecated.

v1.27.10

Compare Source

General Highlights

  • Dependency Update: Updated to the latest SDK module versions

Module Highlights

  • github.com/aws/smithy-go: v1.27.10
    • Bug Fix: Fix a data race on the underlying writer when an event stream is closed while an event write is in flight.
    • Bug Fix: Restore draining the HTTP response body in CloseResponseBody to avoid issues with TCP connection reuse.

v1.27.9

Compare Source

General Highlights

  • Dependency Update: Updated to the latest SDK module versions

Module Highlights

  • github.com/aws/smithy-go: v1.27.9
    • Bug Fix: Fix a generic event stream exception not carrying the error code and message from its payload.
    • Bug Fix: Fix an event stream not being closed when its connection is lost, which would cause a caller writing to the stream to block indefinitely.
    • Bug Fix: Fix deserialization of an empty list producing a nil slice instead of an empty one.
    • Bug Fix: Restore draining the HTTP response body in CloseResponseBody to avoid issues with TCP connection reuse.

v1.27.8

Compare Source

General Highlights

  • Dependency Update: Updated to the latest SDK module versions

Module Highlights

  • github.com/aws/smithy-go: v1.27.8
    • Bug Fix: Restore draining the HTTP response body in CloseResponseBody to avoid issues with TCP connection reuse.

v1.27.7

Compare Source

General Highlights

  • Dependency Update: Updated to the latest SDK module versions

Module Highlights

  • github.com/aws/smithy-go: v1.27.7
    • Bug Fix: Don't serialize unset JSON documents as nil in structure members.
    • Bug Fix: Fix a deserialization panic around collection members in recursive shape configs.

v1.27.6

Compare Source

General Highlights

  • Dependency Update: Updated to the latest SDK module versions

Module Highlights

  • github.com/aws/smithy-go: v1.27.6
    • Bug Fix: Fix failure to deserialize any @httpPayload struct with a non-string member.
    • Bug Fix: Fix failure to serialize any @httpPayload struct with a nested struct.

v1.27.5

Compare Source

General Highlights

  • Dependency Update: Updated to the latest SDK module versions

Module Highlights

  • github.com/aws/smithy-go: v1.27.5
    • Bug Fix: Fix a performance issue in awsQuery with large response payloads.

v1.27.4

Compare Source

v1.27.3

Compare Source

General Highlights

  • Dependency Update: Updated to the latest SDK module versions

Module Highlights

  • github.com/aws/smithy-go: v1.27.3
    • Bug Fix: Fix bug in JSON doc encoder and endpoint host label format validation

v1.27.2

Compare Source

General Highlights

  • Dependency Update: Updated to the latest SDK module versions

Module Highlights

  • github.com/aws/smithy-go: v1.27.2
    • Bug Fix: Fix incorrect serialization of unions in CBOR-based protocols.

v1.27.1

Compare Source

General Highlights

  • Dependency Update: Updated to the latest SDK module versions

Module Highlights

  • github.com/aws/smithy-go: v1.27.10
    • Bug Fix: Fix a data race on the underlying writer when an event stream is closed while an event write is in flight.
    • Bug Fix: Restore draining the HTTP response body in CloseResponseBody to avoid issues with TCP connection reuse.

v1.27.0

Compare Source

General Highlights

  • Dependency Update: Updated to the latest SDK module versions

Module Highlights

  • github.com/aws/smithy-go: v1.27.0
    • Feature: Add APIs for schema-based serialization.
    • Feature: Add support for all current AWS and Smithy protocols.
    • Bug Fix: Enforce max nesting depth of 128 on CBOR payloads.
  • github.com/aws/smithy-go/aws-http-auth: v1.2.0
    • Feature: Add event stream signer.

v1.26.0

Compare Source

General Highlights

  • Dependency Update: Updated to the latest SDK module versions

Module Highlights

  • github.com/aws/smithy-go: v1.26.0
    • Feature: Add StringSlice to endpoint rulesfn.

Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate CLI.

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [github.com/aws/smithy-go](https://github.com/aws/smithy-go) | require | minor | `v1.25.1` → `v1.28.2` | --- ### Release Notes <details> <summary>aws/smithy-go (github.com/aws/smithy-go)</summary> ### [`v1.28.2`](https://github.com/aws/smithy-go/blob/HEAD/CHANGELOG.md#Release-2026-09-18) [Compare Source](https://github.com/aws/smithy-go/compare/v1.28.1...v1.28.2) #### General Highlights - **Dependency Update**: Updated to the latest SDK module versions #### Module Highlights - `github.com/aws/smithy-go`: v1.28.2 - **Bug Fix**: Avoid allocating a slice in ValidateEndpointHost by indexing into the hostname instead of using strings.Split. - **Bug Fix**: Fix event stream decode panic on unknown header value type. - **Bug Fix**: Fix schema-serde CBOR decode panic on malformed string/blob length. - **Bug Fix**: JoinPath keeps a trailing slash when the added path is a slash. ### [`v1.28.1`](https://github.com/aws/smithy-go/blob/HEAD/CHANGELOG.md#Release-2026-08-26) [Compare Source](https://github.com/aws/smithy-go/compare/v1.28.0...v1.28.1) #### General Highlights - **Dependency Update**: Updated to the latest SDK module versions #### Module Highlights - `github.com/aws/smithy-go`: v1.28.1 - **Bug Fix**: Fix broken AddLogger middleware since its insert point was removed. ### [`v1.28.0`](https://github.com/aws/smithy-go/blob/HEAD/CHANGELOG.md#Release-2026-08-252) [Compare Source](https://github.com/aws/smithy-go/compare/v1.27.10...v1.28.0) #### General Highlights - **Dependency Update**: Updated to the latest SDK module versions #### Module Highlights - `github.com/aws/smithy-go`: v1.28.0 - **Feature**: Set `Content-Length` inline when the request body is set via `SetStream`. The `ComputeContentLength` middleware is now deprecated. ### [`v1.27.10`](https://github.com/aws/smithy-go/blob/HEAD/CHANGELOG.md#Release-2026-08-25) [Compare Source](https://github.com/aws/smithy-go/compare/v1.27.9...v1.27.10) #### General Highlights - **Dependency Update**: Updated to the latest SDK module versions #### Module Highlights - `github.com/aws/smithy-go`: v1.27.10 - **Bug Fix**: Fix a data race on the underlying writer when an event stream is closed while an event write is in flight. - **Bug Fix**: Restore draining the HTTP response body in `CloseResponseBody` to avoid issues with TCP connection reuse. ### [`v1.27.9`](https://github.com/aws/smithy-go/blob/HEAD/CHANGELOG.md#Release-2026-08-21) [Compare Source](https://github.com/aws/smithy-go/compare/v1.27.8...v1.27.9) #### General Highlights - **Dependency Update**: Updated to the latest SDK module versions #### Module Highlights - `github.com/aws/smithy-go`: v1.27.9 - **Bug Fix**: Fix a generic event stream exception not carrying the error code and message from its payload. - **Bug Fix**: Fix an event stream not being closed when its connection is lost, which would cause a caller writing to the stream to block indefinitely. - **Bug Fix**: Fix deserialization of an empty list producing a nil slice instead of an empty one. - **Bug Fix**: Restore draining the HTTP response body in `CloseResponseBody` to avoid issues with TCP connection reuse. ### [`v1.27.8`](https://github.com/aws/smithy-go/blob/HEAD/CHANGELOG.md#Release-2026-08-14) [Compare Source](https://github.com/aws/smithy-go/compare/v1.27.7...v1.27.8) #### General Highlights - **Dependency Update**: Updated to the latest SDK module versions #### Module Highlights - `github.com/aws/smithy-go`: v1.27.8 - **Bug Fix**: Restore draining the HTTP response body in `CloseResponseBody` to avoid issues with TCP connection reuse. ### [`v1.27.7`](https://github.com/aws/smithy-go/blob/HEAD/CHANGELOG.md#Release-2026-08-07) [Compare Source](https://github.com/aws/smithy-go/compare/v1.27.6...v1.27.7) #### General Highlights - **Dependency Update**: Updated to the latest SDK module versions #### Module Highlights - `github.com/aws/smithy-go`: v1.27.7 - **Bug Fix**: Don't serialize unset JSON documents as `nil` in structure members. - **Bug Fix**: Fix a deserialization panic around collection members in recursive shape configs. ### [`v1.27.6`](https://github.com/aws/smithy-go/blob/HEAD/CHANGELOG.md#Release-2026-07-31) [Compare Source](https://github.com/aws/smithy-go/compare/v1.27.5...v1.27.6) #### General Highlights - **Dependency Update**: Updated to the latest SDK module versions #### Module Highlights - `github.com/aws/smithy-go`: v1.27.6 - **Bug Fix**: Fix failure to deserialize any `@httpPayload` struct with a non-string member. - **Bug Fix**: Fix failure to serialize any `@httpPayload` struct with a nested struct. ### [`v1.27.5`](https://github.com/aws/smithy-go/blob/HEAD/CHANGELOG.md#Release-2026-07-27) [Compare Source](https://github.com/aws/smithy-go/compare/v1.27.4...v1.27.5) #### General Highlights - **Dependency Update**: Updated to the latest SDK module versions #### Module Highlights - `github.com/aws/smithy-go`: v1.27.5 - **Bug Fix**: Fix a performance issue in awsQuery with large response payloads. ### [`v1.27.4`](https://github.com/aws/smithy-go/compare/v1.27.3...v1.27.4) [Compare Source](https://github.com/aws/smithy-go/compare/v1.27.3...v1.27.4) ### [`v1.27.3`](https://github.com/aws/smithy-go/blob/HEAD/CHANGELOG.md#Release-2026-06-26) [Compare Source](https://github.com/aws/smithy-go/compare/v1.27.2...v1.27.3) #### General Highlights - **Dependency Update**: Updated to the latest SDK module versions #### Module Highlights - `github.com/aws/smithy-go`: v1.27.3 - **Bug Fix**: Fix bug in JSON doc encoder and endpoint host label format validation ### [`v1.27.2`](https://github.com/aws/smithy-go/blob/HEAD/CHANGELOG.md#Release-2026-06-05) [Compare Source](https://github.com/aws/smithy-go/compare/v1.27.1...v1.27.2) #### General Highlights - **Dependency Update**: Updated to the latest SDK module versions #### Module Highlights - `github.com/aws/smithy-go`: v1.27.2 - **Bug Fix**: Fix incorrect serialization of unions in CBOR-based protocols. ### [`v1.27.1`](https://github.com/aws/smithy-go/blob/HEAD/CHANGELOG.md#Release-2026-08-25) [Compare Source](https://github.com/aws/smithy-go/compare/v1.27.0...v1.27.1) #### General Highlights - **Dependency Update**: Updated to the latest SDK module versions #### Module Highlights - `github.com/aws/smithy-go`: v1.27.10 - **Bug Fix**: Fix a data race on the underlying writer when an event stream is closed while an event write is in flight. - **Bug Fix**: Restore draining the HTTP response body in `CloseResponseBody` to avoid issues with TCP connection reuse. ### [`v1.27.0`](https://github.com/aws/smithy-go/blob/HEAD/CHANGELOG.md#Release-2026-06-02) [Compare Source](https://github.com/aws/smithy-go/compare/v1.26.0...v1.27.0) #### General Highlights - **Dependency Update**: Updated to the latest SDK module versions #### Module Highlights - `github.com/aws/smithy-go`: v1.27.0 - **Feature**: Add APIs for schema-based serialization. - **Feature**: Add support for all current AWS and Smithy protocols. - **Bug Fix**: Enforce max nesting depth of 128 on CBOR payloads. - `github.com/aws/smithy-go/aws-http-auth`: [v1.2.0](aws-http-auth/CHANGELOG.md#v120-2026-06-02) - **Feature**: Add event stream signer. ### [`v1.26.0`](https://github.com/aws/smithy-go/blob/HEAD/CHANGELOG.md#Release-2026-05-27) [Compare Source](https://github.com/aws/smithy-go/compare/v1.25.1...v1.26.0) #### General Highlights - **Dependency Update**: Updated to the latest SDK module versions #### Module Highlights - `github.com/aws/smithy-go`: v1.26.0 - **Feature**: Add StringSlice to endpoint rulesfn. </details> --- ### Configuration 📅 **Schedule**: (UTC) - Branch creation - At any time (no schedule defined) - Automerge - At any time (no schedule defined) 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate CLI](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0NC4zOS4yIiwidXBkYXRlZEluVmVyIjoiNDQuMTAzLjEiLCJ0YXJnZXRCcmFuY2giOiJtYXN0ZXIiLCJsYWJlbHMiOltdfQ==-->
Update module github.com/aws/smithy-go to v1.27.9
All checks were successful
Lint / Run golangci-lint (pull_request) Has been skipped
Deploy Parent Container / determine-workflow (pull_request) Successful in 2s
Deploy Parent Container / nonprod-deploy (dev) (pull_request) Has been skipped
Deploy Parent Container / prod-deploy (dev) (pull_request) Has been skipped
022a885a10
renovate-bot force-pushed renovate/github.com-aws-smithy-go-1.x from 022a885a10
All checks were successful
Lint / Run golangci-lint (pull_request) Has been skipped
Deploy Parent Container / determine-workflow (pull_request) Successful in 2s
Deploy Parent Container / nonprod-deploy (dev) (pull_request) Has been skipped
Deploy Parent Container / prod-deploy (dev) (pull_request) Has been skipped
to e8a85766e0
All checks were successful
Lint / Run golangci-lint (pull_request) Has been skipped
Deploy Parent Container / determine-workflow (pull_request) Successful in 3s
Deploy Parent Container / nonprod-deploy (dev) (pull_request) Has been skipped
Deploy Parent Container / prod-deploy (dev) (pull_request) Has been skipped
2026-08-30 00:21:47 +00:00
Compare
renovate-bot changed title from Update module github.com/aws/smithy-go to v1.27.9 to Update module github.com/aws/smithy-go to v1.28.1 2026-08-30 00:21:48 +00:00
renovate-bot force-pushed renovate/github.com-aws-smithy-go-1.x from e8a85766e0
All checks were successful
Lint / Run golangci-lint (pull_request) Has been skipped
Deploy Parent Container / determine-workflow (pull_request) Successful in 3s
Deploy Parent Container / nonprod-deploy (dev) (pull_request) Has been skipped
Deploy Parent Container / prod-deploy (dev) (pull_request) Has been skipped
to 0bf0fc50e3
All checks were successful
Lint / Run golangci-lint (pull_request) Has been skipped
Deploy Parent Container / determine-workflow (pull_request) Successful in 3s
Deploy Parent Container / nonprod-deploy (dev) (pull_request) Has been skipped
Deploy Parent Container / prod-deploy (dev) (pull_request) Has been skipped
2026-09-19 00:11:19 +00:00
Compare
renovate-bot changed title from Update module github.com/aws/smithy-go to v1.28.1 to Update module github.com/aws/smithy-go to v1.28.2 2026-09-19 00:11:19 +00:00
All checks were successful
Lint / Run golangci-lint (pull_request) Has been skipped
Deploy Parent Container / determine-workflow (pull_request) Successful in 3s
Deploy Parent Container / nonprod-deploy (dev) (pull_request) Has been skipped
Deploy Parent Container / prod-deploy (dev) (pull_request) Has been skipped
This pull request can be merged automatically.
You are not authorized to merge this pull request.
View command line instructions

Checkout

From your project repository, check out a new branch and test the changes.
git fetch -u origin renovate/github.com-aws-smithy-go-1.x:renovate/github.com-aws-smithy-go-1.x
git switch renovate/github.com-aws-smithy-go-1.x

Merge

Merge the changes and update on Forgejo.

Warning: The "Autodetect manual merge" setting is not enabled for this repository, you will have to mark this pull request as manually merged afterwards.

git switch master
git merge --no-ff renovate/github.com-aws-smithy-go-1.x
git switch renovate/github.com-aws-smithy-go-1.x
git rebase master
git switch master
git merge --ff-only renovate/github.com-aws-smithy-go-1.x
git switch renovate/github.com-aws-smithy-go-1.x
git rebase master
git switch master
git merge --no-ff renovate/github.com-aws-smithy-go-1.x
git switch master
git merge --squash renovate/github.com-aws-smithy-go-1.x
git switch master
git merge --ff-only renovate/github.com-aws-smithy-go-1.x
git switch master
git merge renovate/github.com-aws-smithy-go-1.x
git push origin master
Sign in to join this conversation.
No description provided.