-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into user/ashdhin/IssueTemplateRegressionCheckbox
- Loading branch information
Showing
36 changed files
with
370 additions
and
206 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule aws-c-auth
updated
11 files
+1 −0 | .gitignore | |
+1 −5 | CMakeLists.txt | |
+2 −2 | README.md | |
+2 −2 | include/aws/auth/private/credentials_utils.h | |
+17 −2 | source/credentials_provider_process.c | |
+9 −5 | source/credentials_provider_profile.c | |
+49 −7 | source/credentials_utils.c | |
+3 −0 | tests/CMakeLists.txt | |
+47 −46 | tests/credentials_provider_process_tests.c | |
+111 −76 | tests/credentials_provider_sts_tests.c | |
+58 −0 | tests/credentials_utils_tests.c |
Submodule aws-c-common
updated
21 files
Submodule aws-c-http
updated
10 files
+1 −1 | .github/workflows/ci.yml | |
+1 −5 | CMakeLists.txt | |
+1 −1 | README.md | |
+3 −2 | include/aws/http/connection_manager.h | |
+1 −1 | integration-testing/http_client_test.py | |
+2 −1 | source/connection_manager.c | |
+2 −2 | source/h1_connection.c | |
+1 −1 | source/http.c | |
+1 −0 | tests/CMakeLists.txt | |
+55 −6 | tests/test_connection_manager.c |
Submodule aws-c-io
updated
11 files
+16 −9 | CMakeLists.txt | |
+1 −1 | README.md | |
+5 −0 | include/aws/io/socket.h | |
+13 −54 | source/future.c | |
+10 −1 | source/posix/socket.c | |
+8 −2 | source/s2n/s2n_tls_channel_handler.c | |
+6 −0 | source/windows/iocp/socket.c | |
+24 −0 | source/windows/windows_pki_utils.c | |
+2 −0 | tests/CMakeLists.txt | |
+14 −0 | tests/socket_test.c | |
+36 −0 | tests/tls_handler_test.c |
Submodule aws-c-mqtt
updated
46 files
Submodule aws-c-s3
updated
25 files
+1 −1 | .github/workflows/ci.yml | |
+3 −0 | .gitignore | |
+1 −5 | CMakeLists.txt | |
+1 −1 | README.md | |
+8 −0 | include/aws/s3/private/s3_meta_request_impl.h | |
+1 −0 | include/aws/s3/s3.h | |
+7 −6 | include/aws/s3/s3_client.h | |
+1 −0 | source/s3.c | |
+1 −0 | source/s3_buffer_pool.c | |
+55 −39 | source/s3_client.c | |
+25 −1 | source/s3_copy_object.c | |
+186 −186 | source/s3_endpoint_resolver/aws_s3_endpoint_resolver_partition.c | |
+16 −4 | source/s3_meta_request.c | |
+99 −21 | source/s3_request_messages.c | |
+5 −0 | source/s3_util.c | |
+9 −0 | tests/CMakeLists.txt | |
+15 −0 | tests/mock_s3_server/CreateMultipartUpload/request_timeout.json | |
+1 −0 | tests/s3_buffer_pool_tests.c | |
+153 −244 | tests/s3_data_plane_tests.c | |
+57 −6 | tests/s3_mock_server_tests.c | |
+44 −0 | tests/s3_s3express_client_test.c | |
+261 −1 | tests/s3_tester.c | |
+28 −0 | tests/s3_tester.h | |
+4 −0 | tests/test_helper/README.md | |
+4 −5 | tests/test_helper/test_helper.py |
Submodule aws-lc
updated
from 2f1879 to 8ffe27
Submodule s2n
updated
from 87f4a0 to ffe0bf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
awscrt.checksums | ||
================ | ||
|
||
.. automodule:: awscrt.checksums | ||
:members: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,6 +12,7 @@ API Reference | |
:maxdepth: 2 | ||
|
||
api/auth | ||
api/checksums | ||
api/common | ||
api/crypto | ||
api/exceptions | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.