Skip to content

Commit 33c00f2

Browse files
chore(deps): update dependency bazel_skylib to v1.7.0 (#317)
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | bazel_skylib | bazel_dep | minor | `1.6.1` -> `1.7.0` | | [bazel_skylib](https://togithub.com/bazelbuild/bazel-skylib) | http_archive | minor | `1.6.1` -> `1.7.0` | --- ### Release Notes <details> <summary>bazelbuild/bazel-skylib (bazel_skylib)</summary> ### [`v1.7.0`](https://togithub.com/bazelbuild/bazel-skylib/blob/HEAD/CHANGELOG.md#Release-170) [Compare Source](https://togithub.com/bazelbuild/bazel-skylib/compare/1.6.1...1.7.0) **New features** - Implement `directory` rules by [@&#8203;matts1](https://togithub.com/matts1) in [https://github.com/bazelbuild/bazel-skylib/pull/510](https://togithub.com/bazelbuild/bazel-skylib/pull/510) - Add `is_normalized` and `starts_with` to paths module by [@&#8203;comius](https://togithub.com/comius) in [https://github.com/bazelbuild/bazel-skylib/pull/514](https://togithub.com/bazelbuild/bazel-skylib/pull/514) **New Contributors** - [@&#8203;matts1](https://togithub.com/matts1) made their first contribution in [https://github.com/bazelbuild/bazel-skylib/pull/510](https://togithub.com/bazelbuild/bazel-skylib/pull/510) **Full Changelog**: bazelbuild/bazel-skylib@1.6.1...1.7.0 </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 these updates again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/bazel-contrib/rules_bazel_integration_test). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zNzcuOCIsInVwZGF0ZWRJblZlciI6IjM3LjM3Ny44IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent e9cb674 commit 33c00f2

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

bazel_integration_test/deps.bzl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ def bazel_integration_test_rules_dependencies():
99
http_archive,
1010
name = "bazel_skylib",
1111
urls = [
12-
"https://mirror.bazel.build/github.com/bazelbuild/bazel-skylib/releases/download/1.6.1/bazel-skylib-1.6.1.tar.gz",
13-
"https://github.com/bazelbuild/bazel-skylib/releases/download/1.6.1/bazel-skylib-1.6.1.tar.gz",
12+
"https://mirror.bazel.build/github.com/bazelbuild/bazel-skylib/releases/download/1.7.0/bazel-skylib-1.7.0.tar.gz",
13+
"https://github.com/bazelbuild/bazel-skylib/releases/download/1.7.0/bazel-skylib-1.7.0.tar.gz",
1414
],
15-
sha256 = "9f38886a40548c6e96c106b752f242130ee11aaa068a56ba7e56f4511f33e4f2",
15+
sha256 = "d00f1389ee20b60018e92644e0948e16e350a7707219e7a390fb0a99b6ec9262",
1616
)
1717

1818
maybe(

examples/custom_test_runner/MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ local_path_override(
1515

1616
bazel_dep(name = "platforms", version = "0.0.10")
1717
bazel_dep(name = "cgrindel_bazel_starlib", version = "0.20.2")
18-
bazel_dep(name = "bazel_skylib", version = "1.6.1")
18+
bazel_dep(name = "bazel_skylib", version = "1.7.0")
1919
bazel_dep(
2020
name = "gazelle",
2121
version = "0.37.0",

examples/simple/MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ module(
44
)
55

66
bazel_dep(name = "cgrindel_bazel_starlib", version = "0.20.2")
7-
bazel_dep(name = "bazel_skylib", version = "1.6.1")
7+
bazel_dep(name = "bazel_skylib", version = "1.7.0")

examples/simple/mockascript/deps.bzl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ def mockascript_rules_dependencies():
77
maybe(
88
http_archive,
99
name = "bazel_skylib",
10-
sha256 = "9f38886a40548c6e96c106b752f242130ee11aaa068a56ba7e56f4511f33e4f2",
10+
sha256 = "d00f1389ee20b60018e92644e0948e16e350a7707219e7a390fb0a99b6ec9262",
1111
urls = [
12-
"https://mirror.bazel.build/github.com/bazelbuild/bazel-skylib/releases/download/1.6.1/bazel-skylib-1.6.1.tar.gz",
13-
"https://github.com/bazelbuild/bazel-skylib/releases/download/1.6.1/bazel-skylib-1.6.1.tar.gz",
12+
"https://mirror.bazel.build/github.com/bazelbuild/bazel-skylib/releases/download/1.7.0/bazel-skylib-1.7.0.tar.gz",
13+
"https://github.com/bazelbuild/bazel-skylib/releases/download/1.7.0/bazel-skylib-1.7.0.tar.gz",
1414
],
1515
)

0 commit comments

Comments
 (0)