github MobileNativeFoundation/rules_xcodeproj 1.8.0

latest releases: 3.1.2, 3.1.1, 3.1.0...
2 years ago

What’s Changed

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 in bazel_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

1.7.1...1.8.0

Contributors

Bzlmod Snippet

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

release.tar.gz’s integrity: sha256-I0J0daE9Wgfb0yBxrD+vnC3sQVaiuRUniBmZxJ3Dm5g=

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

Don't miss a new rules_xcodeproj release

NewReleases is sending notifications on new releases.