What’s Changed
Since 1.8.0
- Fixed BwX not generating some Bazel generated files: #2361
- Fixed some transitive modulemaps not being generated: #2362
- Fixed
swift_debug_settings.py
not including testing search paths: #2363 and #2364 - Fixed tool overrides still being set in BwB Index Build: #2365
Below are the changes that were in 1.8.0
Adjusted
- Updated
index-import
to 5.8.0.1: #2319 and #2332 - Renamed two build phases for consistency: #2328
- Added support for
/PLACEHOLDER_DEVELOPER_DIR
remapping: #2331 - The
DEVELOPER_DIR
regex is now restricted to the start of the line: #2337 - Adjusted
.pbxproj
formatting to match the way Xcode formats things: #2339, #2340, and #2344 - Indexes are now imported in Index Builds as well: #2283
- Project Format now supports Xcode 15: #2343
BAZELISK_SKIP_WRAPPER
is now captured inbazel_env
: #2357
Fixed
PBXProj.objectVersion
is now correctly set for Xcode 14+: #2341- Fixed
libtool
version check in Xcode 15: #2359 - Tool overrides are now unset in the in
BazelDependencies
target: #2358
Full Changelog
Contributors
Bzlmod Snippet
bazel_dep(name = "rules_xcodeproj", version = "1.8.1")
release.tar.gz
’s integrity
: sha256-JK7QvGz0Ey9i4I1LgWVhB+qNeATJ9/V8+5rL0Jkrp1s=
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 = "24aed0bc6cf4132f62e08d4b81656107ea8d7804c9f7f57cfb9acbd0992ba75b",
url = "https://github.com/MobileNativeFoundation/rules_xcodeproj/releases/download/1.8.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()