-
Notifications
You must be signed in to change notification settings - Fork 157
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update CRT submodules to latest releases (#940)
Signed-off-by: Daniel Carl Jones <djonesoa@amazon.com>
- Loading branch information
1 parent
ad7ce80
commit ac6c177
Showing
5 changed files
with
11 additions
and
3 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -1,3 +1,7 @@ | ||
## Unreleased | ||
|
||
* Update to latest CRT dependencies | ||
|
||
## v0.8.0 (June 26, 2024) | ||
|
||
* Update to latest CRT dependencies | ||
|
Submodule aws-c-http
updated
22 files
+1 −1 | .github/workflows/ci.yml | |
+4 −6 | .github/workflows/clang-format.yml | |
+47 −0 | format-check.py | |
+0 −24 | format-check.sh | |
+4 −1 | include/aws/http/connection.h | |
+13 −0 | include/aws/http/connection_manager.h | |
+3 −1 | include/aws/http/private/h2_frames.h | |
+7 −7 | include/aws/http/proxy.h | |
+3 −1 | include/aws/http/request_response.h | |
+9 −4 | include/aws/http/server.h | |
+61 −1 | source/connection_manager.c | |
+1 −1 | source/http.c | |
+1 −0 | tests/CMakeLists.txt | |
+48 −0 | tests/test_connection_manager.c | |
+5 −5 | tests/test_h1_client.c | |
+4 −1 | tests/test_h2_client.c | |
+2 −1 | tests/test_h2_encoder.c | |
+2 −1 | tests/test_h2_headers.c | |
+4 −1 | tests/test_localhost_integ.c | |
+4 −1 | tests/test_message.c | |
+4 −1 | tests/test_stream_manager.c | |
+3 −1 | tests/test_websocket_handler.c |
Submodule aws-c-io
updated
23 files
+10 −2 | .github/workflows/ci.yml | |
+4 −6 | .github/workflows/clang-format.yml | |
+47 −0 | format-check.py | |
+0 −24 | format-check.sh | |
+2 −2 | include/aws/io/channel.h | |
+3 −4 | include/aws/io/channel_bootstrap.h | |
+3 −4 | include/aws/io/event_loop.h | |
+12 −0 | include/aws/io/socket.h | |
+4 −5 | include/aws/io/tls_channel_handler.h | |
+11 −18 | source/channel.c | |
+3 −8 | source/darwin/secure_transport_tls_channel_handler.c | |
+1 −1 | source/io.c | |
+2 −5 | source/message_pool.c | |
+90 −2 | source/posix/socket.c | |
+2 −4 | source/s2n/s2n_tls_channel_handler.c | |
+0 −5 | source/socket_channel_handler.c | |
+1 −1 | source/windows/iocp/iocp_event_loop.c | |
+19 −0 | source/windows/iocp/socket.c | |
+124 −120 | source/windows/secure_channel_tls_handler.c | |
+2 −0 | tests/CMakeLists.txt | |
+1 −1 | tests/socket_handler_test.c | |
+82 −7 | tests/socket_test.c | |
+27 −13 | tests/tls_handler_test.c |
Submodule aws-c-s3
updated
10 files
+17 −0 | include/aws/s3/private/s3_client_impl.h | |
+13 −0 | include/aws/s3/s3_client.h | |
+1 −0 | source/s3.c | |
+48 −1 | source/s3_client.c | |
+11 −3 | source/s3_endpoint.c | |
+2 −0 | tests/CMakeLists.txt | |
+60 −0 | tests/s3_mock_server_tests.c | |
+4 −0 | tests/s3_tester.c | |
+2 −0 | tests/s3_tester.h | |
+14 −0 | tests/s3_util_tests.c |
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 |
---|---|---|
@@ -1,3 +1,7 @@ | ||
## Unreleased | ||
|
||
* Update to latest CRT dependencies | ||
|
||
## v0.8.0 (June 26, 2024) | ||
|
||
* Update to latest CRT dependencies | ||
|