Skip to content

Commit c043db0

Browse files
chore(deps): update dependency apple_support to v1.23.0 (#160)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [apple_support](https://redirect.github.com/bazelbuild/apple_support) | bazel_dep | minor | `1.22.1` -> `1.23.0` | --- ### Release Notes <details> <summary>bazelbuild/apple_support (apple_support)</summary> ### [`v1.23.0`](https://redirect.github.com/bazelbuild/apple_support/releases/tag/1.23.0) [Compare Source](https://redirect.github.com/bazelbuild/apple_support/compare/1.22.1...1.23.0) ##### What's Changed - Mark module extension as reproducible by [@&#8203;fmeum](https://redirect.github.com/fmeum) in [https://github.com/bazelbuild/apple_support/pull/328](https://redirect.github.com/bazelbuild/apple_support/pull/328)8 - Add support for BAZEL\_CONLYOPTS, BAZEL\_CXXOPTS, BAZEL\_LINKOPTS by [@&#8203;AustinSchuh](https://redirect.github.com/AustinSchuh) in [https://github.com/bazelbuild/apple_support/pull/416](https://redirect.github.com/bazelbuild/apple_support/pull/416)6 - cc\_binary: support .dSYM generation by [@&#8203;benjivos](https://redirect.github.com/benjivos) in [https://github.com/bazelbuild/apple_support/pull/402](https://redirect.github.com/bazelbuild/apple_support/pull/402)2 - Pass -object\_path\_lto <path> linker flag for LTO builds by [@&#8203;sanju-naik](https://redirect.github.com/sanju-naik) in [https://github.com/bazelbuild/apple_support/pull/420](https://redirect.github.com/bazelbuild/apple_support/pull/420)0 - Added `http_dmg` repository rule for fetching and extracting dmgs by [@&#8203;UebelAndre](https://redirect.github.com/UebelAndre) in [https://github.com/bazelbuild/apple_support/pull/421](https://redirect.github.com/bazelbuild/apple_support/pull/421)1 ##### New Contributors - [@&#8203;AustinSchuh](https://redirect.github.com/AustinSchuh) made their first contribution in [https://github.com/bazelbuild/apple_support/pull/416](https://redirect.github.com/bazelbuild/apple_support/pull/416)6 - [@&#8203;benjivos](https://redirect.github.com/benjivos) made their first contribution in [https://github.com/bazelbuild/apple_support/pull/402](https://redirect.github.com/bazelbuild/apple_support/pull/402)2 - [@&#8203;sanju-naik](https://redirect.github.com/sanju-naik) made their first contribution in [https://github.com/bazelbuild/apple_support/pull/420](https://redirect.github.com/bazelbuild/apple_support/pull/420)0 - [@&#8203;UebelAndre](https://redirect.github.com/UebelAndre) made their first contribution in [https://github.com/bazelbuild/apple_support/pull/421](https://redirect.github.com/bazelbuild/apple_support/pull/421)1 **Full Changelog**: https://github.com/bazelbuild/apple\_support/compare/1.22.1...1.23.0 This release is compatible with 7.x LTS, 8.x LTS, and rolling releases. ##### MODULE.bazel Snippet ```bzl bazel_dep(name = "apple_support", version = "1.23.0", repo_name = "build_bazel_apple_support") ``` ##### Workspace Snippet ```bzl load("@&#8203;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( "@&#8203;build_bazel_apple_support//lib:repositories.bzl", "apple_support_dependencies", ) apple_support_dependencies() load("@&#8203;bazel_features//:deps.bzl", "bazel_features_deps") bazel_features_deps() ``` </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://redirect.github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS4wLjAiLCJ1cGRhdGVkSW5WZXIiOiI0MS4wLjAiLCJ0YXJnZXRCcmFuY2giOiJtYWluIiwibGFiZWxzIjpbXX0=--> Co-authored-by: cgrindel-self-hosted-renovate[bot] <139595543+cgrindel-self-hosted-renovate[bot]@users.noreply.github.com>
1 parent 8207182 commit c043db0

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

bzlmod/workspace/MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ bazel_dep(name = "bazel_skylib", version = "1.8.1")
1313

1414
# The apple_support bazel_dep must come before the rules_cc.
1515
# https://github.com/bazelbuild/apple_support#incompatible-toolchain-resolution
16-
bazel_dep(name = "apple_support", version = "1.22.1")
16+
bazel_dep(name = "apple_support", version = "1.23.0")
1717
bazel_dep(
1818
name = "rules_swift",
1919
version = "3.1.2",

examples/custom_swift_proto_compiler/MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ bazel_dep(name = "rules_shell", version = "0.6.0")
1818

1919
# The apple_support bazel_dep must come before the rules_cc.
2020
# https://github.com/bazelbuild/apple_support#incompatible-toolchain-resolution
21-
bazel_dep(name = "apple_support", version = "1.22.1")
21+
bazel_dep(name = "apple_support", version = "1.23.0")
2222
bazel_dep(
2323
name = "rules_swift",
2424
version = "3.1.2",

examples/grpc_example/MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ bazel_dep(name = "bazel_skylib", version = "1.8.1")
1717

1818
# The apple_support bazel_dep must come before the rules_cc.
1919
# https://github.com/bazelbuild/apple_support#incompatible-toolchain-resolution
20-
bazel_dep(name = "apple_support", version = "1.22.1")
20+
bazel_dep(name = "apple_support", version = "1.23.0")
2121
bazel_dep(
2222
name = "rules_swift",
2323
version = "3.1.2",

examples/grpc_package_example/MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ bazel_dep(name = "bazel_skylib", version = "1.8.1")
1717

1818
# The apple_support bazel_dep must come before the rules_cc.
1919
# https://github.com/bazelbuild/apple_support#incompatible-toolchain-resolution
20-
bazel_dep(name = "apple_support", version = "1.22.1")
20+
bazel_dep(name = "apple_support", version = "1.23.0")
2121
bazel_dep(
2222
name = "rules_swift",
2323
version = "3.1.2",

examples/simple/MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ bazel_dep(name = "cgrindel_bazel_starlib", version = "0.27.0")
1111

1212
# The apple_support bazel_dep must come before the rules_cc.
1313
# https://github.com/bazelbuild/apple_support#incompatible-toolchain-resolution
14-
bazel_dep(name = "apple_support", version = "1.22.1")
14+
bazel_dep(name = "apple_support", version = "1.23.0")
1515
bazel_dep(
1616
name = "rules_swift",
1717
version = "3.1.2",

0 commit comments

Comments
 (0)