Skip to content

Commit

Permalink
chore(deps): update dependency build_bazel_rules_swift to v2.3.0 (#411)
Browse files Browse the repository at this point in the history
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
|
[build_bazel_rules_swift](https://github.com/bazelbuild/rules_swift)
| http_archive | minor | `2.2.4` -> `2.3.0` |

---

### Release Notes

<details>
<summary>bazelbuild/rules_swift (build_bazel_rules_swift)</summary>

###
[`v2.3.0`](https://github.com/bazelbuild/rules_swift/releases/tag/2.3.0)

[Compare
Source](https://github.com/bazelbuild/rules_swift/compare/2.2.4...2.3.0)

#### What's Changed

- `package_name` is supported in `mixed_language_library` rule by
[@&#8203;luispadron](https://github.com/luispadron) in
[https://github.com/bazelbuild/rules_swift/pull/1467](https://github.com/bazelbuild/rules_swift/pull/1467)

**Full Changelog**:
bazelbuild/rules_swift@2.2.4...2.3.0

This release is compatible with Bazel 6.x LTS, 7.x LTS, and 8.x rolling
releases.

#### MODULE.bazel Snippet

```bzl
bazel_dep(name = "rules_swift", version = "2.3.0", 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 = "7a626237ca4d9ecf4f5b4cb5bf13ff63ab6b27e101f834e7e2e07c3b98d583f9",
    url = "https://github.com/bazelbuild/rules_swift/releases/download/2.3.0/rules_swift.2.3.0.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.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->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).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS41OC4xIiwidXBkYXRlZEluVmVyIjoiMzkuNTguMSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: John Cater <jcater@google.com>
  • Loading branch information
renovate[bot] and katre authored Dec 10, 2024
1 parent fe65766 commit 2539af1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/custom_test_runner/WORKSPACE
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ swift_bazel_dependencies()

http_archive(
name = "build_bazel_rules_swift",
sha256 = "9f142f9e7200455f716cf8c88cb06fc2f51768bf9e65402440f58acdf4a3db17",
url = "https://github.com/bazelbuild/rules_swift/releases/download/2.2.4/rules_swift.2.2.4.tar.gz",
sha256 = "7a626237ca4d9ecf4f5b4cb5bf13ff63ab6b27e101f834e7e2e07c3b98d583f9",
url = "https://github.com/bazelbuild/rules_swift/releases/download/2.3.0/rules_swift.2.3.0.tar.gz",
)

load("//:swift_deps.bzl", "swift_dependencies")
Expand Down

0 comments on commit 2539af1

Please sign in to comment.