Skip to content

Commit

Permalink
Merge Master
Browse files Browse the repository at this point in the history
  • Loading branch information
tanvi-jagtap committed Jan 8, 2025
2 parents 74ef369 + 9eb9ebd commit cc9232d
Show file tree
Hide file tree
Showing 92 changed files with 4,065 additions and 1,321 deletions.
1 change: 1 addition & 0 deletions .clang-tidy
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,7 @@ Checks: '-*,
modernize-replace-auto-ptr,
modernize-replace-random-shuffle,
modernize-shrink-to-fit,
modernize-unary-static-assert,
modernize-use-bool-literals,
modernize-use-noexcept,
modernize-use-nullptr,
Expand Down
29 changes: 25 additions & 4 deletions BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ python_config_settings()
# This should be updated along with build_handwritten.yaml
g_stands_for = "genius" # @unused

core_version = "44.2.0" # @unused
core_version = "45.0.0" # @unused

version = "1.70.0-dev" # @unused

Expand Down Expand Up @@ -556,6 +556,9 @@ grpc_cc_library(
external_deps = [
"absl/base:core_headers",
"absl/log:log",
"absl/status",
"absl/status:statusor",
"absl/strings",
"absl/time:time",
"address_sorting",
],
Expand All @@ -574,6 +577,7 @@ grpc_cc_library(
"grpc_base",
"grpc_client_channel",
"grpc_common",
"grpc_core_credentials_header",
"grpc_http_filters",
"grpc_security_base",
"grpc_trace",
Expand Down Expand Up @@ -630,6 +634,9 @@ grpc_cc_library(
external_deps = [
"absl/base:core_headers",
"absl/log:log",
"absl/status",
"absl/status:statusor",
"absl/strings",
"absl/time:time",
"address_sorting",
],
Expand Down Expand Up @@ -657,6 +664,7 @@ grpc_cc_library(
"grpc_base",
"grpc_client_channel",
"grpc_common",
"grpc_core_credentials_header",
"grpc_credentials_util",
"grpc_http_filters",
"grpc_jwt_credentials",
Expand Down Expand Up @@ -772,6 +780,7 @@ grpc_cc_library(
"absl/synchronization",
"absl/time:time",
"absl/types:optional",
"absl/types:variant",
],
language = "c++",
public_hdrs = GPR_PUBLIC_HDRS,
Expand Down Expand Up @@ -1132,12 +1141,15 @@ grpc_cc_library(
"src/cpp/server/insecure_server_credentials.cc",
],
external_deps = [
"absl/functional:any_invocable",
"absl/log:check",
"absl/log:log",
"absl/log:absl_check",
"absl/log:absl_log",
"absl/status",
"absl/status:statusor",
"absl/strings",
"absl/strings:cord",
"absl/synchronization",
],
language = "c++",
Expand All @@ -1154,6 +1166,7 @@ grpc_cc_library(
"gpr",
"grpc++_base_unsecure",
"grpc++_codegen_proto",
"grpc++_config_proto",
"grpc_core_credentials_header",
"grpc_public_hdrs",
"grpc_security_base",
Expand Down Expand Up @@ -1509,8 +1522,8 @@ grpc_cc_library(
"absl/container:flat_hash_map",
"absl/container:flat_hash_set",
"absl/functional:any_invocable",
"absl/log",
"absl/log:check",
"absl/log:log",
"absl/status",
"absl/status:statusor",
"absl/strings",
Expand All @@ -1533,6 +1546,7 @@ grpc_cc_library(
"debug_location",
"exec_ctx",
"gpr",
"grpc_core_credentials_header",
"grpc_public_hdrs",
"grpc_trace",
"iomgr_buffer_list",
Expand All @@ -1558,7 +1572,6 @@ grpc_cc_library(
"//src/core:event_engine_shim",
"//src/core:event_engine_tcp_socket_utils",
"//src/core:event_log",
"//src/core:examine_stack",
"//src/core:experiments",
"//src/core:gpr_atm",
"//src/core:gpr_manual_constructor",
Expand Down Expand Up @@ -1764,8 +1777,8 @@ grpc_cc_library(
"absl/container:flat_hash_map",
"absl/container:flat_hash_set",
"absl/hash",
"absl/log",
"absl/log:check",
"absl/log:log",
"absl/random",
"absl/status",
"absl/status:statusor",
Expand All @@ -1787,12 +1800,14 @@ grpc_cc_library(
"gpr",
"grpc_base",
"grpc_public_hdrs",
"grpc_security_base",
"grpc_trace",
"iomgr",
"legacy_channel",
"orphanable",
"promise",
"ref_counted_ptr",
"sockaddr_utils",
"stats",
"//src/core:activity",
"//src/core:arena_promise",
Expand All @@ -1802,6 +1817,7 @@ grpc_cc_library(
"//src/core:channel_fwd",
"//src/core:channel_stack_type",
"//src/core:closure",
"//src/core:connection_quota",
"//src/core:connectivity_state",
"//src/core:context",
"//src/core:dual_ref_counted",
Expand All @@ -1816,6 +1832,7 @@ grpc_cc_library(
"//src/core:poll",
"//src/core:pollset_set",
"//src/core:random_early_detection",
"//src/core:resolved_address",
"//src/core:seq",
"//src/core:server_interface",
"//src/core:slice",
Expand Down Expand Up @@ -1892,6 +1909,7 @@ grpc_cc_library(
"absl/status:statusor",
"absl/strings",
"absl/strings:str_format",
"absl/time",
"absl/types:optional",
"absl/utility",
"madler_zlib",
Expand Down Expand Up @@ -2330,6 +2348,7 @@ grpc_cc_library(
"absl/status",
"absl/status:statusor",
"absl/strings",
"absl/strings:cord",
"absl/strings:str_format",
"absl/synchronization",
"absl/memory",
Expand All @@ -2353,6 +2372,7 @@ grpc_cc_library(
"gpr",
"grpc",
"grpc++_codegen_proto",
"grpc++_config_proto",
"grpc_base",
"grpc_core_credentials_header",
"grpc_credentials_util",
Expand Down Expand Up @@ -2418,6 +2438,7 @@ grpc_cc_library(
"absl/status",
"absl/status:statusor",
"absl/strings",
"absl/strings:cord",
"absl/synchronization",
"absl/log:absl_check",
"absl/log:absl_log",
Expand Down
Loading

0 comments on commit cc9232d

Please sign in to comment.