Skip to content

Commit

Permalink
Update C dependencies. (#368)
Browse files Browse the repository at this point in the history
BUGFIX: MQTT improved cleanup when user calls disconnect

aws-c-common       v0.7.0 -> v0.7.4
aws-c-event-stream v0.2.11 -> v0.2.12
aws-c-http         v0.6.15 -> v0.6.17
aws-c-io           v0.11.2 -> v0.12.0
aws-c-mqtt         v0.7.10 -> v0.7.11
aws-c-s3           v0.1.39 -> v0.1.43
  • Loading branch information
graebm authored Jul 12, 2022
1 parent e07efb4 commit fcb1b2d
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion crt/aws-c-event-stream
2 changes: 1 addition & 1 deletion crt/aws-c-io
2 changes: 1 addition & 1 deletion crt/aws-c-mqtt
2 changes: 1 addition & 1 deletion crt/aws-c-s3
Submodule aws-c-s3 updated 41 files
+17 −4 benchmarks/README.md
+19 −2 benchmarks/benchmarks-stack/benchmarks-stack/lib/benchmarks-stack.ts
+42 −0 benchmarks/benchmarks-stack/benchmarks-stack/lib/get_p90.py
+19 −1 benchmarks/benchmarks-stack/benchmarks-stack/lib/init_instance.sh
+8 −0 benchmarks/benchmarks-stack/benchmarks-stack/lib/project_scripts/run_aws_c_s3.sh
+1 −1 benchmarks/benchmarks-stack/benchmarks-stack/package.json
+0 −13 benchmarks/dashboard-stack/lib/benchmark-config.json
+128 −3 benchmarks/dashboard-stack/lib/dashboard-stack.ts
+1 −1 benchmarks/dashboard-stack/package.json
+26 −1 include/aws/s3/private/s3_auto_ranged_put.h
+1 −1 include/aws/s3/private/s3_checksums.h
+8 −23 include/aws/s3/private/s3_list_objects.h
+124 −0 include/aws/s3/private/s3_list_parts.h
+3 −0 include/aws/s3/private/s3_meta_request_impl.h
+169 −0 include/aws/s3/private/s3_paginator.h
+27 −2 include/aws/s3/private/s3_request_messages.h
+6 −0 include/aws/s3/private/s3_util.h
+4 −0 include/aws/s3/s3.h
+25 −0 include/aws/s3/s3_client.h
+10 −8 samples/s3/main.c
+4 −0 source/s3.c
+4 −4 source/s3_auto_ranged_get.c
+563 −23 source/s3_auto_ranged_put.c
+2 −2 source/s3_chunk_stream.c
+96 −93 source/s3_client.c
+2 −2 source/s3_copy_object.c
+2 −2 source/s3_default_meta_request.c
+113 −297 source/s3_list_objects.c
+289 −0 source/s3_list_parts.c
+18 −3 source/s3_meta_request.c
+455 −0 source/s3_paginator.c
+112 −47 source/s3_request_messages.c
+10 −0 source/s3_util.c
+9 −6 tests/CMakeLists.txt
+1 −1 tests/s3_cancel_tests.c
+612 −7 tests/s3_data_plane_tests.c
+45 −21 tests/s3_request_messages_tests.c
+38 −10 tests/s3_test_input_stream.c
+11 −9 tests/s3_tester.c
+20 −0 tests/s3_tester.h
+57 −0 tests/s3_util_tests.c

0 comments on commit fcb1b2d

Please sign in to comment.