3.12.0
What's Changed
- Add proper support for rules_swift
mixed_language_library
by @brentleyjones in #2580 - Stop using rule(output_to_genfiles = True) by @EdSchouten in #2586
- Fix
ios_xctestrun_runner
not updating binary on delta updates by @brentleyjones in #2590 - Fix nesting of bundles with
apple_precompiled_resource_bundle
by @brentleyjones in #2588 - Fix nested resources (e.g.
.momd
directories) withapple_precompiled_resource_bundle
by @brentleyjones in #2592 - Always process
Info.plist
files withapple_precompiled_resource_bundle
by @brentleyjones in #2591 - Expose a new
AppleDeviceTestRunnerInfo
provider from device-based test runners by @brentleyjones in #2581
Full Changelog: 3.11.2...3.12.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.12.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 = "ccb75e9a25f55fa2088834bcdf052a1fb53250737651ee3532e420e36d375283",
url = "https://github.com/bazelbuild/rules_apple/releases/download/3.12.0/rules_apple.3.12.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()