Skip to content

1.18.0

Compare
Choose a tag to compare
@brentleyjones brentleyjones released this 12 Mar 19:57
· 54 commits to main since this release
1.18.0
20914f3

What’s Changed

New

  • Added support for visionOS: #2922
  • Added Ruby file type extension for Podspec files: #2932
  • Added literal_string argument to xcschemes.arg: #2938

Adjusted

  • Upgraded WORKSPACE version of rules_swift to 1.16.0: #2927
  • --experimental_remote_download_regex is no longer set by default with the command-line API: #2930
  • Timing output from calculate_output_groups.py is now flushed immediately: #2931
  • We now work around when bazelisk is called recursively during project generation: #2929
  • Made xcschemes.top_level_anchor_target work with *_build_test targets: #2945 & #2949

Fixed

  • Fixed Xcode 15.3 LLDB debugging: #2947
  • Fixed an error when using an empty or None xcschemes.env value: #2935
  • Fixed stale tests with test hosts when deploying to simulator: #2936
  • explicitFileType is now correctly set for .bazel and .bzl extensions in incremental generation mode: #2928
  • Fixed performance of associated_extra_files with incremental generation mode: #2944 & #2948

Ruleset Development Changes

  • Upgrade dev version of rules_swift to 1.16.0: #2927

Full Changelog

1.17.0...1.18.0

Contributors

Bzlmod Snippet

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

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

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