v1.1.1
MODULE.bazel Usage
bazel_dep(name = "protovalidate", version = "1.1.1")WORKSPACE Usage
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "com_github_bufbuild_protovalidate",
sha256 = "297dba5cdc25fa478c597e53af6c4ccf330c826e566384774b5176c13c8d3bd8",
strip_prefix = "protovalidate-1.1.1",
urls = [
"https://github.com/bufbuild/protovalidate/releases/download/v1.1.1/protovalidate-1.1.1.tar.gz",
],
)What's Changed
- Fix bazel9 compatibility by explicitly loading cc_proto_library by @jasonkuster in #454
- Add the Protovalidate Extension Registry by @timostamm in #457
- Add package documentation to buf.validate by @jrinehart-buf in #448
- Fix typos and messages in CEL examples by @jrinehart-buf in #459
New Contributors
- @jasonkuster made their first contribution in #454
Full Changelog: v0.10.1...v1.1.1