mirror of
https://github.com/moby/moby.git
synced 2026-08-04 15:11:00 +00:00
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:
2
go.mod
2
go.mod
@@ -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
4
go.sum
@@ -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=
|
||||
|
||||
20
vendor/github.com/aws/smithy-go/CHANGELOG.md
generated
vendored
20
vendor/github.com/aws/smithy-go/CHANGELOG.md
generated
vendored
@@ -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
|
||||
|
||||
5
vendor/github.com/aws/smithy-go/encoding/json/value.go
generated
vendored
5
vendor/github.com/aws/smithy-go/encoding/json/value.go
generated
vendored
@@ -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
|
||||
|
||||
3
vendor/github.com/aws/smithy-go/endpoints/private/rulesfn/uri.go
generated
vendored
3
vendor/github.com/aws/smithy-go/endpoints/private/rulesfn/uri.go
generated
vendored
@@ -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
|
||||
|
||||
2
vendor/github.com/aws/smithy-go/go_module_metadata.go
generated
vendored
2
vendor/github.com/aws/smithy-go/go_module_metadata.go
generated
vendored
@@ -3,4 +3,4 @@
|
||||
package smithy
|
||||
|
||||
// goModuleVersion is the tagged release for this module
|
||||
const goModuleVersion = "1.27.2"
|
||||
const goModuleVersion = "1.27.4"
|
||||
|
||||
2
vendor/github.com/aws/smithy-go/transport/http/host.go
generated
vendored
2
vendor/github.com/aws/smithy-go/transport/http/host.go
generated
vendored
@@ -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
2
vendor/modules.txt
vendored
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user