Skip to content

v0.8.0

Compare
Choose a tag to compare
@github-actions github-actions released this 21 Oct 15:47
· 147 commits to main since this release
5abc62b

WORKSPACE snippet:

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
    name = "contrib_rules_jvm",
    sha256 = "332135116f0414457bda67afc101dee958dbdc4e62a2481d80882f21ed1f9678",
    strip_prefix = "rules_jvm-0.8.0",
    url = "https://github.com/bazel-contrib/rules_jvm/archive/refs/tags/v0.8.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

  • Allow finding and processing a classname starting with an underscore by @tjoneslo in #98
  • Fix NPE when translating null exception messages to XML by @rdesgroppes in #96
  • Avoid asking users to add things to their maven workspace by @shs96c in #100
  • checkstyle: Short timeout by default by @stevebarrau in #101
  • Support multiple classes and/or methods in filter by @rdesgroppes in #99
  • Ensure that the release workflow generates correct release notes by @shs96c in #102

Full Changelog: v0.7.0...v0.8.0