Skip to content

Commit 24798f7

Browse files
authored
Merge branch 'main' into sh-fix-issue-3007-checksums-try2
2 parents 36f5784 + 324aaf2 commit 24798f7

File tree

38,493 files changed

+930192
-37019
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

38,493 files changed

+930192
-37019
lines changed

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
# **PLEASE READ BEFORE CONTINUING**
22

3-
Do not submit pull requests that directly modify generated source files, e.g. `/service/s3/api_client.go`. Generated source files will always include an identifying header:
3+
**DO NOT** submit pull requests that directly modify generated source files, e.g. `/service/s3/api_client.go`. Generated source files will always include an identifying header:
44

55
```
66
// Code generated by smithy-go-codegen DO NOT EDIT.
77
```
88

99
Manual changes to these files will be overwritten by code generation that occurs as part of the daily SDK release process.
1010

11-
Do not submit pull requests that directly modify files in the `/codegen/sdk-codegen/aws-models` folder. These are API model files, owned by each AWS service team, that are updated automatically as part of the daily SDK release process. Local changes to these files will not persist.
11+
**DO NOT** submit pull requests that directly modify files in the `/codegen/sdk-codegen/aws-models` folder. These are API model files, owned by each AWS service team, that are updated automatically as part of the daily SDK release process. Local changes to these files will not persist.
1212

1313
If you believe the contents of any of these files need to be changed, please [open an issue](https://github.com/aws/aws-sdk-go-v2/issues/new/choose).
1414

@@ -20,6 +20,7 @@ To help speed up the process and reduce the time to merge please ensure that `Al
2020

2121
# Changelog
2222

23-
Make sure that your pull request contains a changelog entry. You can run `make external-changelog` to create a placeholder entry. See [Changelog documents in CONTRIBUTING.md](aws/aws-sdk-go-v2/blob/main/CONTRIBUTING.md#changelog-documents) for more details.
23+
Please **DO NOT** include a changelog entry in your pull request (you may see
24+
what these look like in other PRs submitted directly by SDK team members). We
25+
will take care of this for you.
2426

25-
You can generate a UUID either by running `uuidgen` or by visiting a site like [uuidtools](https://www.uuidtools.com/v4)

CHANGELOG.md

Lines changed: 191 additions & 0 deletions
Large diffs are not rendered by default.

CONTRIBUTING.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,10 @@ Please be aware of the following notes prior to opening a pull request:
109109
directly on these models. If you discover an issue with the models please
110110
create a [GitHub issue][issues] describing the issue.
111111

112+
### Changelog
113+
114+
DO NOT add a .changelog entry, we will do that for you.
115+
112116
### Testing
113117

114118
To run the tests locally, running the `make unit` command will `go get` the

SMITHY_GO_CODEGEN_VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
107eb1414a9c309076941ef37a6c71465ec397f6
1+
8ff86680d1bfd5b4cc19329702bd64458ac7f1b6

aws/config.go

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import (
66
smithybearer "github.com/aws/smithy-go/auth/bearer"
77
"github.com/aws/smithy-go/logging"
88
"github.com/aws/smithy-go/middleware"
9+
smithyhttp "github.com/aws/smithy-go/transport/http"
910
)
1011

1112
// HTTPClient provides the interface to provide custom HTTPClients. Generally
@@ -192,6 +193,12 @@ type Config struct {
192193
// This variable is sourced from environment variable AWS_RESPONSE_CHECKSUM_VALIDATION or
193194
// the shared config profile attribute "response_checksum_validation".
194195
ResponseChecksumValidation ResponseChecksumValidation
196+
197+
// Registry of HTTP interceptors.
198+
Interceptors smithyhttp.InterceptorRegistry
199+
200+
// Priority list of preferred auth scheme IDs.
201+
AuthSchemePreference []string
195202
}
196203

197204
// NewConfig returns a new Config pointer that can be chained with builder

aws/go_module_metadata.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

aws/protocol/eventstream/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# v1.7.0 (2025-07-28)
2+
3+
* **Feature**: Add support for HTTP interceptors.
4+
15
# v1.6.11 (2025-06-17)
26

37
* **Dependency Update**: Update to smithy-go v1.22.4.

aws/protocol/eventstream/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ module github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream
22

33
go 1.22
44

5-
require github.com/aws/smithy-go v1.22.4
5+
require github.com/aws/smithy-go v1.22.5
66

77
replace github.com/aws/aws-sdk-go-v2 => ../../../

aws/protocol/eventstream/go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
github.com/aws/smithy-go v1.22.4 h1:uqXzVZNuNexwc/xrh6Tb56u89WDlJY6HS+KC0S4QSjw=
2-
github.com/aws/smithy-go v1.22.4/go.mod h1:t1ufH5HMublsJYulve2RKmHDC15xu1f26kHCp/HgceI=
1+
github.com/aws/smithy-go v1.22.5 h1:P9ATCXPMb2mPjYBgueqJNCA5S9UfktsW0tTxi+a7eqw=
2+
github.com/aws/smithy-go v1.22.5/go.mod h1:t1ufH5HMublsJYulve2RKmHDC15xu1f26kHCp/HgceI=

aws/protocol/eventstream/go_module_metadata.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)