v7.2.5
·
7 commits
to master
since this release
Immutable
release. Only release title and notes can be modified.
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.2.5")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 = "99c968f597086e7ebb53102fd21336d5f53f5c0f8214027be3192597ab1dfbe2",
strip_prefix = "rules_scala-7.2.5",
url = "https://github.com/bazelbuild/rules_scala/releases/download/v7.2.5/rules_scala-v7.2.5.tar.gz",
)See https://github.com/bazelbuild/rules_scala#getting-started for full setup instructions.
What's Changed
- [chore] Update Scala 3.8 to 3.8.3 by @WojciechMazur in #1821
- Fix cross-version default dep providers by @gmethvin in #1825
- chore: enable immutable releases by @alexeagle in #1822
- Fix unused-dependency false positive for given imports by @gmethvin in #1828
- Fix ast-plus errors not failing the build by @gmethvin in #1829
- Enable semanticdb phase during plugin bootstrapping by @thirtyseven in #1830
- Upgrade build_jacocorunner.sh script for Bazel 9 by @gergelyfabian in #1826
New Contributors
Full Changelog: v7.2.4...v7.2.5