this CL allows breaking changes to occur (#142)

apidiff currently fails our build when a breaking change is detected.
This needs tweaking, because sometimes we need to allow breaking
changes:

- An alpha|beta client gets a breaking change. This is acceptable
because breaking changes are expected to alpha|beta clients.
- A gRPC service interface gets a breaking change. This is acceptable
because users are not expected to implement gRPC service interfaces.
- A hard decision was made to allow a breaking change for some reason
like a bug fix.

This PR checks for the commit message to contain a
BREAKING_CHANGE_ACCEPTABLE=<reason>.
1 file changed
tree: 1623ab36c9e3b4c55fd3f172d6cbcb7df725bbe8
  1. googleapis/
  2. internal/
  3. protobuf/
  4. CONTRIBUTING.md
  5. go.mod
  6. go.sum
  7. LICENSE
  8. README.md
  9. regen.go
  10. regen.sh
  11. tools.go
README.md

Go generated proto packages

GoDoc

go get google.golang.org/genproto

IMPORTANT This repository is currently experimental. The structure of the contained packages is subject to change. Please see the original source repositories (listed below) to find out the status of the each protocol buffer's associated service.

This repository contains the generated Go packages for common protocol buffer types, and the generated gRPC code necessary for interacting with Google's gRPC APIs.

There are two sources for the proto files used in this repository:

  1. google/protobuf: the code in the protobuf and ptypes subdirectories is derived from this repo. The messages in protobuf are used to describe protocol buffer messages themselves. The messages under ptypes define the common well-known types.
  2. googleapis/googleapis: the code in the googleapis is derived from this repo. The packages here contain types specifically for interacting with Google APIs.