From 16f30257025b034080f96f8fe35c96363ab5d177 Mon Sep 17 00:00:00 2001 From: "cgrindel-self-hosted-renovate[bot]" <139595543+cgrindel-self-hosted-renovate[bot]@users.noreply.github.com> Date: Thu, 7 Sep 2023 21:26:44 +0000 Subject: [PATCH] chore(deps): update dependency build_bazel_rules_swift to v1.11.0 (#125) 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://togithub.com/bazelbuild/rules_swift) | http_archive | minor | `1.10.1` -> `1.11.0` | --- ### Release Notes
bazelbuild/rules_swift (build_bazel_rules_swift) ### [`v1.11.0`](https://togithub.com/bazelbuild/rules_swift/releases/tag/1.11.0) [Compare Source](https://togithub.com/bazelbuild/rules_swift/compare/1.10.1...1.11.0) ##### What's Changed - Add initial Swift Macros support through a new `swift_compiler_plugin` rule and `macros` attribute on other rules. This requires Swift 5.9, an example can be found [here in the docs](https://togithub.com/bazelbuild/rules_swift/blob/master/doc/rules.md#swift_compiler_plugin) - Add initial visionOS support. See rules_apple for usage. This release is compatible with 5.x LTS, 6.x LTS, and bazel 7.x rolling releases ##### MODULE.bazel Snippet ```bzl bazel_dep(name = "rules_swift", version = "1.11.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 = "f7ab777e1b246cebed185417bffd93135be806e45248c57fd34e0f676bfb1c65", url = "https://github.com/bazelbuild/rules_swift/releases/download/1.11.0/rules_swift.1.11.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. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://togithub.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://togithub.com/renovatebot/renovate). Co-authored-by: Self-hosted Renovate Bot <361546+cgrindel-self-hosted-renovate[bot]@users.noreply.github.enterprise.com> --- swifttidy/deps.bzl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/swifttidy/deps.bzl b/swifttidy/deps.bzl index 174d327..1c327cd 100644 --- a/swifttidy/deps.bzl +++ b/swifttidy/deps.bzl @@ -27,6 +27,6 @@ def swifttidy_rules_dependencies(): maybe( http_archive, name = "build_bazel_rules_swift", - sha256 = "b1de723ff0dc433ac4ddfc6a7e8635bd4fb10c44d42d20a433de854196777f3d", - url = "https://github.com/bazelbuild/rules_swift/releases/download/1.10.1/rules_swift.1.10.1.tar.gz", + sha256 = "f7ab777e1b246cebed185417bffd93135be806e45248c57fd34e0f676bfb1c65", + url = "https://github.com/bazelbuild/rules_swift/releases/download/1.11.0/rules_swift.1.11.0.tar.gz", )