Is your feature request related to a problem? Please describe.
The newest version of grpc module is 1.78.0. I cannot use cc_grpc_library macro with Bazel 9, because it uses the unsupported native.cc_library. It looks like grpc repository already supports Bazel 9 (or there were some trials):
However, the appropriate version has not been published yet in the Bazel Central Registry.
Describe the solution you'd like
Please publish the version compatible with Bazel 9. Include the new supported Bazel version in .bcr/presubmit.yml. Maybe more tests have to be added before the official support of Bazel 9.
Describe alternatives you've considered
I can fetch the newest version of grpc (master branch) using Bazel directives: archive_override or local_path_override (after cloning grpc repository locally somewhere in my local filesystem).
Is your feature request related to a problem? Please describe.
The newest version of grpc module is 1.78.0. I cannot use
cc_grpc_librarymacro with Bazel 9, because it uses the unsupportednative.cc_library. It looks likegrpcrepository already supports Bazel 9 (or there were some trials):However, the appropriate version has not been published yet in the Bazel Central Registry.
Describe the solution you'd like
Please publish the version compatible with Bazel 9. Include the new supported Bazel version in
.bcr/presubmit.yml. Maybe more tests have to be added before the official support of Bazel 9.Describe alternatives you've considered
I can fetch the newest version of
grpc(masterbranch) using Bazel directives:archive_overrideorlocal_path_override(after cloninggrpcrepository locally somewhere in my local filesystem).