Skip to content

1.12.1

Compare
Choose a tag to compare
@brentleyjones brentleyjones released this 04 Oct 21:55
· 344 commits to main since this release
1.12.1
f5e0d84

What’s Changed

Since 1.12.0

  • Fixed framework Xcode previews: #2663

Below are the changes that were in 1.12.0.

Adjusted

  • Upgraded xcodeproj_rules_dependencies rules_swift and rules_apple: #2617
  • Tests now sort after library targets in schemes: #2616
  • We no longer set dwarf-with-dsym in an additional location: #2643
  • We no longer copy over frameworks in BwB mode: #2644
  • Xcode target names using label form now favor shorthand form: #2649

Fixed

  • Fixed hanging calculate_output_groups.py: #2660

Ruleset Development Changes

  • Changed examples to use release archive: #2614
  • Upgraded dev apple_support, rules_swift, and rules_apple: #2622
  • Upgraded swift-argument-parser to 1.2.3: #2632
  • Added AppleLipo to --modify_execution_info: #2657

Full Changelog

1.11.0...1.12.1

Contributors

Bzlmod Snippet

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

release.tar.gz’s integrity: sha256-0W3icQSABOon+Y1v78sCIUM3kgYXomePWOhFiYAkOl8=

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