-
Notifications
You must be signed in to change notification settings - Fork 110
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
from v0.8.12 to v0.10.1 includes: - API CHANGE: awscrt.auth.AwsSigningConfig.signed_body_value is now a string instead of an enum. - API CHANGE: Added check for iOS platform - BUGFIX: Fixes possible crash If the underlying http_message get destroyed before the destructor of HttpMessage. (which was included by v0.10.0, added it to release note here) - BUGFIX: Fixes a crash when shutting down an mqtt connection with an incomplete request with no callback from aws-c-mqtt Co-authored-by: Dengke Tang <[email protected]>
- Loading branch information
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule aws-crt-cpp
updated
17 files
+1 −1 | CMakeLists.txt | |
+1 −1 | aws-common-runtime/aws-c-auth | |
+1 −1 | aws-common-runtime/aws-c-cal | |
+1 −1 | aws-common-runtime/aws-c-common | |
+1 −1 | aws-common-runtime/aws-c-io | |
+1 −1 | aws-common-runtime/aws-c-mqtt | |
+1 −1 | aws-common-runtime/s2n | |
+1 −0 | include/aws/crt/Types.h | |
+33 −11 | include/aws/crt/auth/Sigv4Signing.h | |
+1 −2 | include/aws/crt/http/HttpRequestResponse.h | |
+6 −1 | source/Types.cpp | |
+12 −7 | source/auth/Sigv4Signing.cpp | |
+15 −8 | source/http/HttpRequestResponse.cpp | |
+16 −4 | source/io/TlsOptions.cpp | |
+0 −5 | source/iot/MqttClient.cpp | |
+1 −0 | tests/CMakeLists.txt | |
+46 −1 | tests/Sigv4SigningTest.cpp |