github bazelbuild/apple_support 1.23.0

latest release: 1.23.1
14 days ago

What's Changed

  • Mark module extension as reproducible by @fmeum in #328
  • Add support for BAZEL_CONLYOPTS, BAZEL_CXXOPTS, BAZEL_LINKOPTS by @AustinSchuh in #416
  • cc_binary: support .dSYM generation by @benjivos in #402
  • Pass -object_path_lto linker flag for LTO builds by @sanju-naik in #420
  • Added http_dmg repository rule for fetching and extracting dmgs by @UebelAndre in #421

New Contributors

Full Changelog: 1.22.1...1.23.0

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

MODULE.bazel Snippet

bazel_dep(name = "apple_support", version = "1.23.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 = "bf36532a8dedf5fc2b11d03314606743e20d462086514e9090ddd0b106e3b97a",
    url = "https://github.com/bazelbuild/apple_support/releases/download/1.23.0/apple_support.1.23.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()

Don't miss a new apple_support release

NewReleases is sending notifications on new releases.