What's Changed
- Update header style in release notes template by @brentleyjones in #2481
- Fix ios_xctestrun_runner with Xcode 16 by @andre-alves in #2469
- Correct incorrect skylib import in test runner tests by @mattrobmattrob in #2482
- Fix make var tests in ios_xctestrun_runner_unit_test by @andre-alves in #2483
- Update to rules_swift 2.0.0 by @luispadron in #2486
- Remove BCR fixed releaser config by @luispadron in #2489
- Re-add fixed releaser by @luispadron in #2491
- Fix app intents with Xcode 15.3+ by @keith in #2418
- Use
assertEqual
instead ofassertEquals
by @luispadron in #2493 - Update DocC for rules_swift 2.1.0 by @luispadron in #2487
- Upgrade to Xcode 15.4 from 15.2 by @luispadron in #2494
- Upgrade rules_swift to latest 2.x version by @luispadron in #2492
- Skip
ios_test_runner_ui_test
which is failing in CI by @luispadron in #2496 - Increase
ios_coverage_test
size tolarge
by @luispadron in #2498 - Remove explicit repo name loading local bzl files by @erikkerber in #2485
- Sort load statements per buildifier 6.4.0 by @erikkerber in #2499
- Use buildifier 6.4.0 for improved load sorting by @erikkerber in #2500
Full Changelog: 3.6.0...3.7.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.7.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 = "ef90747e779ff13c887f4972579432b25c8378b6954e1ebfca52651b5f2099c1",
url = "https://github.com/bazelbuild/rules_apple/releases/download/3.7.0/rules_apple.3.7.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()