What's Changed
- Update protobuf dependency version to 33.4 for Bazel 9 by @luispadron in #1648
- Update
const_protocols_to_gather.jsonto latest by @kntkymt in #1649 - Refactor toolchains to avoid eagerly evaluating autoconfig repo by @dzbarsky in #1653
- Fix
datapropagation to underlying libs for mixed libraries (#1654) by @luispadron in #1655 - Update protobuf to 34.0 for Bazel 9 by @luispadron in #1657
Full Changelog: 3.4.2...3.5.0
This release is compatible with Bazel 7.x LTS, 8.x LTS, and 9.x LTS.
MODULE.bazel Snippet
bazel_dep(name = "rules_swift", version = "3.5.0", repo_name = "build_bazel_rules_swift")Workspace Snippet
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "build_bazel_rules_swift",
sha256 = "c98f201bc217d2ce28e01afc78b410d05c67b846c04a7095e4e701b37422ecb2",
url = "https://github.com/bazelbuild/rules_swift/releases/download/3.5.0/rules_swift.3.5.0.tar.gz",
)
load(
"@build_bazel_rules_swift//swift:repositories.bzl",
"swift_rules_dependencies",
)
swift_rules_dependencies()
load(
"@build_bazel_rules_swift//swift:extras.bzl",
"swift_rules_extra_dependencies",
)
swift_rules_extra_dependencies()