Skip to content

3.3.0

Compare
Choose a tag to compare
@github-actions github-actions released this 20 Feb 20:39
· 96 commits to master since this release
26f0100

What's Changed

  • Disable pngcrush on macOS by default, thanks @maxbelanger!
  • Don't set an install path for macOS QuickLook plugins, thanks @maxbelanger!
  • Fix issues with experimental_mixed_language_library header map, thanks @luispadron!
  • Fix apple_static_framework_import missing search paths, thanks @vakhidbetrakhmadov!
  • Fix dynamic framework skipping lipo, thanks @xiemotongye!
  • Fix custom repo name when using bzlmod, thanks @brentleyjones!
  • Fix bazel @ HEAD compatibility

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

MODULE.bazel Snippet

bazel_dep(name = "rules_apple", version = "3.3.0", 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 = "65eafafe94b8573e74160b7f587d091a0fa34d69e6d2c41c4afb1eef140383ec",
    url = "https://github.com/bazelbuild/rules_apple/releases/download/3.3.0/rules_apple.3.3.0.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()