What’s Changed
Since 1.9.0
- Bundle name, instead of module name, is now used in target disambiguation: #2459
- Changed how host output groups are set in fallback case: #2461
- Fixed quoting of flags in
SWIFT_OTHER_FLAGS
: #2454 - Fixed rules_ios
.xccurrentversion
collection: #2457 and #2465 - Fixed BwX tesource bundle Info.plist regression: 2466
Below are the changes that were in 1.9.0.
Adjusted
GENERATE_INFOPLIST_FILE
is not longer set: #2379- Added an error message when
target_ids_list
is missing: #2396 - Changed “Command Line Tool” disambiguation to “Tool”: #2434
- Library module names are now preferred for target name disambiguation: #2407
Fixed
- Fixed handling of conditional
bundle_name
: #2368 and #2375 - Fixed Xcode set
LD_LIBRARY_PATH
andSDKROOT
influencingbazel build
: #2373 - Fixed handling of conditionally empty build setting values: #2380
- Fixed handling of generated
.xccurrentversion
files: #2389 - Fixed multiple target name disambiguation bugs: #2415, #2416, #2414, #2418, #2419, #2420, #2429, #2425, #2432, and #2435
- Fixed wrong execution root being used in Index Build indexstore importing: #2422 and #2431
- Fixed more cases of SourceKit (indexing) caching issues: #2264 and #2443
- Fixed Swift generated header not being downloaded in BwB mode: #2440
Full Changelog
Contributors
Bzlmod Snippet
bazel_dep(name = "rules_xcodeproj", version = "1.9.1")
release.tar.gz
’s integrity
: sha256-W6zN1qJzSgreucthdWkdBgn4vb18X1Fugo0N90Tun2w=
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 = "rules_xcodeproj",
sha256 = "5baccdd6a2734a0adeb9cb6175691d0609f8bdbd7c5f516e828d0df744ee9f6c",
url = "https://github.com/MobileNativeFoundation/rules_xcodeproj/releases/download/1.9.1/release.tar.gz",
)
load(
"@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()