Skip to content

Commit 75a4063

Browse files
chore(deps): update dependency rules_swift to v3.1.2 (#150)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [rules_swift](https://redirect.github.com/bazelbuild/rules_swift) | bazel_dep | patch | `3.1.1` -> `3.1.2` | --- ### Release Notes <details> <summary>bazelbuild/rules_swift (rules_swift)</summary> ### [`v3.1.2`](https://redirect.github.com/bazelbuild/rules_swift/releases/tag/3.1.2) [Compare Source](https://redirect.github.com/bazelbuild/rules_swift/compare/3.1.1...3.1.2) ##### What's Changed - Merge Swift and Clang entries in `.swift-explicit-module-map.json` by [@&#8203;ileitch](https://redirect.github.com/ileitch) in [https://github.com/bazelbuild/rules_swift/pull/1545](https://redirect.github.com/bazelbuild/rules_swift/pull/1545)5 - Pass `-file-compilation-dir .` explicitly to the Swift driver so that `.swiftmodule` files are hermetic. by [@&#8203;adincebic](https://redirect.github.com/adincebic) in [https://github.com/bazelbuild/rules_swift/pull/1554](https://redirect.github.com/bazelbuild/rules_swift/pull/1554)4 - Insert `-plugin-path` for testing macros location when building tests by [@&#8203;aaronsky](https://redirect.github.com/aaronsky) in [https://github.com/bazelbuild/rules_swift/pull/1555](https://redirect.github.com/bazelbuild/rules_swift/pull/1555)5 ##### New Contributors - [@&#8203;ileitch](https://redirect.github.com/ileitch) made their first contribution in [https://github.com/bazelbuild/rules_swift/pull/1545](https://redirect.github.com/bazelbuild/rules_swift/pull/1545)5 **Full Changelog**: https://github.com/bazelbuild/rules\_swift/compare/3.1.1...3.1.2 This release is compatible with Bazel 7.x LTS, 8.x LTS, and 9.x rolling releases. ##### MODULE.bazel Snippet ```bzl bazel_dep(name = "rules_swift", version = "3.1.2", repo_name = "build_bazel_rules_swift") ``` ##### Workspace Snippet ```bzl load("@&#8203;bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") http_archive( name = "build_bazel_rules_swift", sha256 = "5eff717c18bb513285b499add68f2331509cd4e411ff085e96a86b3342c1e5aa", url = "https://github.com/bazelbuild/rules_swift/releases/download/3.1.2/rules_swift.3.1.2.tar.gz", ) 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() ``` </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>
1 parent fdc14e9 commit 75a4063

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
@@ -16,7 +16,7 @@ bazel_dep(name = "bazel_skylib", version = "1.8.1")
1616
bazel_dep(name = "apple_support", version = "1.22.1")
1717
bazel_dep(
1818
name = "rules_swift",
19-
version = "3.1.1",
19+
version = "3.1.2",
2020
repo_name = "build_bazel_rules_swift",
2121
)
2222

examples/custom_swift_proto_compiler/MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ bazel_dep(name = "rules_shell", version = "0.5.1")
2121
bazel_dep(name = "apple_support", version = "1.22.1")
2222
bazel_dep(
2323
name = "rules_swift",
24-
version = "3.1.1",
24+
version = "3.1.2",
2525
)
2626
bazel_dep(
2727
name = "rules_apple",

examples/grpc_example/MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ bazel_dep(name = "bazel_skylib", version = "1.8.1")
2020
bazel_dep(name = "apple_support", version = "1.22.1")
2121
bazel_dep(
2222
name = "rules_swift",
23-
version = "3.1.1",
23+
version = "3.1.2",
2424
)
2525
bazel_dep(
2626
name = "rules_apple",

examples/grpc_package_example/MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ bazel_dep(name = "bazel_skylib", version = "1.8.1")
2020
bazel_dep(name = "apple_support", version = "1.22.1")
2121
bazel_dep(
2222
name = "rules_swift",
23-
version = "3.1.1",
23+
version = "3.1.2",
2424
)
2525
bazel_dep(
2626
name = "rules_apple",

examples/simple/MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ bazel_dep(name = "cgrindel_bazel_starlib", version = "0.27.0")
1414
bazel_dep(name = "apple_support", version = "1.22.1")
1515
bazel_dep(
1616
name = "rules_swift",
17-
version = "3.1.1",
17+
version = "3.1.2",
1818
repo_name = "build_bazel_rules_swift",
1919
)
2020

0 commit comments

Comments
 (0)