v7.1.0
Using Bzlmod
Paste this snippet into your MODULE.bazel file:
# Set `repo_name = "io_bazel_rules_scala"` if you still need it.
bazel_dep(name = "rules_scala", version = "7.1.0")Using WORKSPACE
Paste this snippet into your WORKSPACE file:
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
    name = "rules_scala",  # Can be "io_bazel_rules_scala" if you still need it.
    sha256 = "6a900a39bf643c5c9308c8200f9a61e27588dc54a67aa08fcfc798f25add4f7b",
    strip_prefix = "rules_scala-7.1.0",
    url = "https://github.com/bazelbuild/rules_scala/releases/download/v7.1.0/rules_scala-v7.1.0.tar.gz",
)See https://github.com/bazelbuild/rules_scala#getting-started for full setup instructions.
What's Changed
- chore: update GH org in BCR metadata by @alexeagle in #1737
- Fix last_green build after disable_autoloads flip by @mbland in #1738
- Fix setup_scala_toolchains, clean up test scripts by @mbland in #1742
- Upgrade Scala versions 3.7.0 -> 3.7.1 by @WojciechMazur in #1746
- Check for 'deps' attr in scala_doc rule by @vinnybod in #1740
- Bump dependencies, update release_prep.sh, docs by @mbland in #1745
- Fix custom twitter_scroogetoolchain breakages by @mbland in #1747
- Fix Bazel 8.2.1 WORKSPACE builds, bump dev deps by @mbland in #1748
- Add compiler source download integrity values by @mbland in #1749
- Fix builds for Bazel >= 9.0.0-pre.20250714.1 by @mbland in #1754
- Bump dependency versions for rules_scalav7.1.0 by @mbland in #1755
- Simplify test_dependency_versions.sh by @mbland in #1758
- Upgrade Scala 3.7 to 3.7.2 (was 3.7.1) by @WojciechMazur in #1757
- Fix last_green w/bazel_worker_api rules_java 8.15 by @mbland in #1756
New Contributors
- @alexeagle made their first contribution in #1737
Full Changelog: v7.0.0...v7.1.0