Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 7010148

Browse filesBrowse files
authored
chore(deps): upgrade some dependencies that will eventually be required by Bazel 8 (bazel-contrib#2383)
This upgrades some module dependencies to versions that will be needed in order to support Bazel 8. More upgrades will be necessary, but these are some easy ones that don't cause compatibility issues. * skylib 1.7.1 * (dev) rules_shell 0.3.0 * (dev) rules_bazel_integration_test 0.26.1 Work towards bazel-contrib#2378
1 parent 772b1cc commit 7010148
Copy full SHA for 7010148

File tree

Expand file treeCollapse file tree

6 files changed

+14
-16
lines changed
Filter options
Expand file treeCollapse file tree

6 files changed

+14
-16
lines changed

‎CHANGELOG.md

Copy file name to clipboardExpand all lines: CHANGELOG.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ A brief description of the categories of changes:
2727

2828
{#v0-0-0-changed}
2929
### Changed
30-
* Nothing yet
30+
* (deps) bazel_skylib 1.6.1 -> 1.7.1
3131

3232
{#v0-0-0-fixed}
3333
### Fixed

‎MODULE.bazel

Copy file name to clipboardExpand all lines: MODULE.bazel
+3-3Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ module(
55
)
66

77
bazel_dep(name = "bazel_features", version = "1.9.1")
8-
bazel_dep(name = "bazel_skylib", version = "1.6.1")
8+
bazel_dep(name = "bazel_skylib", version = "1.7.1")
99
bazel_dep(name = "rules_cc", version = "0.0.9")
1010
bazel_dep(name = "platforms", version = "0.0.4")
1111

@@ -74,9 +74,9 @@ use_repo(pip, "rules_python_publish_deps")
7474
bazel_dep(name = "stardoc", version = "0.6.2", repo_name = "io_bazel_stardoc")
7575

7676
# ===== DEV ONLY DEPS AND SETUP BELOW HERE =====
77-
bazel_dep(name = "rules_bazel_integration_test", version = "0.20.0", dev_dependency = True)
77+
bazel_dep(name = "rules_bazel_integration_test", version = "0.26.1", dev_dependency = True)
7878
bazel_dep(name = "rules_testing", version = "0.6.0", dev_dependency = True)
79-
bazel_dep(name = "rules_shell", version = "0.2.0", dev_dependency = True)
79+
bazel_dep(name = "rules_shell", version = "0.3.0", dev_dependency = True)
8080
bazel_dep(name = "rules_multirun", version = "0.9.0", dev_dependency = True)
8181
bazel_dep(name = "bazel_ci_rules", version = "1.0.0", dev_dependency = True)
8282

‎examples/bzlmod/MODULE.bazel

Copy file name to clipboardExpand all lines: examples/bzlmod/MODULE.bazel
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ module(
44
compatibility_level = 1,
55
)
66

7-
bazel_dep(name = "bazel_skylib", version = "1.4.1")
7+
bazel_dep(name = "bazel_skylib", version = "1.7.1")
88
bazel_dep(name = "rules_python", version = "0.0.0")
99
local_path_override(
1010
module_name = "rules_python",
@@ -266,4 +266,4 @@ local_path_override(
266266
)
267267

268268
# example test dependencies
269-
bazel_dep(name = "rules_shell", version = "0.2.0", dev_dependency = True)
269+
bazel_dep(name = "rules_shell", version = "0.3.0", dev_dependency = True)

‎examples/bzlmod/MODULE.bazel.lock

Copy file name to clipboardExpand all lines: examples/bzlmod/MODULE.bazel.lock
+4-3Lines changed: 4 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎examples/multi_python_versions/MODULE.bazel

Copy file name to clipboardExpand all lines: examples/multi_python_versions/MODULE.bazel
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module(
22
name = "multi_python_versions",
33
)
44

5-
bazel_dep(name = "bazel_skylib", version = "1.4.0")
5+
bazel_dep(name = "bazel_skylib", version = "1.7.1")
66
bazel_dep(name = "rules_python", version = "0.0.0")
77
local_path_override(
88
module_name = "rules_python",

‎internal_deps.bzl

Copy file name to clipboardExpand all lines: internal_deps.bzl
+3-6Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,15 +34,12 @@ def http_file(name, **kwargs):
3434
def rules_python_internal_deps():
3535
"""Fetches all required dependencies for rules_python tests and tools."""
3636

37-
# This version is also used in python/tests/toolchains/workspace_template/WORKSPACE.tmpl
38-
# and tests/ignore_root_user_error/WORKSPACE.
39-
# If you update this dependency, please update the tests as well.
4037
http_archive(
4138
name = "bazel_skylib",
42-
sha256 = "c6966ec828da198c5d9adbaa94c05e3a1c7f21bd012a0b29ba8ddbccb2c93b0d",
39+
sha256 = "bc283cdfcd526a52c3201279cda4bc298652efa898b10b4db0837dc51652756f",
4340
urls = [
44-
"https://github.com/bazelbuild/bazel-skylib/releases/download/1.1.1/bazel-skylib-1.1.1.tar.gz",
45-
"https://mirror.bazel.build/github.com/bazelbuild/bazel-skylib/releases/download/1.1.1/bazel-skylib-1.1.1.tar.gz",
41+
"https://mirror.bazel.build/github.com/bazelbuild/bazel-skylib/releases/download/1.7.1/bazel-skylib-1.7.1.tar.gz",
42+
"https://github.com/bazelbuild/bazel-skylib/releases/download/1.7.1/bazel-skylib-1.7.1.tar.gz",
4643
],
4744
)
4845

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.