From 36b14b65973fc66a2007d41f00f8f9998e486d67 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 20 Jan 2025 16:54:01 +0000 Subject: [PATCH] chore(deps): update dependency build_bazel_rules_swift to v2.4.0 (#434) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [build_bazel_rules_swift](https://redirect.github.com/bazelbuild/rules_swift) | http_archive | minor | `2.3.1` -> `2.4.0` | --- ### Release Notes
bazelbuild/rules_swift (build_bazel_rules_swift) ### [`v2.4.0`](https://redirect.github.com/bazelbuild/rules_swift/releases/tag/2.4.0) [Compare Source](https://redirect.github.com/bazelbuild/rules_swift/compare/2.3.1...2.4.0) #### What's Changed - Fix for incremental compilation by [@​adincebic](https://redirect.github.com/adincebic) in [https://github.com/bazelbuild/rules_swift/pull/1476](https://redirect.github.com/bazelbuild/rules_swift/pull/1476) - Run stardoc CI on older Bazel LTS by [@​luispadron](https://redirect.github.com/luispadron) in [https://github.com/bazelbuild/rules_swift/pull/1478](https://redirect.github.com/bazelbuild/rules_swift/pull/1478) - Include swift_proto_library attrs in compilation by [@​luispadron](https://redirect.github.com/luispadron) in [https://github.com/bazelbuild/rules_swift/pull/1479](https://redirect.github.com/bazelbuild/rules_swift/pull/1479) **Full Changelog**: https://github.com/bazelbuild/rules_swift/compare/2.3.1...2.4.0 This release is compatible with Bazel 6.x LTS, 7.x LTS, 8.x LTS, and 9.x rolling releases. #### MODULE.bazel Snippet ```bzl bazel_dep(name = "rules_swift", version = "2.4.0", repo_name = "build_bazel_rules_swift") ``` #### Workspace Snippet ```bzl load("@​bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") http_archive( name = "build_bazel_rules_swift", sha256 = "28db894977ac51c8f3ab7c6dc9d655a85510366734e900b3c5302ce1ed91256c", url = "https://github.com/bazelbuild/rules_swift/releases/download/2.4.0/rules_swift.2.4.0.tar.gz", ) load( "@​build_bazel_rules_swift//swift:repositories.bzl", "swift_rules_dependencies", ) swift_rules_dependencies() load( "@​build_bazel_rules_swift//swift:extras.bzl", "swift_rules_extra_dependencies", ) swift_rules_extra_dependencies() ```
--- ### 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. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/bazel-contrib/rules_bazel_integration_test). Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- examples/custom_test_runner/WORKSPACE | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/custom_test_runner/WORKSPACE b/examples/custom_test_runner/WORKSPACE index ca1fba2..8e84776 100644 --- a/examples/custom_test_runner/WORKSPACE +++ b/examples/custom_test_runner/WORKSPACE @@ -41,8 +41,8 @@ swift_bazel_dependencies() http_archive( name = "build_bazel_rules_swift", - sha256 = "5bb49e7a1764f3f227677c572d6487b5bfeb2613eaaae2a82b240d9b836a0b4e", - url = "https://github.com/bazelbuild/rules_swift/releases/download/2.3.1/rules_swift.2.3.1.tar.gz", + sha256 = "28db894977ac51c8f3ab7c6dc9d655a85510366734e900b3c5302ce1ed91256c", + url = "https://github.com/bazelbuild/rules_swift/releases/download/2.4.0/rules_swift.2.4.0.tar.gz", ) load("//:swift_deps.bzl", "swift_dependencies")