Skip to content

2.4.2 Dec 2024 rules_license and Bazel Constraint Attributes

Compare
Choose a tag to compare
@plaird plaird released this 08 Dec 01:44
· 76 commits to main since this release
aceae5b

This release adds a few minor features:

  • Adds support for restricted_to and target_compatible_with attributes (Bazel standard attributes) #219 (@bhnord)
  • Adds official license targets using rules_license #222 and #223

To use this release:

Bzlmod:

  bazel_dep(name = "rules_spring", version = "2.4.2")
  git_override(
      module_name = "rules_spring",
      remote = "https://github.com/salesforce/rules_spring",
      commit="23b0fb07c56820f0d576b24a8879841f4165b568",
  )

WORKSPACE:

http_archive(
    name = "rules_spring",
    sha256 = "95e0bc66b8d3424cddbe37ca75babff372a8f80c833d5dce6e87277476a9b97c",
    urls = [
        "https://github.com/salesforce/rules_spring/releases/download/2.4.2/rules-spring-2.4.2.zip",
    ],
)