Skip to content

3.1.0

Compare
Choose a tag to compare
@brentleyjones brentleyjones released this 25 Jul 19:06
· 6 commits to main since this release
3.1.0
64e9631

What’s Changed

Adjusted

  • Added SIGINT handler for process_bazel_build_log.py: #3200
  • We now use --@rules_swift//swift:copt instead of --swiftcopt: #3206
  • Removed --experimental_action_cache_store_output_metadata: #3207
  • Optimized out an extra regular expression substitution: #3208

Fixed

  • Fixed build log parsing for 'fatal error:' diagnostics: #3204
  • Fixed incorrect sha256 for rules_swift: #3210
  • Added Testing.framework to testing frameworks: #3211
  • Added support for new convention for WMO module deps artifacts naming in Xcode 26 beta 3: #3212
  • Fixed Metal toolchains in Xcode 26 betas: #3213

Full Changelog

3.0.0...3.1.0

Contributors

Bzlmod Snippet

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

release.tar.gz’s integrity: sha256-msA3JSzescov5kieHViOlqMFlYLVYU1j/LXIRXaugUs=

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-msA3JSzescov5kieHViOlqMFlYLVYU1j/LXIRXaugUs=",
    url = "https://github.com/MobileNativeFoundation/rules_xcodeproj/releases/download/3.1.0/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()