3.14.0
What's Changed
- Improve
MainThreadCheckerLibsCopy
performance by @luispadron in #2599 - Update apple_support.run callsites to remove positional args by @aaronsky in #2600
- Add XML_OUTPUT_FILE envar to the non-macOS test runners by @aaronsky in #2596
- Make the
hmaptool
support response file by @qyang-nj in #2601 - Recover from simulator already booted errors by @brentleyjones in #2598
- Allow setting the dtrace binary by @stevebarrau in #2607
New Contributors
- @qyang-nj made their first contribution in #2601
- @stevebarrau made their first contribution in #2607
Full Changelog: 3.13.0...3.14.0
This release is compatible with Bazel 6.x LTS and 7.x LTS releases.
MODULE.bazel Snippet
bazel_dep(name = "rules_apple", version = "3.14.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 = "c328123c4868be233f7023762da7891e6a862d7dc27611ec7a3331d8c969a18d",
url = "https://github.com/bazelbuild/rules_apple/releases/download/3.14.0/rules_apple.3.14.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()