What's Changed
- Add support for macos in
apple_*_xcframework
rules by @luispadron in #2459 - Return
AppleResourceBundleInfo
provider fromapple_precompiled_resource_bundle
by @brentleyjones in #2569 - Fix
bundle_id
calculation inapple_precompiled_resource_bundle
by @brentleyjones in #2574 - Add the
strip_structured_resources_prefixes
attribute wherestructured_resources
exists by @brentleyjones in #2570
Full Changelog: 3.10.0...3.11.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.11.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 = "9859954b7af3276c3521dbfb4fc2fad7f438a6d87e3df409dee2c27209007532",
url = "https://github.com/bazelbuild/rules_apple/releases/download/3.11.0/rules_apple.3.11.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()