Skip to content

1.10.0

Compare
Choose a tag to compare
@github-actions github-actions released this 20 Sep 15:36
· 70 commits to master since this release
b360aac

What's Changed

  • Use no_warn_duplicate_libraries by default with Xcode 15, thanks @kersson!
  • Add platforms to apple_universal_binary transition, thanks @comius!
  • Enable use_default_shell_env everywhere when using bazel 7.x+
  • Add build flags to allow overriding platforms used in transitions
  • Improve error message for unknown CPUs
  • Derive platform type from CPU instead of from apple fragments to fix --apple_platform_type mismatches

This release is compatible with 5.x LTS, 6.x LTS, and bazel 7.x rolling releases

MODULE.bazel Snippet

bazel_dep(name = "apple_support", version = "1.10.0", repo_name = "build_bazel_apple_support")

Workspace Snippet

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

http_archive(
    name = "build_bazel_apple_support",
    sha256 = "73455d9ae35d28e04853fc9e276bbd05ba4297dbb9cc16e4a15f2034ce687a4c",
    url = "https://github.com/bazelbuild/apple_support/releases/download/1.10.0/apple_support.1.10.0.tar.gz",
)

load(
    "@build_bazel_apple_support//lib:repositories.bzl",
    "apple_support_dependencies",
)

apple_support_dependencies()