Skip to content

deps: bump up gRPC to v1.71.0 #39150

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 15 additions & 20 deletions bazel/grpc.patch
Original file line number Diff line number Diff line change
@@ -1,39 +1,34 @@
From 58e2bf9b0da7d79bbe2fe090c1710ab5c59214ef Mon Sep 17 00:00:00 2001
From: Rohit Agrawal <[email protected]>
Date: Wed, 16 Apr 2025 18:36:38 -0700
Subject: [PATCH] Bazel Fixes

---
BUILD | 1 -
src/core/BUILD | 1 -
2 files changed, 2 deletions(-)

diff --git a/BUILD b/BUILD
index 06b69411a8..05cd878ae8 100644
index 9ade4e9bc321c..bb3b6743e860c 100644
--- a/BUILD
+++ b/BUILD
@@ -29,7 +29,7 @@ licenses(["reciprocal"])
@@ -33,7 +33,6 @@ package(
default_visibility = ["//visibility:public"],
features = [
"-parse_headers",
- "layering_check",
+ "-layering_check",
],
)

diff --git a/src/core/BUILD b/src/core/BUILD
index 1bb970e049..81265483e9 100644
index f6cb041711d38..974ab189f5d2d 100644
--- a/src/core/BUILD
+++ b/src/core/BUILD
@@ -24,7 +24,7 @@ licenses(["reciprocal"])
@@ -27,7 +27,6 @@ licenses(["reciprocal"])
package(
default_visibility = ["//:__subpackages__"],
features = [
- "layering_check",
+ "-layering_check",
],
)

diff --git a/bazel/generate_cc.bzl b/bazel/generate_cc.bzl
index a2c7f3a1bb..cd023ebb06 100644
--- a/bazel/generate_cc.bzl
+++ b/bazel/generate_cc.bzl
@@ -134,7 +134,7 @@ def generate_cc_impl(ctx):

# Include the output directory so that protoc puts the generated code in the
# right directory.
- arguments.append("--proto_path={0}{1}".format(dir_out, proto_root))
+ arguments.append("--proto_path={0}".format(dir_out))
arguments += [_get_srcs_file_path(proto) for proto in protos]

# create a list of well known proto files if the argument is non-None

6 changes: 3 additions & 3 deletions bazel/repository_locations.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -406,12 +406,12 @@ REPOSITORY_LOCATIONS_SPEC = dict(
project_name = "gRPC",
project_desc = "gRPC C core library",
project_url = "https://grpc.io",
version = "1.63.2",
sha256 = "5b5b9c6507ec166ec0e9e82f58280c36544540ecdd818eaab7b8601596b74c9e",
version = "1.71.0",
sha256 = "0d631419e54ec5b29def798623ee3bf5520dac77abeab3284ef7027ec2363f91",
strip_prefix = "grpc-{version}",
urls = ["https://github.com/grpc/grpc/archive/v{version}.tar.gz"],
use_category = ["dataplane_core", "controlplane"],
release_date = "2024-08-02",
release_date = "2025-03-07",
cpe = "cpe:2.3:a:grpc:grpc:*",
license = "Apache-2.0",
license_url = "https://github.com/grpc/grpc/blob/v{version}/LICENSE",
Expand Down