Skip to content

1.16.0

Compare
Choose a tag to compare
@github-actions github-actions released this 10 Jul 01:40
· 9 commits to master since this release
1b7434b

What's Changed

  • Add gcc_quoting_for_param_files feature, mirrors bazelbuild/bazel@bd2da6e
  • Add beta support for layering_check, enabled with --repo_env=APPLE_SUPPORT_LAYERING_CHECK_BETA=1
  • Add support for parse_headers, mirrors bazelbuild/bazel@231dfc2
  • Allow disabling apply_implied_frameworks, thanks @aaronsky!
  • Enable archive_param_file by default to avoid argument list too long errors, thanks @adincebic!

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

MODULE.bazel Snippet

bazel_dep(name = "apple_support", version = "1.16.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 = "c31ce8e531b50ef1338392ee29dd3db3689668701ec3237b9c61e26a1937ab07",
    url = "https://github.com/bazelbuild/apple_support/releases/download/1.16.0/apple_support.1.16.0.tar.gz",
)

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

apple_support_dependencies()

load("@bazel_features//:deps.bzl", "bazel_features_deps")

bazel_features_deps()