What's Changed
- Remove references to
@bazel_tools//tools/cppby @aaronsky in #2885 - Disable strict timestamps for output ZIP archive in clangrttool.py by @gsomix in #2887
- (feat): disable PREFIX substitution in entitlements by @ssarad in #2865
- Fix includes attribute resolution in apple_static_xcframework_import by @olbapmar in #2869
- Support multiple modules on
app_intentsfor applications by @kntkymt in #2879 - Fix binary stripping on Bazel <9 by @adincebic in #2888
New Contributors
- @gsomix made their first contribution in #2887
- @olbapmar made their first contribution in #2869
- @kntkymt made their first contribution in #2879
Full Changelog: 4.4.0...4.5.0
This release is compatible with Bazel 7.x LTS, 8.x LTS, and 9.x LTS releases.
MODULE.bazel Snippet
bazel_dep(name = "rules_apple", version = "4.5.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 = "34953c6c5666f2bd864a4a2a27599eb6630a42fde18ba57292fa0a7fcb3d851c",
url = "https://github.com/bazelbuild/rules_apple/releases/download/4.5.0/rules_apple.4.5.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()