3.15.0
What's Changed
- Drop bazel 6.x support by @keith in #2610
- Remove legacy Objc provider linking support by @keith in #2611
- Bump MODULE.bazel bazel_compatibility by @keith in #2613
- Remove internal uses of @build_bazel_rules_apple by @keith in #2614
- Remove platform_mappings, again by @aaronsky in #2616
Full Changelog: 3.14.0...3.15.0
This release is compatible with Bazel 7.x LTS releases.
MODULE.bazel Snippet
bazel_dep(name = "rules_apple", version = "3.15.0", repo_name = "build_bazel_rules_apple")
Workspace Snippet
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "build_bazel_rules_apple",
sha256 = "bfda21dabddade5eef7504e933723222b1f30fde4fa8e17c3d9f1390e1a072ee",
url = "https://github.com/bazelbuild/rules_apple/releases/download/3.15.0/rules_apple.3.15.0.tar.gz",
)
load(
"@build_bazel_rules_apple//apple:repositories.bzl",
"apple_rules_dependencies",
)
apple_rules_dependencies()
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()
load(
"@build_bazel_apple_support//lib:repositories.bzl",
"apple_support_dependencies",
)
apple_support_dependencies()