Skip to content

Commit 51cb608

Browse files
cgrindel-self-hosted-renovate[bot]Self-hosted Renovate Botcgrindel
authored
chore(deps): update dependency bazel_skylib to v1.7.1 (#1127)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | bazel_skylib | bazel_dep | minor | `1.6.1` -> `1.7.1` | | bazel_skylib | bazel_dep | minor | `1.5.0` -> `1.7.1` | | [bazel_skylib](https://togithub.com/bazelbuild/bazel-skylib) | http_archive | minor | `1.6.1` -> `1.7.1` | --- ### Release Notes <details> <summary>bazelbuild/bazel-skylib (bazel_skylib)</summary> ### [`v1.7.1`](https://togithub.com/bazelbuild/bazel-skylib/blob/HEAD/CHANGELOG.md#Release-171) [Compare Source](https://togithub.com/bazelbuild/bazel-skylib/compare/1.7.0...1.7.1) **What's Changed** - Fix distribution tarballs to include directory rules. ([https://github.com/bazelbuild/bazel-skylib/pull/520](https://togithub.com/bazelbuild/bazel-skylib/pull/520)) **Full Changelog**: bazelbuild/bazel-skylib@1.7.0...1.7.1 ### [`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. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://togithub.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://togithub.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNi4xMDkuNCIsInVwZGF0ZWRJblZlciI6IjM2LjEwOS40IiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9--> --------- Co-authored-by: Self-hosted Renovate Bot <361546+cgrindel-self-hosted-renovate[bot]@users.noreply.github.enterprise.com> Co-authored-by: Chuck Grindel <[email protected]>
1 parent acdf727 commit 51cb608

File tree

24 files changed

+26
-26
lines changed

24 files changed

+26
-26
lines changed

bzlmod/workspace/MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ local_path_override(
88
)
99

1010
bazel_dep(name = "cgrindel_bazel_starlib", version = "0.20.2")
11-
bazel_dep(name = "bazel_skylib", version = "1.6.1")
11+
bazel_dep(name = "bazel_skylib", version = "1.7.1")
1212

1313
# The apple_support bazel_dep must come before the rules_cc.
1414
# https://github.com/bazelbuild/apple_support#incompatible-toolchain-resolution

deps.bzl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ def swift_bazel_dependencies():
1010
maybe(
1111
http_archive,
1212
name = "bazel_skylib",
13-
sha256 = "9f38886a40548c6e96c106b752f242130ee11aaa068a56ba7e56f4511f33e4f2",
13+
sha256 = "bc283cdfcd526a52c3201279cda4bc298652efa898b10b4db0837dc51652756f",
1414
urls = [
15-
"https://mirror.bazel.build/github.com/bazelbuild/bazel-skylib/releases/download/1.6.1/bazel-skylib-1.6.1.tar.gz",
16-
"https://github.com/bazelbuild/bazel-skylib/releases/download/1.6.1/bazel-skylib-1.6.1.tar.gz",
15+
"https://mirror.bazel.build/github.com/bazelbuild/bazel-skylib/releases/download/1.7.1/bazel-skylib-1.7.1.tar.gz",
16+
"https://github.com/bazelbuild/bazel-skylib/releases/download/1.7.1/bazel-skylib-1.7.1.tar.gz",
1717
],
1818
)
1919

examples/firebase_example/MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ local_path_override(
88
)
99

1010
bazel_dep(name = "cgrindel_bazel_starlib", version = "0.20.2")
11-
bazel_dep(name = "bazel_skylib", version = "1.6.1")
11+
bazel_dep(name = "bazel_skylib", version = "1.7.1")
1212

1313
# The apple_support bazel_dep must come before the rules_cc.
1414
# https://github.com/bazelbuild/apple_support#incompatible-toolchain-resolution

examples/google_maps_example/MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ local_path_override(
88
)
99

1010
bazel_dep(name = "cgrindel_bazel_starlib", version = "0.20.2")
11-
bazel_dep(name = "bazel_skylib", version = "1.5.0")
11+
bazel_dep(name = "bazel_skylib", version = "1.7.1")
1212
bazel_dep(name = "apple_support", version = "1.15.1")
1313
bazel_dep(
1414
name = "rules_swift",

examples/grpc_example/MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ local_path_override(
1212
)
1313

1414
bazel_dep(name = "cgrindel_bazel_starlib", version = "0.20.2")
15-
bazel_dep(name = "bazel_skylib", version = "1.6.1")
15+
bazel_dep(name = "bazel_skylib", version = "1.7.1")
1616

1717
# The apple_support bazel_dep must come before the rules_cc.
1818
# https://github.com/bazelbuild/apple_support#incompatible-toolchain-resolution

examples/grpc_package_example/MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ local_path_override(
1212
)
1313

1414
bazel_dep(name = "cgrindel_bazel_starlib", version = "0.20.2")
15-
bazel_dep(name = "bazel_skylib", version = "1.6.1")
15+
bazel_dep(name = "bazel_skylib", version = "1.7.1")
1616

1717
# The apple_support bazel_dep must come before the rules_cc.
1818
# https://github.com/bazelbuild/apple_support#incompatible-toolchain-resolution

examples/interesting_deps/MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ local_path_override(
1313
)
1414

1515
bazel_dep(name = "cgrindel_bazel_starlib", version = "0.20.2")
16-
bazel_dep(name = "bazel_skylib", version = "1.6.1")
16+
bazel_dep(name = "bazel_skylib", version = "1.7.1")
1717

1818
# The apple_support bazel_dep must come before the rules_cc.
1919
# https://github.com/bazelbuild/apple_support#incompatible-toolchain-resolution

examples/ios_sim/MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ local_path_override(
88
)
99

1010
bazel_dep(name = "cgrindel_bazel_starlib", version = "0.20.2")
11-
bazel_dep(name = "bazel_skylib", version = "1.6.1")
11+
bazel_dep(name = "bazel_skylib", version = "1.7.1")
1212

1313
# The apple_support bazel_dep must come before the rules_cc.
1414
# https://github.com/bazelbuild/apple_support#incompatible-toolchain-resolution

examples/lottie_ios_example/MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ local_path_override(
88
)
99

1010
bazel_dep(name = "cgrindel_bazel_starlib", version = "0.20.2")
11-
bazel_dep(name = "bazel_skylib", version = "1.6.1")
11+
bazel_dep(name = "bazel_skylib", version = "1.7.1")
1212
bazel_dep(name = "apple_support", version = "1.15.1")
1313
bazel_dep(
1414
name = "rules_swift",

examples/messagekit_example/MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ local_path_override(
88
)
99

1010
bazel_dep(name = "cgrindel_bazel_starlib", version = "0.20.2")
11-
bazel_dep(name = "bazel_skylib", version = "1.6.1")
11+
bazel_dep(name = "bazel_skylib", version = "1.7.1")
1212
bazel_dep(name = "apple_support", version = "1.15.1")
1313
bazel_dep(
1414
name = "rules_swift",

0 commit comments

Comments
 (0)