github bazelbuild/rules_apple 4.1.2

29 days ago

What's Changed

  • Fix an unexpected duplicated instance of the SwiftSupport libraries for app clip targets. by @adincebic in #2757
  • Support xcarchive on MacOS by @marekcirkos in #2758
  • transform XCTRunner.app Info.plist to xml before sed'ing it by @aaronsky in #2763

New Contributors

Full Changelog: 4.1.1...4.1.2

This release is compatible with Bazel 7.x LTS and 8.x LTS releases

MODULE.bazel Snippet

bazel_dep(name = "rules_apple", version = "4.1.2", repo_name = "build_bazel_rules_apple")

Workspace Snippet

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")

http_archive(
    name = "build_bazel_rules_apple",
    sha256 = "de1c8bb872da6b03d2abff659178d3abfda5cc8d8a6b646fdab96ab2d00c9fa7",
    url = "https://github.com/bazelbuild/rules_apple/releases/download/4.1.2/rules_apple.4.1.2.tar.gz",
)

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_apple release

NewReleases is sending notifications on new releases.