-
Notifications
You must be signed in to change notification settings - Fork 2.3k
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
Add explicit dependency versions #696
Conversation
The build errors imply files have been generated with I think we need to update the |
This has gotten out of sync with generated files. See https://github.com/bazelbuild/rules_go/releases/tag/0.12.1 for release notes.
2681c93
to
357d1d4
Compare
Version constraints are copied from existing Bazel rules. In the future, these version upgrades must be performed atomically.
Codecov Report
@@ Coverage Diff @@
## master #696 +/- ##
=======================================
Coverage 56.54% 56.54%
=======================================
Files 30 30
Lines 3040 3040
=======================================
Hits 1719 1719
Misses 1152 1152
Partials 169 169 Continue to review full report at Codecov.
|
* Add explicit dependency versions (grpc-ecosystem#696) Version constraints are copied from existing Bazel rules. In the future, these version upgrades must be performed atomically. * Add OpenTracing support to docs (grpc-ecosystem#705) * protoc-gen-swagger: support all well-known wrapper types There were a few well-known wrapper types missing from the wkSchemas map. In specific UInt32Value, UInt64Value and BytesValue. This change handles them (and maps them to the same swagger types as the non-wrapped values) This also fixes the mapping of Int64Value. The Int64Value handling maps the value to a swagger integer. The documentation for Int64Value indicates that it should be mapped to a JSON string (also the mapping for normal int64 in protoc-gen-swagger maps it to a string, so this was inconsistent.) * Add test case and proposed fix for path component with trailing colon (and string) (grpc-ecosystem#708) * If a pattern has no verb, match with a verb arg appended to last component Parsing out a "verb" from the input path is a convenience for parsing. Whether the colon and string are _actually_ a verb depends on the matching HTTP rule. This change gives a verb-less pattern a chance to match a path by assuming the colon+string suffix are a part of the final component. Fixes grpc-ecosystem#224 Signed-off-by: James Hamlin <[email protected]> * Fix up examples * Make support paths option Make protoc-gen-grpc-gateway support paths option such like golang/protobuf#515.
Version constraints are copied from existing Bazel rules. In the future, these version upgrades must be performed atomically.
Version constraints are copied from existing Bazel rules. In the future, these version upgrades must be performed atomically.
Fixes #689