Skip to content

Commit 13d9282

Browse files
cgrindel-self-hosted-renovate[bot]mergify[bot]cgrindel
authored
chore(deps): update dependency apple_support to v1.23.1 (#1796)
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> Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> Co-authored-by: Chuck Grindel <[email protected]>
1 parent 46273de commit 13d9282

File tree

27 files changed

+27
-27
lines changed

27 files changed

+27
-27
lines changed

bzlmod/workspace/MODULE.bazel

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

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

examples/firebase_example/MODULE.bazel

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

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

examples/google_maps_example/MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ local_path_override(
99

1010
bazel_dep(name = "cgrindel_bazel_starlib", version = "0.27.0")
1111
bazel_dep(name = "bazel_skylib", version = "1.8.1")
12-
bazel_dep(name = "apple_support", version = "1.23.0")
12+
bazel_dep(name = "apple_support", version = "1.23.1")
1313
bazel_dep(
1414
name = "rules_swift",
1515
version = "3.1.2",

examples/grpc_example/MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ bazel_dep(name = "protobuf", version = "32.0")
2121
bazel_dep(name = "rules_proto", version = "7.1.0")
2222

2323
# Required for compiling objc:
24-
bazel_dep(name = "apple_support", version = "1.23.0")
24+
bazel_dep(name = "apple_support", version = "1.23.1")
2525

2626
# Required for swift_binary and swift_proto_library targets:
2727
bazel_dep(name = "rules_swift", version = "3.1.2", repo_name = "build_bazel_rules_swift")

examples/injectionnext_example/MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ local_path_override(
99

1010
bazel_dep(name = "cgrindel_bazel_starlib", version = "0.27.0")
1111
bazel_dep(name = "bazel_skylib", version = "1.8.1")
12-
bazel_dep(name = "apple_support", version = "1.23.0")
12+
bazel_dep(name = "apple_support", version = "1.23.1")
1313
bazel_dep(
1414
name = "rules_swift",
1515
version = "3.1.2",

examples/interesting_deps/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(name = "platforms", version = "1.0.0")
2222
bazel_dep(
2323
name = "rules_swift",

examples/ios_sim/MODULE.bazel

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

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

examples/kscrash_example/MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ local_path_override(
99

1010
bazel_dep(name = "cgrindel_bazel_starlib", version = "0.27.0")
1111
bazel_dep(name = "bazel_skylib", version = "1.8.1")
12-
bazel_dep(name = "apple_support", version = "1.23.0")
12+
bazel_dep(name = "apple_support", version = "1.23.1")
1313
bazel_dep(
1414
name = "rules_swift",
1515
version = "3.1.2",

examples/language_modes_example/MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ local_path_override(
99

1010
bazel_dep(name = "cgrindel_bazel_starlib", version = "0.27.0")
1111
bazel_dep(name = "bazel_skylib", version = "1.8.1")
12-
bazel_dep(name = "apple_support", version = "1.23.0")
12+
bazel_dep(name = "apple_support", version = "1.23.1")
1313
bazel_dep(
1414
name = "rules_swift",
1515
version = "3.1.2",

examples/lottie_ios_example/MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ local_path_override(
99

1010
bazel_dep(name = "cgrindel_bazel_starlib", version = "0.27.0")
1111
bazel_dep(name = "bazel_skylib", version = "1.8.1")
12-
bazel_dep(name = "apple_support", version = "1.23.0")
12+
bazel_dep(name = "apple_support", version = "1.23.1")
1313
bazel_dep(
1414
name = "rules_swift",
1515
version = "3.1.2",

0 commit comments

Comments
 (0)