What's Changed
What's Changed
- Adds Core ML and Metal processing info to resources.md by @jiawen in #2624
- Add
mixed_language_library
to mixed language suggestion by @mattrobmattrob in #2627 - Revert "Embed frameworks in
ios_message_extension
(#1706)" by @aaronsky in #2631 - Fix bundling error in examples/ios/HelloWorldSwift by @luispadron in #2632
- Escape backslashes in example build label regex by @pswaminathan in #2629
- Add support for
.provisionprofile
inlocal_provisioning_profile
by @luispadron in #2634 - Propagate dSYM bundles discovered within imported dynamic xcframeworks by @aaronsky in #2625
- Propagate
AppleFrameworkImportInfo
from iOS extensions by @aaronsky in #2633 - Support bundling live activities extensions with ios_app_clip by @adincebic in #2630
- Make hmaptool deterministic by @vakhidbetrakhmadov in #2637
New Contributors
- @jiawen made their first contribution in #2624
- @pswaminathan made their first contribution in #2629
Full Changelog: 3.16.1...3.17.0
This release is compatible with Bazel 7.x LTS and 8.x LTS releases.
MODULE.bazel Snippet
bazel_dep(name = "rules_apple", version = "3.17.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 = "69ccfc5ad737ab89bcf660b26b625393aacd2317a84a4bf328d360d2415cf615",
url = "https://github.com/bazelbuild/rules_apple/releases/download/3.17.0/rules_apple.3.17.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()