Skip to content

v0.13.0

Compare
Choose a tag to compare
@github-actions github-actions released this 14 Apr 14:04
· 83 commits to main since this release
4359934

WORKSPACE snippet:

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
    name = "contrib_rules_jvm",
    sha256 = "2b710518847279f655a18a51a1629b033e4406f29609e73eb07ecfb6f0138d25",
    strip_prefix = "rules_jvm-0.13.0",
    url = "https://github.com/bazel-contrib/rules_jvm/releases/download/v0.13.0/rules_jvm-v0.13.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

  • Don't tag builds as prereleases by @illicitonion in #166
  • Support parallel test execution in the JUnit5 runner by @fmeum in #169
  • Fix Security Manager warning with Java 17 by @rdesgroppes in #171
  • Replace ctx.host_configuration with ctx.configuration by @hanikesn in #173
  • Add a bzlmod module definition by @shs96c in #170
  • Amend release workflow now we have bzlmod in the mix by @shs96c in #174

New Contributors

Full Changelog: v0.12.0...v0.13.0