An update to Go gRPC Protobuf generation will change service registration function signatures to use an interface instead of a concrete type in generated .pb.go service files. This change should affect very few client library users. See release notes advisories in https://github.com/googleapis/google-cloud-go/pull/11025.
PiperOrigin-RevId: 765227853
fix: Move conformance_service.proto to its own directory to mirror existing go package structure.
feat: Publish an `expr_version` field to track transformations applied during static analysis to the `expr` field within the `CheckedExpr`.
Committer: @TristonianJones
PiperOrigin-RevId: 404145648
data representations used within various open source libraries.
There is no CEL Google API per se, and as such any reference to
one has been removed from the proto libraries including the GAPIC
client code generation.
There is a gRPC service defined among the protos which is used for
driving conformance testing in a cross-language compatible manner.
PiperOrigin-RevId: 307642893
This makes googleapis forward compatible with Bazel incompatible change https://github.com/bazelbuild/bazel/issues/8922.
This CL was created by adding @rules_proto to the WORKSPACE file and then running:
find . -name BUILD.bazel | \
while read build; do \
buildifier --lint=fix --warnings=load $build; \
done
Since buildifier cannot be told not to reformat the BUILD file, some files are reformatted.
PiperOrigin-RevId: 280356106