Skip to content

v0.15.0

Compare
Choose a tag to compare
@github-actions github-actions released this 13 Jul 10:55
· 73 commits to main since this release
19e360a

WORKSPACE snippet:

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
    name = "contrib_rules_jvm",
    sha256 = "75e9e6e1bc15ab960e2e2a652299a252b03315a77d14447ea996f665d7f923b8",
    strip_prefix = "rules_jvm-0.15.0",
    url = "https://github.com/bazel-contrib/rules_jvm/releases/download/v0.15.0/rules_jvm-v0.15.0.tar.gz",
)

# Fetches the contrib_rules_jvm dependencies.
# If you want to have a different version of some dependency,
# you should fetch it *before* calling this.
load("@contrib_rules_jvm//:repositories.bzl", "contrib_rules_jvm_deps")

contrib_rules_jvm_deps()

# Now ensure that the downloaded deps are properly configured
load("@contrib_rules_jvm//:setup.bzl", "contrib_rules_jvm_setup")

contrib_rules_jvm_setup()

What's Changed

  • build: Upgrade grpc-java to 1.56.1 and protobuf to 21.7 and ensure we choose the right version by @blorente in #183
  • Add javax.annotation.processing as in the stdlib by @illicitonion in #184
  • fix: Reflect protobuf updates into MODULE.bazel by @blorente in #185
  • Add full JRE package list by @illicitonion in #186

Full Changelog: v0.14.0...v0.15.0