Skip to content

Commit f9031f5

Browse files
chore(deps): update dependency rules_apple to v4.3.2 (#1930)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [rules_apple](https://redirect.github.com/bazelbuild/rules_apple) | bazel_dep | patch | `4.3.1` -> `4.3.2` | --- ### Release Notes <details> <summary>bazelbuild/rules_apple (rules_apple)</summary> ### [`v4.3.2`](https://redirect.github.com/bazelbuild/rules_apple/releases/tag/4.3.2) [Compare Source](https://redirect.github.com/bazelbuild/rules_apple/compare/4.3.1...4.3.2) ##### What's Changed - Make `//test:ios_coverage_test` run exclusively by [@&#8203;aaronsky](https://redirect.github.com/aaronsky) in [https://github.com/bazelbuild/rules_apple/pull/2826](https://redirect.github.com/bazelbuild/rules_apple/pull/2826)6 - Fix `COVERAGE` check by [@&#8203;brentleyjones](https://redirect.github.com/brentleyjones) in [https://github.com/bazelbuild/rules_apple/pull/2827](https://redirect.github.com/bazelbuild/rules_apple/pull/2827)7 - Move `COLLECT_PROFDATA` check back outside of `COVERAGE` check by [@&#8203;brentleyjones](https://redirect.github.com/brentleyjones) in [https://github.com/bazelbuild/rules_apple/pull/2829](https://redirect.github.com/bazelbuild/rules_apple/pull/2829)9 - Fix `.xcstickers` app icon regression by [@&#8203;brentleyjones](https://redirect.github.com/brentleyjones) in [https://github.com/bazelbuild/rules_apple/pull/2831](https://redirect.github.com/bazelbuild/rules_apple/pull/2831)1 - Cover message sticker pack extension with tests by [@&#8203;adincebic](https://redirect.github.com/adincebic) in [https://github.com/bazelbuild/rules_apple/pull/2832](https://redirect.github.com/bazelbuild/rules_apple/pull/2832)2 - Drop `rolling` bazel version from the BCR by [@&#8203;adincebic](https://redirect.github.com/adincebic) in [https://github.com/bazelbuild/rules_apple/pull/2833](https://redirect.github.com/bazelbuild/rules_apple/pull/2833)3 **Full Changelog**: https://github.com/bazelbuild/rules\_apple/compare/4.3.1...4.3.2 This release is compatible with Bazel 7.x LTS and 8.x LTS releases. ##### MODULE.bazel Snippet ```bzl bazel_dep(name = "rules_apple", version = "4.3.2", repo_name = "build_bazel_rules_apple") ``` ##### Workspace Snippet ```bzl load("@&#8203;bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") http_archive( name = "build_bazel_rules_apple", sha256 = "f2b4117fe17b0f1f8a3769e6d760d433fcbf97a8b6ff1797077ec106ccfbe2f2", url = "https://github.com/bazelbuild/rules_apple/releases/download/4.3.2/rules_apple.4.3.2.tar.gz", ) load( "@&#8203;build_bazel_rules_apple//apple:repositories.bzl", "apple_rules_dependencies", ) apple_rules_dependencies() load( "@&#8203;build_bazel_rules_swift//swift:repositories.bzl", "swift_rules_dependencies", ) swift_rules_dependencies() load( "@&#8203;build_bazel_rules_swift//swift:extras.bzl", "swift_rules_extra_dependencies", ) swift_rules_extra_dependencies() load( "@&#8203;build_bazel_apple_support//lib:repositories.bzl", "apple_support_dependencies", ) apple_support_dependencies() ``` </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 c5f2798 commit f9031f5

File tree

25 files changed

+25
-25
lines changed

25 files changed

+25
-25
lines changed

examples/firebase_example/MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ bazel_dep(
2020
)
2121
bazel_dep(
2222
name = "rules_apple",
23-
version = "4.3.1",
23+
version = "4.3.2",
2424
repo_name = "build_bazel_rules_apple",
2525
)
2626

examples/google_maps_example/MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ bazel_dep(
1717
)
1818
bazel_dep(
1919
name = "rules_apple",
20-
version = "4.3.1",
20+
version = "4.3.2",
2121
repo_name = "build_bazel_rules_apple",
2222
)
2323

examples/injectionnext_example/MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ bazel_dep(
1717
)
1818
bazel_dep(
1919
name = "rules_apple",
20-
version = "4.3.1",
20+
version = "4.3.2",
2121
repo_name = "build_bazel_rules_apple",
2222
)
2323

examples/interesting_deps/MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ bazel_dep(
2626
)
2727
bazel_dep(
2828
name = "rules_apple",
29-
version = "4.3.1",
29+
version = "4.3.2",
3030
repo_name = "build_bazel_rules_apple",
3131
)
3232

examples/ios_sim/MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ bazel_dep(
2020
)
2121
bazel_dep(
2222
name = "rules_apple",
23-
version = "4.3.1",
23+
version = "4.3.2",
2424
repo_name = "build_bazel_rules_apple",
2525
)
2626

examples/kscrash_example/MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ bazel_dep(
1717
)
1818
bazel_dep(
1919
name = "rules_apple",
20-
version = "4.3.1",
20+
version = "4.3.2",
2121
repo_name = "build_bazel_rules_apple",
2222
)
2323

examples/language_modes_example/MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ bazel_dep(
1717
)
1818
bazel_dep(
1919
name = "rules_apple",
20-
version = "4.3.1",
20+
version = "4.3.2",
2121
repo_name = "build_bazel_rules_apple",
2222
)
2323

examples/lottie_ios_example/MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ bazel_dep(
1717
)
1818
bazel_dep(
1919
name = "rules_apple",
20-
version = "4.3.1",
20+
version = "4.3.2",
2121
repo_name = "build_bazel_rules_apple",
2222
)
2323

examples/messagekit_example/MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ bazel_dep(
1717
)
1818
bazel_dep(
1919
name = "rules_apple",
20-
version = "4.3.1",
20+
version = "4.3.2",
2121
repo_name = "build_bazel_rules_apple",
2222
)
2323

examples/nimble_example/MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ bazel_dep(
1717
)
1818
bazel_dep(
1919
name = "rules_apple",
20-
version = "4.3.1",
20+
version = "4.3.2",
2121
repo_name = "build_bazel_rules_apple",
2222
)
2323

0 commit comments

Comments
 (0)