1.2.0
What’s Changed
New
- Added
xcodeproj.project_options
: #1756
Adjusted
- We now use the first architecture when importing indexing data if multiple are set: #1763
- We now set the full range for
SUPPORTED_PLATFORMS
in normal builds: #1762 --cache_computed_file_digests
is now set to a higher value by default: #1765- Upgraded index-import to 5.7.0.1: #1770
- Upgraded rules_swift to 1.6.0: #1772
- Upgraded rules_apple to 2.1.0: #1777
Fixed
- Fixed LLDB issue with testable targets: #1755
- Fixed handling of relative paths in index unit files: #1761
- Fixed project generation when merge target becomes unfocused: #1769
- Fixed (in Bazel 6.1+) schemes not being able to reference external targets when using Bzlmod: #1771
- Fixed generated
*_framework.exported_symbols_list
in BwX mode: #1780
Full Changelog
Contributors
Bzlmod Snippet
bazel_dep(name = "rules_xcodeproj", version = "1.2.0", repo_name = "com_github_buildbuddy_io_rules_xcodeproj")
release.tar.gz
’s integrity
: sha256-0CkyJVuj/6qxhZ5EUoxpmI6T+jU/o0kkPh71BUvRuoA=
Workspace Snippet
Please use the release asset (release.tar.gz
) from your Bazel WORKSPACE
instead of GitHub's source asset to reduce download size and improve reproducibility.
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "com_github_buildbuddy_io_rules_xcodeproj",
sha256 = "d02932255ba3ffaab1859e44528c69988e93fa353fa349243e1ef5054bd1ba80",
url = "https://github.com/buildbuddy-io/rules_xcodeproj/releases/download/1.2.0/release.tar.gz",
)
load(
"@com_github_buildbuddy_io_rules_xcodeproj//xcodeproj:repositories.bzl",
"xcodeproj_rules_dependencies",
)
xcodeproj_rules_dependencies()
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()