Skip to content

Commit 5322bd3

Browse files
chore(deps): update dependency apple_support to v1.23.1 (#165)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [apple_support](https://redirect.github.com/bazelbuild/apple_support) | bazel_dep | patch | `1.23.0` -> `1.23.1` | --- ### Release Notes <details> <summary>bazelbuild/apple_support (apple_support)</summary> ### [`v1.23.1`](https://redirect.github.com/bazelbuild/apple_support/releases/tag/1.23.1) [Compare Source](https://redirect.github.com/bazelbuild/apple_support/compare/1.23.0...1.23.1) ##### What's Changed - Fix cxx\_flags order by [@&#8203;keith](https://redirect.github.com/keith) in [https://github.com/bazelbuild/apple_support/pull/424](https://redirect.github.com/bazelbuild/apple_support/pull/424)4 - Revert "Pass -object\_path\_lto <path> linker flag for LTO builds ([#&#8203;420](https://redirect.github.com/bazelbuild/apple_support/issues/420))" by [@&#8203;keith](https://redirect.github.com/keith) in [https://github.com/bazelbuild/apple_support/pull/426](https://redirect.github.com/bazelbuild/apple_support/pull/426)6 **Full Changelog**: https://github.com/bazelbuild/apple\_support/compare/1.23.0...1.23.1 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.1", 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 = "ee20cc5c0bab47065473c8033d462374dd38d172406ecc8de5c8f08487943f2f", url = "https://github.com/bazelbuild/apple_support/releases/download/1.23.1/apple_support.1.23.1.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 f70bd40 commit 5322bd3

File tree

7 files changed

+13
-13
lines changed

7 files changed

+13
-13
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.23.0")
16+
bazel_dep(name = "apple_support", version = "1.23.1")
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.23.0")
21+
bazel_dep(name = "apple_support", version = "1.23.1")
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.23.0")
20+
bazel_dep(name = "apple_support", version = "1.23.1")
2121
bazel_dep(
2222
name = "rules_swift",
2323
version = "3.1.2",

examples/grpc_example/Package.resolved

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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.23.0")
20+
bazel_dep(name = "apple_support", version = "1.23.1")
2121
bazel_dep(
2222
name = "rules_swift",
2323
version = "3.1.2",

examples/grpc_package_example/Package.resolved

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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.23.0")
14+
bazel_dep(name = "apple_support", version = "1.23.1")
1515
bazel_dep(
1616
name = "rules_swift",
1717
version = "3.1.2",

0 commit comments

Comments
 (0)