github MobileNativeFoundation/rules_xcodeproj 1.9.0

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

What’s Changed

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 and SDKROOT influencing bazel 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

1.8.1...1.9.0

Contributors

Bzlmod Snippet

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

release.tar.gz’s integrity: sha256-LFey7IYipfxvlmH55VTUFcMPi5FBDiAj5SOcBFSUh18=

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 = "2c57b2ec8622a5fc6f9661f9e554d415c30f8b91410e2023e5239c045494875f",
    url = "https://github.com/MobileNativeFoundation/rules_xcodeproj/releases/download/1.9.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.