2.4.0
What's Changed
- Fix alternate icons support for single device-family apps
- Optimize dtrace, support objc_library compile
- Add support for apple.locales_to_exclude
- Only fail
ios_xctestrun_runner
when bundle executes nothing - Support on device UI Testing in the new runner
- Rename generated
experimental_mixed_language_library
module map - Fix UI testing with new runner in Xcode 15+
- Fix XCTestRun attachment lifetime in the new runner
- Fix Metal headers not included in
MetalCompile
actions - Add
xcarchive
rule to generate Xcode archives - Add
macos_framework
andmacos_static_framework
to support macOS
This release is compatible with 6.x LTS and bazel 7.x rolling releases
MODULE.bazel Snippet
bazel_dep(name = "rules_apple", version = "2.4.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 = "a656466b0af05c2345b7e090cfced2db791d2719126b3297beb26626ec7da208",
url = "https://github.com/bazelbuild/rules_apple/releases/download/2.4.0/rules_apple.2.4.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()