Skip to content

2.11.2: More macOS 15.4 fixes

Compare
Choose a tag to compare
@brentleyjones brentleyjones released this 09 Apr 17:00
· 36 commits to main since this release
f4a8115

What’s Changed

Since 2.11.1

  • Fixed index-import to work on all Xcode 16.x versions: #3162

Below are the changes that were in 2.11.1.

Adjusted

  • We now default LANG to en_US.UTF-8 in project generation: #3143
  • Indexstore .filelist creation has been simplified: #3144
  • WriteTargetBuildSettings can now optionally use remote cache or RBE: #3149
  • We now use --action_env=TOOLCHAINS= instead of --define=SWIFT_CUSTOM_TOOLCHAIN=: #3123
  • Changed instances of --experimental_remote_download_regex to --remote_download_regex: #3125
  • Added compile_only aspect: #3156

Fixed

  • We now use md5sum when not on macOS: #3145
  • xcode-select or DEVELOPER_DIR are no longer required to generate a project: #3147
  • Fixed incremental_installer.sh when running on Linux: #3148
  • swift_compiler_plugin sources are now added to the generated project: #3142
  • Removed duplicate post/pre actions: #3122
  • Fixed rsync on macOS 15.4: #3157
  • Fixed comm on macOS 15.4: #3161

Full Changelog

https://github.com/buildbuddy-io/rules_xcodeproj/compare/2.10.0..2.11.2

Contributors

Bzlmod Snippet

bazel_dep(name = "rules_xcodeproj", version = "2.11.2")

release.tar.gz’s integrity: sha256-PlVOapHq+fYXQarlVA0BLykDPHUTOlfAx5WuasIyMjY=

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",
    integrity = "sha256-PlVOapHq+fYXQarlVA0BLykDPHUTOlfAx5WuasIyMjY=",
    url = "https://github.com/MobileNativeFoundation/rules_xcodeproj/releases/download/2.11.2/release.tar.gz",
)

load(
    "@rules_xcodeproj//xcodeproj:repositories.bzl",
    "xcodeproj_rules_dependencies",
)

xcodeproj_rules_dependencies()

load("@bazel_features//:deps.bzl", "bazel_features_deps")

bazel_features_deps()

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()