From 8beaf2e7f24c5dbf1b21ef8d349e8814ebb46415 Mon Sep 17 00:00:00 2001 From: Fabian Meumertzheim Date: Sun, 7 Jan 2024 21:37:37 +0100 Subject: [PATCH] Temporarily undo deprecation of `//proto:go_grpc` (#3818) Until Gazelle emits `go_grpc_library`. --- proto/BUILD.bazel | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/proto/BUILD.bazel b/proto/BUILD.bazel index 9402b699d9..c6b8ef331a 100644 --- a/proto/BUILD.bazel +++ b/proto/BUILD.bazel @@ -30,7 +30,8 @@ go_proto_compiler( go_proto_compiler( name = "go_grpc", - deprecation = "Migrate to //proto:go_grpc_v2 compiler (which you'll get automatically if you use the go_grpc_library() rule).", + # TODO: Bring back the deprecation once Gazelle emits go_grpc_library. + # deprecation = "Migrate to //proto:go_grpc_v2 compiler (which you'll get automatically if you use the go_grpc_library() rule).", options = ["plugins=grpc"], plugin = "@com_github_golang_protobuf//protoc-gen-go", visibility = ["//visibility:public"],