Skip to content

Commit

Permalink
Update Envoy to 60a13f3 (#2169)
Browse files Browse the repository at this point in the history
Diff: envoyproxy/envoy@c96f711...60a13f3

Mostly pulling in for envoyproxy/envoy#20527

Signed-off-by: JP Simard <jp@jpsim.com>
  • Loading branch information
jpsim authored Apr 21, 2022
1 parent d3157b2 commit 464cd31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion envoy
Submodule envoy updated 97 files
+1 −0 .bazelrc
+2 −0 CODEOWNERS
+1 −0 api/BUILD
+1 −1 api/envoy/config/accesslog/v3/accesslog.proto
+12 −0 api/envoy/extensions/common/async_files/v3/BUILD
+41 −0 api/envoy/extensions/common/async_files/v3/async_file_manager.proto
+5 −1 api/envoy/extensions/filters/network/thrift_proxy/v3/route.proto
+8 −0 api/envoy/extensions/network/dns_resolver/apple/v3/apple_dns_resolver.proto
+1 −0 api/versioning/BUILD
+7 −0 bazel/README.md
+1 −1 contrib/sip_proxy/filters/network/source/config.cc
+1 −0 docs/root/api-v3/common_messages/common_messages.rst
+1 −56 docs/root/version_history/current.rst
+10 −0 envoy/http/header_map.h
+1 −1 envoy/server/admin.h
+1 −1 source/common/filter/config_discovery_impl.h
+11 −1 source/common/http/header_map_impl.cc
+1 −1 source/common/rds/rds_route_config_subscription.h
+4 −4 source/common/router/config_impl.h
+1 −1 source/common/router/scoped_rds.h
+1 −1 source/common/router/vhds.h
+1 −1 source/common/runtime/runtime_impl.h
+1 −1 source/common/secret/sds_api.h
+112 −40 source/common/stats/thread_local_store.cc
+83 −67 source/common/stats/thread_local_store.h
+1 −1 source/common/tcp_proxy/tcp_proxy.h
+1 −1 source/common/upstream/cds_api_impl.h
+2 −2 source/common/upstream/cluster_factory_impl.cc
+3 −3 source/common/upstream/cluster_factory_impl.h
+2 −2 source/common/upstream/eds.cc
+2 −2 source/common/upstream/eds.h
+1 −1 source/common/upstream/health_discovery_service.cc
+1 −1 source/common/upstream/leds.h
+2 −2 source/common/upstream/load_balancer_impl.cc
+2 −2 source/common/upstream/logical_dns_cluster.cc
+2 −2 source/common/upstream/logical_dns_cluster.h
+1 −1 source/common/upstream/maglev_lb.h
+1 −1 source/common/upstream/od_cds_api_impl.h
+2 −2 source/common/upstream/original_dst_cluster.cc
+2 −2 source/common/upstream/original_dst_cluster.h
+1 −1 source/common/upstream/ring_hash_lb.h
+2 −2 source/common/upstream/static_cluster.cc
+2 −2 source/common/upstream/static_cluster.h
+2 −2 source/common/upstream/strict_dns_cluster.cc
+2 −2 source/common/upstream/strict_dns_cluster.h
+3 −3 source/common/upstream/upstream_impl.cc
+3 −3 source/common/upstream/upstream_impl.h
+83 −0 source/extensions/common/async_files/BUILD
+65 −0 source/extensions/common/async_files/README.md
+26 −0 source/extensions/common/async_files/async_file_action.cc
+99 −0 source/extensions/common/async_files/async_file_action.h
+27 −0 source/extensions/common/async_files/async_file_context_base.cc
+38 −0 source/extensions/common/async_files/async_file_context_base.h
+225 −0 source/extensions/common/async_files/async_file_context_thread_pool.cc
+51 −0 source/extensions/common/async_files/async_file_context_thread_pool.h
+76 −0 source/extensions/common/async_files/async_file_handle.h
+31 −0 source/extensions/common/async_files/async_file_manager.cc
+96 −0 source/extensions/common/async_files/async_file_manager.h
+78 −0 source/extensions/common/async_files/async_file_manager_factory.cc
+37 −0 source/extensions/common/async_files/async_file_manager_factory.h
+256 −0 source/extensions/common/async_files/async_file_manager_thread_pool.cc
+71 −0 source/extensions/common/async_files/async_file_manager_thread_pool.h
+65 −0 source/extensions/common/async_files/status_after_file_error.cc
+21 −0 source/extensions/common/async_files/status_after_file_error.h
+22 −9 source/extensions/network/dns_resolver/apple/apple_dns_impl.cc
+8 −3 source/extensions/network/dns_resolver/apple/apple_dns_impl.h
+117 −0 test/common/http/http2/codec_impl_test.cc
+44 −18 test/common/stats/thread_local_store_test.cc
+1 −1 test/common/stats/utility_fuzz_test.cc
+1 −1 test/common/upstream/cluster_factory_impl_test.cc
+1 −1 test/common/upstream/eds_speed_test.cc
+1 −1 test/common/upstream/eds_test.cc
+2 −2 test/common/upstream/hds_test.cc
+1 −1 test/common/upstream/leds_test.cc
+1 −1 test/common/upstream/logical_dns_cluster_test.cc
+1 −1 test/common/upstream/original_dst_cluster_test.cc
+1 −1 test/common/upstream/subset_lb_test.cc
+1 −1 test/common/upstream/transport_socket_matcher_test.cc
+39 −39 test/common/upstream/upstream_impl_test.cc
+62 −0 test/extensions/common/async_files/BUILD
+450 −0 test/extensions/common/async_files/async_file_handle_thread_pool_test.cc
+87 −0 test/extensions/common/async_files/async_file_manager_factory_test.cc
+311 −0 test/extensions/common/async_files/async_file_manager_thread_pool_test.cc
+297 −0 test/extensions/common/async_files/async_file_manager_thread_pool_with_mocks_test.cc
+42 −0 test/extensions/common/async_files/status_after_file_error_test.cc
+54 −1 test/extensions/network/dns_resolver/apple/apple_dns_impl_test.cc
+2 −2 test/integration/clusters/custom_static_cluster.h
+1 −1 test/integration/fake_upstream.h
+1 −1 test/mocks/server/admin.h
+1 −1 test/mocks/upstream/cluster_info.h
+2 −2 test/per_file_coverage.sh
+2 −0 test/server/admin/BUILD
+111 −0 test/server/admin/stats_handler_test.cc
+26 −9 test/test_common/real_threads_test_helper.cc
+12 −3 test/test_common/real_threads_test_helper.h
+1 −1 test/test_common/status_utility.h
+14 −0 tools/spelling/spelling_dictionary.txt

0 comments on commit 464cd31

Please sign in to comment.