Skip to content

Commit

Permalink
Update dependencies to pull in a large variety of fixes (#168)
Browse files Browse the repository at this point in the history
  • Loading branch information
bretambrose authored Jul 8, 2020
1 parent 665c503 commit 24c2c8e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion aws-common-runtime/aws-c-auth
Submodule aws-c-auth updated 60 files
+2 −1 NOTICE
+2 −2 README.md
+11 −13 include/aws/auth/auth.h
+265 −39 include/aws/auth/aws_imds_client.h
+311 −48 include/aws/auth/credentials.h
+3 −13 include/aws/auth/exports.h
+3 −13 include/aws/auth/private/aws_profile.h
+3 −13 include/aws/auth/private/aws_signing.h
+3 −13 include/aws/auth/private/credentials_utils.h
+3 −13 include/aws/auth/private/sigv4_http_request.h
+3 −13 include/aws/auth/private/xml_parser.h
+36 −3 include/aws/auth/signable.h
+19 −27 include/aws/auth/signing.h
+17 −13 include/aws/auth/signing_config.h
+45 −17 include/aws/auth/signing_result.h
+3 −13 source/auth.c
+3 −12 source/aws_imds_client.c
+3 −13 source/aws_profile.c
+3 −13 source/aws_signing.c
+3 −13 source/credentials.c
+3 −13 source/credentials_provider_cached.c
+3 −13 source/credentials_provider_chain.c
+12 −19 source/credentials_provider_ecs.c
+3 −13 source/credentials_provider_environment.c
+3 −13 source/credentials_provider_imds.c
+3 −13 source/credentials_provider_process.c
+3 −13 source/credentials_provider_profile.c
+3 −13 source/credentials_provider_static.c
+5 −13 source/credentials_provider_sts.c
+3 −12 source/credentials_provider_sts_web_identity.c
+4 −13 source/credentials_provider_x509.c
+3 −13 source/credentials_utils.c
+5 −15 source/signable.c
+3 −13 source/signing.c
+3 −13 source/signing_config.c
+5 −15 source/signing_result.c
+5 −15 source/sigv4_http_request.c
+3 −13 source/xml_parser.c
+1 −0 tests/CMakeLists.txt
+2 −1 tests/aws-sig-v4-test-suite/NOTICE
+2 −12 tests/aws_imds_client_test.c
+3 −13 tests/aws_profile_fatal_parse_tests.c
+3 −13 tests/aws_profile_tests.c
+62 −35 tests/credentials_provider_ecs_tests.c
+3 −13 tests/credentials_provider_imds_tests.c
+3 −13 tests/credentials_provider_process_tests.c
+3 −13 tests/credentials_provider_sts_tests.c
+3 −13 tests/credentials_provider_sts_web_identity_tests.c
+3 −13 tests/credentials_provider_utils.c
+3 −13 tests/credentials_provider_utils.h
+3 −13 tests/credentials_provider_x509_tests.c
+3 −13 tests/credentials_tests.c
+3 −13 tests/fuzz/parse_config_profile.c
+3 −13 tests/fuzz/parse_credentials_profile.c
+3 −13 tests/shared_credentials_test_definitions.h
+3 −13 tests/sigv4_tests.c
+3 −13 tests/test_chunked_signing.c
+3 −13 tests/test_signable.c
+3 −13 tests/test_signable.h
+3 −13 tests/xml_parser_test.c
2 changes: 1 addition & 1 deletion aws-common-runtime/aws-c-http
Submodule aws-c-http updated 87 files
+2 −13 .travis/travis_build.sh
+2 −1 NOTICE
+57 −0 README.md
+3 −13 bin/elasticurl/main.c
+93 −13 include/aws/http/connection.h
+3 −13 include/aws/http/connection_manager.h
+3 −13 include/aws/http/exports.h
+4 −13 include/aws/http/http.h
+26 −16 include/aws/http/private/connection_impl.h
+5 −15 include/aws/http/private/connection_manager_system_vtable.h
+3 −13 include/aws/http/private/connection_monitor.h
+87 −13 include/aws/http/private/h1_connection.h
+3 −13 include/aws/http/private/h1_decoder.h
+3 −13 include/aws/http/private/h1_encoder.h
+3 −13 include/aws/http/private/h1_stream.h
+41 −19 include/aws/http/private/h2_connection.h
+3 −13 include/aws/http/private/h2_decoder.h
+3 −13 include/aws/http/private/h2_frames.h
+26 −16 include/aws/http/private/h2_stream.h
+3 −13 include/aws/http/private/hpack.h
+3 −13 include/aws/http/private/hpack_header_static_table.def
+4 −14 include/aws/http/private/hpack_huffman_static_table.def
+3 −13 include/aws/http/private/http_impl.h
+3 −13 include/aws/http/private/proxy_impl.h
+9 −14 include/aws/http/private/request_response_impl.h
+3 −13 include/aws/http/private/strutil.h
+3 −13 include/aws/http/private/websocket_decoder.h
+3 −13 include/aws/http/private/websocket_encoder.h
+3 −13 include/aws/http/private/websocket_impl.h
+39 −15 include/aws/http/request_response.h
+3 −13 include/aws/http/server.h
+3 −13 include/aws/http/statistics.h
+3 −13 include/aws/http/status_code.h
+3 −13 include/aws/http/websocket.h
+2 −12 integration-testing/http_client_test.py
+93 −26 source/connection.c
+6 −16 source/connection_manager.c
+3 −13 source/connection_monitor.c
+119 −166 source/h1_connection.c
+3 −13 source/h1_decoder.c
+3 −13 source/h1_encoder.c
+6 −13 source/h1_stream.c
+432 −62 source/h2_connection.c
+3 −13 source/h2_decoder.c
+3 −13 source/h2_frames.c
+178 −49 source/h2_stream.c
+3 −13 source/hpack.c
+3 −13 source/hpack_huffman_static.c
+7 −14 source/http.c
+3 −13 source/proxy_connection.c
+56 −18 source/request_response.c
+3 −13 source/statistics.c
+3 −13 source/strutil.c
+3 −13 source/websocket.c
+7 −13 source/websocket_bootstrap.c
+3 −13 source/websocket_decoder.c
+3 −13 source/websocket_encoder.c
+16 −1 tests/CMakeLists.txt
+3 −13 tests/fuzz/fuzz_h2_decoder_correct.c
+3 −13 tests/fuzz/fuzz_h2_decoder_random.c
+3 −13 tests/h2_test_helper.c
+3 −13 tests/h2_test_helper.h
+3 −13 tests/integration_test_proxy.c
+3 −13 tests/proxy_test_helper.c
+3 −13 tests/proxy_test_helper.h
+3 −13 tests/stream_test_helper.c
+3 −13 tests/stream_test_helper.h
+3 −13 tests/test_connection.c
+7 −16 tests/test_connection_manager.c
+3 −13 tests/test_connection_monitor.c
+42 −13 tests/test_h1_client.c
+3 −13 tests/test_h1_decoder.c
+3 −13 tests/test_h1_encoder.c
+3 −13 tests/test_h1_server.c
+666 −43 tests/test_h2_client.c
+3 −13 tests/test_h2_decoder.c
+3 −13 tests/test_h2_encoder.c
+3 −13 tests/test_h2_headers.c
+3 −13 tests/test_hpack.c
+3 −13 tests/test_message.c
+3 −13 tests/test_proxy.c
+3 −13 tests/test_strutil.c
+3 −13 tests/test_tls.c
+3 −13 tests/test_websocket_bootstrap.c
+3 −13 tests/test_websocket_decoder.c
+3 −13 tests/test_websocket_encoder.c
+3 −13 tests/test_websocket_handler.c
2 changes: 1 addition & 1 deletion aws-common-runtime/aws-c-io
Submodule aws-c-io updated 98 files
+1 −1 .github/workflows/proof-alarm.yml
+2 −1 NOTICE
+52 −1 README.md
+1 −1 builder.json
+4 −1 docs/epoll_event_loop_proof.md
+3 −13 include/aws/io/channel.h
+3 −13 include/aws/io/channel_bootstrap.h
+3 −13 include/aws/io/event_loop.h
+3 −13 include/aws/io/exports.h
+3 −13 include/aws/io/file_utils.h
+3 −13 include/aws/io/host_resolver.h
+3 −13 include/aws/io/io.h
+3 −13 include/aws/io/logging.h
+3 −13 include/aws/io/message_pool.h
+3 −13 include/aws/io/pipe.h
+3 −13 include/aws/io/pki_utils.h
+3 −13 include/aws/io/private/tls_channel_handler_shared.h
+3 −13 include/aws/io/retry_strategy.h
+3 −13 include/aws/io/shared_library.h
+3 −13 include/aws/io/socket.h
+3 −13 include/aws/io/socket_channel_handler.h
+3 −13 include/aws/io/statistics.h
+3 −13 include/aws/io/stream.h
+3 −13 include/aws/io/tls_channel_handler.h
+3 −13 include/aws/io/uri.h
+8 −13 include/aws/testing/io_testing_channel.h
+3 −13 source/alpn_handler.c
+3 −13 source/bsd/kqueue_event_loop.c
+3 −13 source/channel.c
+3 −13 source/channel_bootstrap.c
+3 −13 source/darwin/darwin_pki_utils.c
+17 −15 source/darwin/secure_transport_tls_channel_handler.c
+3 −13 source/event_loop.c
+3 −13 source/exponential_backoff_retry_strategy.c
+3 −13 source/file_utils_shared.c
+3 −13 source/host_resolver.c
+3 −13 source/io.c
+3 −13 source/linux/epoll_event_loop.c
+3 −13 source/message_pool.c
+3 −13 source/pki_utils.c
+3 −13 source/posix/file_utils.c
+3 −13 source/posix/host_resolver.c
+3 −13 source/posix/pipe.c
+3 −13 source/posix/shared_library.c
+3 −13 source/posix/socket.c
+3 −13 source/retry_strategy.c
+18 −15 source/s2n/s2n_tls_channel_handler.c
+3 −13 source/socket_channel_handler.c
+3 −13 source/statistics.c
+3 −13 source/stream.c
+3 −13 source/tls_channel_handler.c
+3 −13 source/tls_channel_handler_shared.c
+3 −13 source/uri.c
+3 −13 source/windows/file_utils.c
+3 −13 source/windows/host_resolver.c
+3 −13 source/windows/iocp/iocp_event_loop.c
+3 −13 source/windows/iocp/pipe.c
+3 −13 source/windows/iocp/socket.c
+57 −27 source/windows/secure_channel_tls_handler.c
+3 −13 source/windows/shared_library.c
+3 −13 source/windows/windows_pki_utils.c
+3 −13 source/windows/winsock_init.c
+3 −13 tests/alpn_handler_test.c
+3 −13 tests/channel_test.c
+3 −13 tests/default_host_resolver_test.c
+3 −13 tests/error_test.c
+3 −13 tests/event_loop_test.c
+3 −13 tests/exponential_backoff_retry_test.c
+3 −13 tests/file_utils_test.c
+3 −13 tests/io_testing_channel_test.c
+3 −13 tests/mock_dns_resolver.c
+3 −13 tests/mock_dns_resolver.h
+3 −13 tests/pipe_test.c
+3 −13 tests/pki_utils_test.c
+3 −13 tests/read_write_test_handler.c
+3 −13 tests/read_write_test_handler.h
+3 −13 tests/shared_library_test.c
+3 −13 tests/socket_handler_test.c
+3 −13 tests/socket_test.c
+3 −13 tests/statistics_handler_test.c
+3 −13 tests/statistics_handler_test.h
+3 −13 tests/stream_test.c
+3 −13 tests/tls_handler_test.c
+3 −13 tests/uri_test.c
+30 −0 tests/vcc/Makefile
+65 −0 tests/vcc/README.md
+24 −0 tests/vcc/cancel_task.c
+93 −0 tests/vcc/client.c
+32 −0 tests/vcc/docker-images/win10-vs2012/Dockerfile
+33 −0 tests/vcc/is_on_callers_thread.c
+109 −0 tests/vcc/lifecycle.c
+176 −0 tests/vcc/main_loop.c
+290 −0 tests/vcc/new_destroy.c
+818 −0 tests/vcc/preamble.h
+89 −0 tests/vcc/process_task_pre_queue.c
+113 −0 tests/vcc/schedule.c
+83 −0 tests/vcc/subscribe.c
+74 −0 tests/vcc/unsubscribe.c

0 comments on commit 24c2c8e

Please sign in to comment.