v0.2.0
Pre-release
Pre-release
What's Changed
- Mark lint and breaking tests as timeout short by default by @titanous in #35
- Support fully deterministic toolchain by @sushain97 in #36
- Add repository_url option for buf downloads to allow mirroring by @Andrius-B in #40
- Add bzlmod support by @alexeagle in #42
- Support
--error-format
by @srikrsna-buf in #45 - Fix gazelle overwriting matching rules by @srikrsna-buf in #44
- Support gazelle in bzlmod by @srikrsna-buf in #46
WORKSPACE
Code
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "rules_buf",
sha256 = "bc2488ee497c3fbf2efee19ce21dceed89310a08b5a9366cc133dd0eb2118498",
strip_prefix = "rules_buf-0.2.0",
urls = [
"https://github.com/bufbuild/rules_buf/archive/refs/tags/v0.2.0.zip",
],
)
load("@rules_buf//buf:repositories.bzl", "rules_buf_dependencies", "rules_buf_toolchains")
rules_buf_dependencies()
rules_buf_toolchains(
sha256 = "05dfb45d2330559d258e1230f5a25e154f0a328afda2a434348b5ba4c124ece7",
version = "v1.28.1",
)
# rules_proto
load("@rules_proto//proto:repositories.bzl", "rules_proto_dependencies", "rules_proto_toolchains")
rules_proto_dependencies()
rules_proto_toolchains()
New Contributors
- @rubensf made their first contribution in #30
- @titanous made their first contribution in #35
- @sushain97 made their first contribution in #36
- @Andrius-B made their first contribution in #40
- @alexeagle made their first contribution in #42
Full Changelog: v0.1.1...v0.2.0