Skip to content

Update dependency bazel_lib to v3.7.1 - #430

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/bazel_lib-3.x
Open

Update dependency bazel_lib to v3.7.1#430
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/bazel_lib-3.x

Conversation

@renovate

@renovate renovate Bot commented May 4, 2026

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Type Update Change
bazel_lib bazel_dep minor 3.2.23.7.1
bazel_lib http_archive minor v3.2.2v3.7.1

Release Notes

bazel-contrib/bazel-lib (bazel_lib)

v3.7.1

Compare Source

Using Bzlmod

Add to your MODULE.bazel file:

bazel_dep(name = "bazel_lib", version = "3.7.1")

Using WORKSPACE (deprecated)

Paste this snippet into your WORKSPACE file:

load("@​bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")

http_archive(
    name = "bazel_lib",
    sha256 = "10f232c10df1ba5cbbbfbcde947090463348f0344d4153e25371b13ee3daf0ce",
    strip_prefix = "bazel-lib-3.7.1",
    url = "https://github.com/bazel-contrib/bazel-lib/releases/download/v3.7.1/bazel-lib-v3.7.1.tar.gz",
)

load("@​bazel_lib//lib:repositories.bzl", "bazel_lib_dependencies", "bazel_lib_register_toolchains")

# Required bazel-lib dependencies

bazel_lib_dependencies()

# Required rules_shell dependencies
load("@​rules_shell//shell:repositories.bzl", "rules_shell_dependencies", "rules_shell_toolchains")

rules_shell_dependencies()

rules_shell_toolchains()

# Register bazel-lib toolchains

bazel_lib_register_toolchains()

# Create the host platform repository transitively required by bazel-lib

load("@​bazel_tools//tools/build_defs/repo:utils.bzl", "maybe")
load("@​platforms//host:extension.bzl", "host_platform_repo")

maybe(
    host_platform_repo,
    name = "host_platform",
)

What's Changed

Full Changelog: bazel-contrib/bazel-lib@v3.7.0...v3.7.1

v3.7.0

Compare Source

Using Bzlmod

Add to your MODULE.bazel file:

bazel_dep(name = "bazel_lib", version = "3.7.0")

Using WORKSPACE (deprecated)

Paste this snippet into your WORKSPACE file:

load("@​bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")

http_archive(
    name = "bazel_lib",
    sha256 = "ea1ac844b6ff7cfebd7403e7c48aff3702052a044d1b89f9a9c3587eb10a560a",
    strip_prefix = "bazel-lib-3.7.0",
    url = "https://github.com/bazel-contrib/bazel-lib/releases/download/v3.7.0/bazel-lib-v3.7.0.tar.gz",
)

load("@​bazel_lib//lib:repositories.bzl", "bazel_lib_dependencies", "bazel_lib_register_toolchains")

# Required bazel-lib dependencies

bazel_lib_dependencies()

# Required rules_shell dependencies
load("@​rules_shell//shell:repositories.bzl", "rules_shell_dependencies", "rules_shell_toolchains")

rules_shell_dependencies()

rules_shell_toolchains()

# Register bazel-lib toolchains

bazel_lib_register_toolchains()

# Create the host platform repository transitively required by bazel-lib

load("@​bazel_tools//tools/build_defs/repo:utils.bzl", "maybe")
load("@​platforms//host:extension.bzl", "host_platform_repo")

maybe(
    host_platform_repo,
    name = "host_platform",
)

What's Changed

New Contributors

Full Changelog: bazel-contrib/bazel-lib@v3.6.0...v3.7.0

v3.6.0

Compare Source

Using Bzlmod

Add to your MODULE.bazel file:

bazel_dep(name = "bazel_lib", version = "3.6.0")

Using WORKSPACE (deprecated)

Paste this snippet into your WORKSPACE file:

load("@​bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")

http_archive(
    name = "bazel_lib",
    sha256 = "8f74b1fe0ca5ddc09e3d58132824fad43e13e4e07fc3fa328c6a69a677bab2a4",
    strip_prefix = "bazel-lib-3.6.0",
    url = "https://github.com/bazel-contrib/bazel-lib/releases/download/v3.6.0/bazel-lib-v3.6.0.tar.gz",
)

load("@​bazel_lib//lib:repositories.bzl", "bazel_lib_dependencies", "bazel_lib_register_toolchains")

# Required bazel-lib dependencies

bazel_lib_dependencies()

# Required rules_shell dependencies
load("@​rules_shell//shell:repositories.bzl", "rules_shell_dependencies", "rules_shell_toolchains")

rules_shell_dependencies()

rules_shell_toolchains()

# Register bazel-lib toolchains

bazel_lib_register_toolchains()

# Create the host platform repository transitively required by bazel-lib

load("@​bazel_tools//tools/build_defs/repo:utils.bzl", "maybe")
load("@​platforms//host:extension.bzl", "host_platform_repo")

maybe(
    host_platform_repo,
    name = "host_platform",
)

What's Changed

New Contributors

Full Changelog: bazel-contrib/bazel-lib@v3.5.0...v3.6.0

v3.5.0

Compare Source

Using Bzlmod

Add to your MODULE.bazel file:

bazel_dep(name = "bazel_lib", version = "3.5.0")

Using WORKSPACE (deprecated)

Paste this snippet into your WORKSPACE file:

load("@​bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")

http_archive(
    name = "bazel_lib",
    sha256 = "77f4af7eb3b7573dafa8afab9058ee0d9696209a8b8096ac77646a42d12d0e48",
    strip_prefix = "bazel-lib-3.5.0",
    url = "https://github.com/bazel-contrib/bazel-lib/releases/download/v3.5.0/bazel-lib-v3.5.0.tar.gz",
)

load("@​bazel_lib//lib:repositories.bzl", "bazel_lib_dependencies", "bazel_lib_register_toolchains")

# Required bazel-lib dependencies

bazel_lib_dependencies()

# Required rules_shell dependencies
load("@​rules_shell//shell:repositories.bzl", "rules_shell_dependencies", "rules_shell_toolchains")

rules_shell_dependencies()

rules_shell_toolchains()

# Register bazel-lib toolchains

bazel_lib_register_toolchains()

# Create the host platform repository transitively required by bazel-lib

load("@​bazel_tools//tools/build_defs/repo:utils.bzl", "maybe")
load("@​platforms//host:extension.bzl", "host_platform_repo")

maybe(
    host_platform_repo,
    name = "host_platform",
)

What's Changed

New Contributors

Full Changelog: bazel-contrib/bazel-lib@v3.4.0...v3.5.0

v3.4.0

Compare Source

Using Bzlmod

Add to your MODULE.bazel file:

bazel_dep(name = "bazel_lib", version = "3.4.0")

Using WORKSPACE (deprecated)

Paste this snippet into your WORKSPACE file:

load("@​bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")

http_archive(
    name = "bazel_lib",
    sha256 = "3f4abcf708b83ca040cb6b36fa5f8871d60f136b5f7d3c697b6da3343b9ec1da",
    strip_prefix = "bazel-lib-3.4.0",
    url = "https://github.com/bazel-contrib/bazel-lib/releases/download/v3.4.0/bazel-lib-v3.4.0.tar.gz",
)

load("@​bazel_lib//lib:repositories.bzl", "bazel_lib_dependencies", "bazel_lib_register_toolchains")

# Required bazel-lib dependencies

bazel_lib_dependencies()

# Required rules_shell dependencies
load("@​rules_shell//shell:repositories.bzl", "rules_shell_dependencies", "rules_shell_toolchains")

rules_shell_dependencies()

rules_shell_toolchains()

# Register bazel-lib toolchains

bazel_lib_register_toolchains()

# Create the host platform repository transitively required by bazel-lib

load("@​bazel_tools//tools/build_defs/repo:utils.bzl", "maybe")
load("@​platforms//host:extension.bzl", "host_platform_repo")

maybe(
    host_platform_repo,
    name = "host_platform",
)

What's Changed

New Contributors

Full Changelog: bazel-contrib/bazel-lib@v3.3.1...v3.4.0

v3.3.1

Compare Source

Using Bzlmod

Add to your MODULE.bazel file:

bazel_dep(name = "bazel_lib", version = "3.3.1")

Using WORKSPACE (deprecated)

Paste this snippet into your WORKSPACE file:

load("@​bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")

http_archive(
    name = "bazel_lib",
    sha256 = "c6e2be1c7a30ef6de9d0e15cd3a4b6bc62fe156848117c0a1eeedf97561a4f6b",
    strip_prefix = "bazel-lib-3.3.1",
    url = "https://github.com/bazel-contrib/bazel-lib/releases/download/v3.3.1/bazel-lib-v3.3.1.tar.gz",
)

load("@​bazel_lib//lib:repositories.bzl", "bazel_lib_dependencies", "bazel_lib_register_toolchains")

# Required bazel-lib dependencies

bazel_lib_dependencies()

# Required rules_shell dependencies
load("@​rules_shell//shell:repositories.bzl", "rules_shell_dependencies", "rules_shell_toolchains")

rules_shell_dependencies()

rules_shell_toolchains()

# Register bazel-lib toolchains

bazel_lib_register_toolchains()

# Create the host platform repository transitively required by bazel-lib

load("@​bazel_tools//tools/build_defs/repo:utils.bzl", "maybe")
load("@​platforms//host:extension.bzl", "host_platform_repo")

maybe(
    host_platform_repo,
    name = "host_platform",
)

What's Changed

Full Changelog: bazel-contrib/bazel-lib@v3.3.0...v3.3.1

v3.3.0

Compare Source

Using Bzlmod

Add to your MODULE.bazel file:

bazel_dep(name = "bazel_lib", version = "3.3.0")

Using WORKSPACE (deprecated)

Paste this snippet into your WORKSPACE file:

load("@​bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")

http_archive(
    name = "bazel_lib",
    sha256 = "9950250e6af0ca82051ee4c2ad4e66b128cbc82037a5dead15c1bed3929587df",
    strip_prefix = "bazel-lib-3.3.0",
    url = "https://github.com/bazel-contrib/bazel-lib/releases/download/v3.3.0/bazel-lib-v3.3.0.tar.gz",
)

load("@​bazel_lib//lib:repositories.bzl", "bazel_lib_dependencies", "bazel_lib_register_toolchains")

# Required bazel-lib dependencies

bazel_lib_dependencies()

# Required rules_shell dependencies
load("@​rules_shell//shell:repositories.bzl", "rules_shell_dependencies", "rules_shell_toolchains")

rules_shell_dependencies()

rules_shell_toolchains()

# Register bazel-lib toolchains

bazel_lib_register_toolchains()

# Create the host platform repository transitively required by bazel-lib

load("@​bazel_tools//tools/build_defs/repo:utils.bzl", "maybe")
load("@​platforms//host:extension.bzl", "host_platform_repo")

maybe(
    host_platform_repo,
    name = "host_platform",
)

What's Changed

New Contributors

Full Changelog: bazel-contrib/bazel-lib@v3.2.2...v3.3.0


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • Between 12:00 AM and 03:59 AM, only on Monday (* 0-3 * * 1)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

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


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate
renovate Bot force-pushed the renovate/bazel_lib-3.x branch from af9043c to dfdb7f3 Compare June 29, 2026 23:03
@renovate renovate Bot changed the title Update dependency bazel_lib to v3.3.1 Update dependency bazel_lib to v3.4.0 Jun 29, 2026
@renovate
renovate Bot force-pushed the renovate/bazel_lib-3.x branch from dfdb7f3 to d391776 Compare July 8, 2026 21:09
@renovate renovate Bot changed the title Update dependency bazel_lib to v3.4.0 Update dependency bazel_lib Jul 8, 2026
@renovate
renovate Bot force-pushed the renovate/bazel_lib-3.x branch from d391776 to 49b6ee7 Compare July 9, 2026 23:00
@renovate renovate Bot changed the title Update dependency bazel_lib Update dependency bazel_lib to v3.5.0 Jul 9, 2026
@renovate
renovate Bot force-pushed the renovate/bazel_lib-3.x branch 5 times, most recently from b4d6e1f to 9cfb632 Compare July 17, 2026 18:57
@renovate renovate Bot changed the title Update dependency bazel_lib to v3.5.0 Update dependency bazel_lib Jul 17, 2026
@renovate
renovate Bot force-pushed the renovate/bazel_lib-3.x branch 2 times, most recently from 3963b8c to a0f50c8 Compare July 31, 2026 21:49
@renovate renovate Bot changed the title Update dependency bazel_lib Update dependency bazel_lib to v3.7.0 Jul 31, 2026
@renovate
renovate Bot force-pushed the renovate/bazel_lib-3.x branch 3 times, most recently from e5dfec0 to dca27da Compare August 2, 2026 15:09
@renovate renovate Bot changed the title Update dependency bazel_lib to v3.7.0 Update dependency bazel_lib Aug 2, 2026
@renovate
renovate Bot force-pushed the renovate/bazel_lib-3.x branch from dca27da to e23512a Compare August 2, 2026 21:03
@renovate renovate Bot changed the title Update dependency bazel_lib Update dependency bazel_lib to v3.7.1 Aug 2, 2026
@renovate
renovate Bot force-pushed the renovate/bazel_lib-3.x branch from e23512a to bdf4871 Compare August 28, 2026 11:03
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants