vendor: github.com/aws/smithy-go v1.27.4

full diff: https://github.com/aws/smithy-go/compare/v1.27.3...v1.27.4

Signed-off-by: Paweł Gronowski <pawel.gronowski@docker.com>
This commit is contained in:
Paweł Gronowski
2026-07-22 14:15:07 +02:00
parent 722d76e76b
commit 58c346aa2c
8 changed files with 34 additions and 6 deletions

2
go.mod
View File

@@ -23,7 +23,7 @@ require (
github.com/aws/aws-sdk-go-v2/credentials v1.19.24
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.18.29
github.com/aws/aws-sdk-go-v2/service/cloudwatchlogs v1.76.0
github.com/aws/smithy-go v1.27.2
github.com/aws/smithy-go v1.27.4
github.com/cloudflare/cfssl v1.6.5
github.com/containerd/cgroups/v3 v3.1.3
github.com/containerd/containerd/api v1.11.1

4
go.sum
View File

@@ -114,8 +114,8 @@ github.com/aws/aws-sdk-go-v2/service/ssooidc v1.36.6 h1:yLr03zQE/5Eu5l3QU0Si+xMb
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.36.6/go.mod h1:Q5N6icH+KJZDLh+ESNwzdv6cZ6vLFF/egy3IOxWhmz4=
github.com/aws/aws-sdk-go-v2/service/sts v1.43.3 h1:VrIhKRCSK1umelSgB9RghvA9RTUYeQffyAS5ApXehNI=
github.com/aws/aws-sdk-go-v2/service/sts v1.43.3/go.mod h1:r8wkDOuLaaMFqFiYAb8dGY2A3gJCOujMc6CFOVC4Zhc=
github.com/aws/smithy-go v1.27.2 h1:y9NPmSE6am6LjEFPfqHqG/jJk7AauQvhCJONKh7kpzk=
github.com/aws/smithy-go v1.27.2/go.mod h1:YE2RhdIuDbA5E5bTdciG9KrW3+TiEONeUWCqxX9i1Fc=
github.com/aws/smithy-go v1.27.4 h1:JQcphmBN4f0q/sPqXqROIItRNV/hy10cgu7CsFy616M=
github.com/aws/smithy-go v1.27.4/go.mod h1:YE2RhdIuDbA5E5bTdciG9KrW3+TiEONeUWCqxX9i1Fc=
github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973/go.mod h1:Dwedo/Wpr24TaqPxmxbtue+5NUziq4I4S80YR8gNf3Q=
github.com/beorn7/perks v1.0.0/go.mod h1:KWe93zE9D1o94FZ5RNwFwVgaQK1VOXiVxmqh+CedLV8=
github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM=

View File

@@ -1,3 +1,23 @@
# Release (2026-07-16)
## General Highlights
* **Dependency Update**: Updated to the latest SDK module versions
## Module Highlights
* `github.com/aws/smithy-go/aws-http-auth`: [v1.2.1](aws-http-auth/CHANGELOG.md#v121-2026-07-16)
* **Bug Fix**: Use r.URL.Host when r.Host is unset.
* `github.com/aws/smithy-go/aws-http-auth-schemes`: [v1.0.0](aws-http-auth-schemes/CHANGELOG.md#v100-2026-07-16)
* **Release**: Module `github.com/aws/smithy-go/aws-http-auth-schemes` adds generic smithy-go client support for AWS Sigv4 and Sigv4a.
# Release (2026-06-26)
## 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
# Release (2026-06-05)
## General Highlights

View File

@@ -106,6 +106,11 @@ func (jv Value) BigInteger(v *big.Int) {
// BigDecimal encodes v as JSON value
func (jv Value) BigDecimal(v *big.Float) {
if v.Sign() == 0 && v.Signbit() {
// Preserve negative zero sign which Int64() would lose.
jv.w.Write([]byte("-0"))
return
}
if i, accuracy := v.Int64(); accuracy == big.Exact {
jv.Long(i)
return

View File

@@ -27,6 +27,9 @@ func IsValidHostLabel(input string, allowSubDomains bool) bool {
if !smithyhttp.ValidHostLabel(label) {
return false
}
if label[0] == '-' || label[len(label)-1] == '-' {
return false
}
}
return true

View File

@@ -3,4 +3,4 @@
package smithy
// goModuleVersion is the tagged release for this module
const goModuleVersion = "1.27.2"
const goModuleVersion = "1.27.4"

View File

@@ -69,7 +69,7 @@ func ValidPortNumber(port string) bool {
return true
}
// ValidHostLabel returns whether the label is a valid RFC 3986 host label.
// ValidHostLabel returns whether the label is a valid RFC 952/1123 host label.
func ValidHostLabel(label string) bool {
if l := len(label); l == 0 || l > 63 {
return false

2
vendor/modules.txt vendored
View File

@@ -277,7 +277,7 @@ github.com/aws/aws-sdk-go-v2/service/ssooidc/types
github.com/aws/aws-sdk-go-v2/service/sts
github.com/aws/aws-sdk-go-v2/service/sts/internal/endpoints
github.com/aws/aws-sdk-go-v2/service/sts/types
# github.com/aws/smithy-go v1.27.2
# github.com/aws/smithy-go v1.27.4
## explicit; go 1.24
github.com/aws/smithy-go
github.com/aws/smithy-go/auth