Skip to content

v0.12.0

Compare
Choose a tag to compare
@github-actions github-actions released this 17 Mar 15:52
· 89 commits to main since this release
dda039c

WORKSPACE snippet:

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
    name = "contrib_rules_jvm",
    sha256 = "09c022847c96f24d085e2c82a6174f0ab98218e6e0903d0793d69af9f771a291",
    strip_prefix = "rules_jvm-0.12.0",
    url = "https://github.com/bazel-contrib/rules_jvm/releases/download/v0.12.0/rules_jvm-v0.12.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

  • Make the JUnit5 runner compatible with Java 8 by @fmeum in #134
  • Ensure that sysout and syserr are escaped by @shs96c in #161
  • Add test sharding support to the JUnit 5 runner by @fmeum in #162
  • Use TestExecutionListener in shard test by @fmeum in #164
  • Expand on the ability to include the same test in two suites by @tjoneslo in #165

New Contributors

Full Changelog: v0.11.0...v0.12.0