Skip to content

v1.9.0

Compare
Choose a tag to compare
@github-actions github-actions released this 07 Mar 15:57
· 20 commits to main since this release
888ffa1

Using Bzlmod with Bazel 6

  1. Enable with common --enable_bzlmod in .bazelrc.
  2. Add to your MODULE.bazel file:
bazel_dep(name = "bazel_features", version = "1.9.0")

Using WORKSPACE

Paste this snippet into your file:

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
    name = "bazel_features",
    sha256 = "06f02b97b6badb3227df2141a4b4622272cdcd2951526f40a888ab5f43897f14",
    strip_prefix = "bazel_features-1.9.0",
    url = "https://github.com/bazel-contrib/bazel_features/releases/download/v1.9.0/bazel_features-v1.9.0.tar.gz",
)
load("@bazel_features//:deps.bzl", "bazel_features_deps")
bazel_features_deps()

What's Changed

  • Add java.java_info_constructor_module_flags by @timothyg-stripe in #48
  • Add bazel_mod_tidy and extension_metadata_has_reproducible by @fmeum in #49

New Contributors

Full Changelog: v1.8.0...v1.9.0