3.9.0
What's Changed
- Do not bundle .abi.json files by @vakhidbetrakhmadov in #2513
- Make cc_info_dylibs_partial handle only .dylib files. (#2516) by @hiroyuki-komatsu in #2517
- Only insert libXCTestBundleInject.dylib for unit tests by @andre-alves in #2530
- Use devicectl to install and launch *_application targets on a physical device by @CognitiveDisson in #2527
- Use
openssl
outside of Linux inlocal_provisioning_profile_finder.py
by @brentleyjones in #2522 - Fix
_fallback_srcs
check by @brentleyjones in #2521
Full Changelog: 3.8.0...3.9.0
This release is compatible with Bazel 6.x LTS, 7.x LTS, and 8.x rolling releases.
MODULE.bazel Snippet
bazel_dep(name = "rules_apple", version = "3.9.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 = "f8fa96115c33e128cb72e9b7118a5f9294731a7dda8e36d04ddb582671f48dc1",
url = "https://github.com/bazelbuild/rules_apple/releases/download/3.9.0/rules_apple.3.9.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()