Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented May 4, 2024

Note: This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Type Update Change
aspect_bazel_lib bazel_dep minor 2.6.1 -> 2.22.0
aspect_bazel_lib http_archive minor v2.5.3 -> v2.22.0

Release Notes

aspect-build/bazel-lib (aspect_bazel_lib)

v2.22.0

Compare Source

Using Bzlmod with Bazel 6:

  1. Enable with common --enable_bzlmod in .bazelrc.
  2. Add to your MODULE.bazel file:
bazel_dep(name = "aspect_bazel_lib", version = "2.22.0")

Read more about bzlmod: https://blog.aspect.dev/bzlmod

Using WORKSPACE

Paste this snippet into your WORKSPACE file:

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

http_archive(
    name = "aspect_bazel_lib",
    sha256 = "fc459ce72f198d3822cfaf8ddcd07f2afef71d356d1f0fe513bb1638c5094bbd",
    strip_prefix = "bazel-lib-2.22.0",
    url = "https://github.com/bazel-contrib/bazel-lib/releases/download/v2.22.0/bazel-lib-v2.22.0.tar.gz",
)

load("@​aspect_bazel_lib//lib:repositories.bzl", "aspect_bazel_lib_dependencies", "aspect_bazel_lib_register_toolchains")

# Required bazel-lib dependencies

aspect_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

aspect_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@v2.21.2...v2.22.0

v2.21.2

Compare Source

Using Bzlmod with Bazel 6:

  1. Enable with common --enable_bzlmod in .bazelrc.
  2. Add to your MODULE.bazel file:
bazel_dep(name = "aspect_bazel_lib", version = "2.21.2")

Read more about bzlmod: https://blog.aspect.dev/bzlmod

Using WORKSPACE

Paste this snippet into your WORKSPACE file:

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

http_archive(
    name = "aspect_bazel_lib",
    sha256 = "53cadea9109e646a93ed4dc90c9bbcaa8073c7c3df745b92f6a5000daf7aa3da",
    strip_prefix = "bazel-lib-2.21.2",
    url = "https://github.com/bazel-contrib/bazel-lib/releases/download/v2.21.2/bazel-lib-v2.21.2.tar.gz",
)

load("@​aspect_bazel_lib//lib:repositories.bzl", "aspect_bazel_lib_dependencies", "aspect_bazel_lib_register_toolchains")

# Required bazel-lib dependencies

aspect_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

aspect_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@v2.21.1...v2.21.2

v2.21.1

Compare Source

Using Bzlmod with Bazel 6:

  1. Enable with common --enable_bzlmod in .bazelrc.
  2. Add to your MODULE.bazel file:
bazel_dep(name = "aspect_bazel_lib", version = "2.21.1")

Read more about bzlmod: https://blog.aspect.dev/bzlmod

Using WORKSPACE

Paste this snippet into your WORKSPACE file:

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

http_archive(
    name = "aspect_bazel_lib",
    sha256 = "f525668442e4b19ae10d77e0b5ad15de5807025f321954dfb7065c0fe2429ec1",
    strip_prefix = "bazel-lib-2.21.1",
    url = "https://github.com/bazel-contrib/bazel-lib/releases/download/v2.21.1/bazel-lib-v2.21.1.tar.gz",
)

load("@​aspect_bazel_lib//lib:repositories.bzl", "aspect_bazel_lib_dependencies", "aspect_bazel_lib_register_toolchains")

# Required bazel-lib dependencies

aspect_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

aspect_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@v2.21.0...v2.21.1

v2.21.0

Compare Source

Using Bzlmod with Bazel 6:

  1. Enable with common --enable_bzlmod in .bazelrc.
  2. Add to your MODULE.bazel file:
bazel_dep(name = "aspect_bazel_lib", version = "2.21.0")

Read more about bzlmod: https://blog.aspect.dev/bzlmod

Using WORKSPACE

Paste this snippet into your WORKSPACE file:

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

http_archive(
    name = "aspect_bazel_lib",
    sha256 = "6d636cfdecc7f5c1a5d82b9790fb5d5d5e8aa6ea8b53a71a75f1ba53c8d29f61",
    strip_prefix = "bazel-lib-2.21.0",
    url = "https://github.com/bazel-contrib/bazel-lib/releases/download/v2.21.0/bazel-lib-v2.21.0.tar.gz",
)

load("@​aspect_bazel_lib//lib:repositories.bzl", "aspect_bazel_lib_dependencies", "aspect_bazel_lib_register_toolchains")

# Required bazel-lib dependencies

aspect_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

aspect_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@v2.20.0...v2.21.0

v2.20.0

Compare Source

Using Bzlmod with Bazel 6:

  1. Enable with common --enable_bzlmod in .bazelrc.
  2. Add to your MODULE.bazel file:
bazel_dep(name = "aspect_bazel_lib", version = "2.20.0")

Read more about bzlmod: https://blog.aspect.dev/bzlmod

Using WORKSPACE

Paste this snippet into your WORKSPACE file:

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

http_archive(
    name = "aspect_bazel_lib",
    sha256 = "3522895fa13b97e8b27e3b642045682aa4233ae1a6b278aad6a3b483501dc9f2",
    strip_prefix = "bazel-lib-2.20.0",
    url = "https://github.com/bazel-contrib/bazel-lib/releases/download/v2.20.0/bazel-lib-v2.20.0.tar.gz",
)

load("@​aspect_bazel_lib//lib:repositories.bzl", "aspect_bazel_lib_dependencies", "aspect_bazel_lib_register_toolchains")

# Required bazel-lib dependencies

aspect_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

aspect_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@v2.19.4...v2.20.0

v2.19.4

Compare Source

Using Bzlmod with Bazel 6:

  1. Enable with common --enable_bzlmod in .bazelrc.
  2. Add to your MODULE.bazel file:
bazel_dep(name = "aspect_bazel_lib", version = "2.19.4")

Read more about bzlmod: https://blog.aspect.dev/bzlmod

Using WORKSPACE

Paste this snippet into your WORKSPACE file:

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

http_archive(
    name = "aspect_bazel_lib",
    sha256 = "9a44f457810ce64ec36a244cc7c807607541ab88f2535e07e0bf2976ef4b73fe",
    strip_prefix = "bazel-lib-2.19.4",
    url = "https://github.com/bazel-contrib/bazel-lib/releases/download/v2.19.4/bazel-lib-v2.19.4.tar.gz",
)

load("@​aspect_bazel_lib//lib:repositories.bzl", "aspect_bazel_lib_dependencies", "aspect_bazel_lib_register_toolchains")

# Required bazel-lib dependencies

aspect_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

aspect_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@v2.19.3...v2.19.4

v2.19.3

Compare Source

Using Bzlmod with Bazel 6:

  1. Enable with common --enable_bzlmod in .bazelrc.
  2. Add to your MODULE.bazel file:
bazel_dep(name = "aspect_bazel_lib", version = "2.19.3")

Read more about bzlmod: https://blog.aspect.dev/bzlmod

Using WORKSPACE

Paste this snippet into your WORKSPACE file:

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

http_archive(
    name = "aspect_bazel_lib",
    sha256 = "db7da732db4dece80cd6d368220930950c9306ff356ebba46498fe64e65a3945",
    strip_prefix = "bazel-lib-2.19.3",
    url = "https://github.com/bazel-contrib/bazel-lib/releases/download/v2.19.3/bazel-lib-v2.19.3.tar.gz",
)

load("@​aspect_bazel_lib//lib:repositories.bzl", "aspect_bazel_lib_dependencies", "aspect_bazel_lib_register_toolchains")

# Required bazel-lib dependencies

aspect_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

aspect_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@v2.19.2...v2.19.3

v2.19.2

Compare Source

Using Bzlmod with Bazel 6:

  1. Enable with common --enable_bzlmod in .bazelrc.
  2. Add to your MODULE.bazel file:
bazel_dep(name = "aspect_bazel_lib", version = "2.19.2")

Read more about bzlmod: https://blog.aspect.dev/bzlmod

Using WORKSPACE

Paste this snippet into your WORKSPACE file:

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

http_archive(
    name = "aspect_bazel_lib",
    sha256 = "8eb77bd902814bb1a0feb26f5ba5f7444ac18c55359845f5aee30f82f1599a6e",
    strip_prefix = "bazel-lib-2.19.2",
    url = "https://github.com/bazel-contrib/bazel-lib/releases/download/v2.19.2/bazel-lib-v2.19.2.tar.gz",
)

load("@​aspect_bazel_lib//lib:repositories.bzl", "aspect_bazel_lib_dependencies", "aspect_bazel_lib_register_toolchains")

# Required bazel-lib dependencies

aspect_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

aspect_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@v2.19.1...v2.19.2

v2.19.1

Compare Source

Using Bzlmod with Bazel 6:

  1. Enable with common --enable_bzlmod in .bazelrc.
  2. Add to your MODULE.bazel file:
bazel_dep(name = "aspect_bazel_lib", version = "2.19.1")

Read more about bzlmod: https://blog.aspect.dev/bzlmod

Using WORKSPACE

Paste this snippet into your WORKSPACE file:

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

http_archive(
    name = "aspect_bazel_lib",
    sha256 = "63ae96db9b9ea3821320e4274352980387dc3218baeea0387f7cf738755d0f16",
    strip_prefix = "bazel-lib-2.19.1",
    url = "https://github.com/bazel-contrib/bazel-lib/releases/download/v2.19.1/bazel-lib-v2.19.1.tar.gz",
)

load("@​aspect_bazel_lib//lib:repositories.bzl", "aspect_bazel_lib_dependencies", "aspect_bazel_lib_register_toolchains")

# Required bazel-lib dependencies

aspect_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

aspect_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@v2.17.1...v2.19.1

v2.17.1

Compare Source

Using Bzlmod with Bazel 6:

  1. Enable with common --enable_bzlmod in .bazelrc.
  2. Add to your MODULE.bazel file:
bazel_dep(name = "aspect_bazel_lib", version = "2.17.1")

Read more about bzlmod: https://blog.aspect.dev/bzlmod

Using WORKSPACE

Paste this snippet into your WORKSPACE file:

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

http_archive(
    name = "aspect_bazel_lib",
    sha256 = "e5131e44db23459bd1ed04635f2ae5436bc83f5e38629e07b75c0bf206f09245",
    strip_prefix = "bazel-lib-2.17.1",
    url = "https://github.com/bazel-contrib/bazel-lib/releases/download/v2.17.1/bazel-lib-v2.17.1.tar.gz",
)

load("@​aspect_bazel_lib//lib:repositories.bzl", "aspect_bazel_lib_dependencies", "aspect_bazel_lib_register_toolchains")

# Required bazel-lib dependencies

aspect_bazel_lib_dependencies()

# Register bazel-lib toolchains

aspect_bazel_lib_register_toolchains()

What's Changed

Full Changelog: bazel-contrib/bazel-lib@v2.17.0...v2.17.1

v2.17.0

Compare Source

Do not use, inadvertent breaking change

rules_js fails with a missing public API symbol:

ERROR: Traceback (most recent call last):
	File "/home/runner/.bazel/external/aspect_rules_js+/js/private/js_image_layer.bzl", line 16, column 41, in <toplevel>
		load("@&#8203;aspect_bazel_lib//lib:tar.bzl", "tar_lib")
Error: file '@&#8203;aspect_bazel_lib//lib:tar.bzl' does not contain symbol 'tar_lib'

v2.16.0

Compare Source

Using Bzlmod with Bazel 6:

  1. Enable with common --enable_bzlmod in .bazelrc.
  2. Add to your MODULE.bazel file:
bazel_dep(name = "aspect_bazel_lib", version = "2.16.0")

Read more about bzlmod: https://blog.aspect.dev/bzlmod

Using WORKSPACE

Paste this snippet into your WORKSPACE file:

load("@&#8203;bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")

http_archive(
    name = "aspect_bazel_lib",
    sha256 = "fc8fe1be58ae39f84a8613d554534760c7f0819d407afcc98bbcbd990523bfed",
    strip_prefix = "bazel-lib-2.16.0",
    url = "https://github.com/bazel-contrib/bazel-lib/releases/download/v2.16.0/bazel-lib-v2.16.0.tar.gz",
)

load("@&#8203;aspect_bazel_lib//lib:repositories.bzl", "aspect_bazel_lib_dependencies", "aspect_bazel_lib_register_toolchains")

# Required bazel-lib dependencies

aspect_bazel_lib_dependencies()

# Register bazel-lib toolchains

aspect_bazel_lib_register_toolchains()

What's Changed

New Contributors

Full Changelog: bazel-contrib/bazel-lib@v2.15.3...v2.16.0

v2.15.3

Compare Source

Using Bzlmod with Bazel 6:

  1. Enable with common --enable_bzlmod in .bazelrc.
  2. Add to your MODULE.bazel file:
bazel_dep(name = "aspect_bazel_lib", version = "2.15.3")

Read more about bzlmod: https://blog.aspect.dev/bzlmod

Using WORKSPACE

Paste this snippet into your WORKSPACE file:

load("@&#8203;bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")

http_archive(
    name = "aspect_bazel_lib",
    sha256 = "2be8a5df0b20b0ed37604b050da01dbf7ad45ad44768c0d478b64779b9f58412",
    strip_prefix = "bazel-lib-2.15.3",
    url = "https://github.com/bazel-contrib/bazel-lib/releases/download/v2.15.3/bazel-lib-v2.15.3.tar.gz",
)

load("@&#8203;aspect_bazel_lib//lib:repositories.bzl", "aspect_bazel_lib_dependencies", "aspect_bazel_lib_register_toolchains")

### Required bazel-lib dependencies

aspect_bazel_lib_dependencies()

### Register bazel-lib toolchains

aspect_bazel_lib_register_toolchains()

What's Changed

New Contributors

Full Changelog: bazel-contrib/bazel-lib@v2.14.0...v2.15.3

v2.15.2

Compare Source

Broken release; do not use

v2.15.1

Compare Source

Broken release; do not use

v2.15.0

Compare Source

Broken release; do not use

v2.14.0

Compare Source

Using Bzlmod with Bazel 6:

  1. Enable with common --enable_bzlmod in .bazelrc.
  2. Add to your MODULE.bazel file:
bazel_dep(name = "aspect_bazel_lib", version = "2.14.0")

Read more about bzlmod: https://blog.aspect.dev/bzlmod

Using WORKSPACE

Paste this snippet into your WORKSPACE file:

load("@&#8203;bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")

http_archive(
    name = "aspect_bazel_lib",
    sha256 = "40ba9d0f62deac87195723f0f891a9803a7b720d7b89206981ca5570ef9df15b",
    strip_prefix = "bazel-lib-2.14.0",
    url = "https://github.com/bazel-contrib/bazel-lib/releases/download/v2.14.0/bazel-lib-v2.14.0.tar.gz",
)

load("@&#8203;aspect_bazel_lib//lib:repositories.bzl", "aspect_bazel_lib_dependencies", "aspect_bazel_lib_register_toolchains")

### Required bazel-lib dependencies

aspect_bazel_lib_dependencies()

### Register bazel-lib toolchains

aspect_bazel_lib_register_toolchains()

What's Changed

New Contributors

Full Changelog: bazel-contrib/bazel-lib@v2.13.0...v2.14.0

v2.13.0

Compare Source

Using Bzlmod with Bazel 6:

  1. Enable with common --enable_bzlmod in .bazelrc.
  2. Add to your MODULE.bazel file:
bazel_dep(name = "aspect_bazel_lib", version = "2.13.0")

Read more about bzlmod: https://blog.aspect.dev/bzlmod

Using WORKSPACE

Paste this snippet into your WORKSPACE file:

load("@&#8203;bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")

http_archive(
    name = "aspect_bazel_lib",
    sha256 = "57a777c5d4d0b79ad675995ee20fc1d6d2514a1ef3000d98f5c70cf0c09458a3",
    strip_prefix = "bazel-lib-2.13.0",
    url = "https://github.com/bazel-contrib/bazel-lib/releases/download/v2.13.0/bazel-lib-v2.13.0.tar.gz",
)

load("@&#8203;aspect_bazel_lib//lib:repositories.bzl", "aspect_bazel_lib_dependencies", "aspect_bazel_lib_register_toolchains")

### Required bazel-lib dependencies

aspect_bazel_lib_dependencies()

### Register bazel-lib toolchains

aspect_bazel_lib_register_toolchains()

What's Changed

New Contributors

Full Changelog: bazel-contrib/bazel-lib@v2.12.0...v2.13.0

v2.12.0

Compare Source

Using Bzlmod with Bazel 6:

  1. Enable with common --enable_bzlmod in .bazelrc.
  2. Add to your MODULE.bazel file:
bazel_dep(name = "aspect_bazel_lib", version = "2.12.0")

Read more about bzlmod: https://blog.aspect.dev/bzlmod

Using WORKSPACE

Paste this snippet into your WORKSPACE file:

load("@&#8203;bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")

http_archive(
    name = "aspect_bazel_lib",
    sha256 = "73bbffa96b4470692e74800c1c8b09d2ed2a9015fe78246efab8f7614c933250",
    strip_prefix = "bazel-lib-2.12.0",
    url = "https://github.com/bazel-contrib/bazel-lib/releases/download/v2.12.0/bazel-lib-v2.12.0.tar.gz",
)

load("@&#8203;aspect_bazel_lib//lib:repositories.bzl", "aspect_bazel_lib_dependencies", "aspect_bazel_lib_register_toolchains")

### Required bazel-lib dependencies

aspect_bazel_lib_dependencies()

### Register bazel-lib toolchains

aspect_bazel_lib_register_toolchains()

What's Changed

Full Changelog: bazel-contrib/bazel-lib@v2.11.0...v2.12.0

v2.11.0

Compare Source

Using Bzlmod with Bazel 6:

  1. Enable with common --enable_bzlmod in .bazelrc.
  2. Add to your MODULE.bazel file:
bazel_dep(name = "aspect_bazel_lib", version = "2.11.0")

Read more about bzlmod: https://blog.aspect.dev/bzlmod

Using WORKSPACE

Paste this snippet into your WORKSPACE file:

load("@&#8203;bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")

http_archive(
    name = "aspect_bazel_lib",
    sha256 = "c96db69dd2714a37f3298338a1a42b27e3a2696c3b36dd4441b9bf7a1a12bee0",
    strip_prefix = "bazel-lib-2.11.0",
    url = "https://github.com/bazel-contrib/bazel-lib/releases/download/v2.11.0/bazel-lib-v2.11.0.tar.gz",
)

load("@&#8203;aspect_bazel_lib//lib:repositories.bzl", "aspect_bazel_lib_dependencies", "aspect_bazel_lib_register_toolchains")

### Required bazel-lib dependencies

aspect_bazel_lib_dependencies()

### Register bazel-lib toolchains

aspect_bazel_lib_register_toolchains()

What's Changed

Full Changelog: bazel-contrib/bazel-lib@v2.10.0...v2.11.0

v2.10.0

Compare Source

Using Bzlmod with Bazel 6:

  1. Enable with common --enable_bzlmod in .bazelrc.
  2. Add to your MODULE.bazel file:
bazel_dep(name = "aspect_bazel_lib", version = "2.10.0")

Read more about bzlmod: https://blog.aspect.dev/bzlmod

Using WORKSPACE

Paste this snippet into your WORKSPACE file:

load("@&#8203;bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")

http_archive(
    name = "aspect_bazel_lib",
    sha256 = "7b39d9f38b82260a8151b18dd4a6219d2d7fc4a0ac313d4f5a630ae6907d205d",
    strip_prefix = "bazel-lib-2.10.0",
    url = "https://github.com/bazel-contrib/bazel-lib/releases/download/v2.10.0/bazel-lib-v2.10.0.tar.gz",
)

load("@&#8203;aspect_bazel_lib//lib:repositories.bzl", "aspect_bazel_lib_dependencies", "aspect_bazel_lib_register_toolchains")

### Required bazel-lib dependencies

aspect_bazel_lib_dependencies()

### Register bazel-lib toolchains

aspect_bazel_lib_register_toolchains()

What's Changed

New Contributors

Full Changelog: bazel-contrib/bazel-lib@v2.9.4...v2.10.0

v2.9.4

Compare Source

Using Bzlmod with Bazel 6:

  1. Enable with common --enable_bzlmod in .bazelrc.
  2. Add to your MODULE.bazel file:
bazel_dep(name = "aspect_bazel_lib", version = "2.9.4")

Read more about bzlmod: https://blog.aspect.dev/bzlmod

Using WORKSPACE

Paste this snippet into your WORKSPACE file:

load("@&#8203;bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")

http_archive(
    name = "aspect_bazel_lib",
    sha256 = "349aabd3c2b96caeda6181eb0ae1f14f2a1d9f3cd3c8b05d57f709ceb12e9fb3",
    strip_prefix = "bazel-lib-2.9.4",
    url = "https://github.com/bazel-contrib/bazel-lib/releases/download/v2.9.4/bazel-lib-v2.9.4.tar.gz",
)

load("@&#8203;aspect_bazel_lib//lib:repositories.bzl", "aspect_bazel_lib_dependencies", "aspect_bazel_lib_register_toolchains")

### Required bazel-lib dependencies

aspect_bazel_lib_dependencies()

### Register bazel-lib toolchains

aspect_bazel_lib_register_toolchains()

What's Changed

Full Changelog: bazel-contrib/bazel-lib@v2.9.3...v2.9.4

v2.9.3

Compare Source

Using Bzlmod with Bazel 6:

  1. Enable with common --enable_bzlmod in .bazelrc.
  2. Add to your MODULE.bazel file:
bazel_dep(name = "aspect_bazel_lib", version = "2.9.3")

Read more about bzlmod: https://blog.aspect.dev/bzlmod

Using WORKSPACE

Paste this snippet into your WORKSPACE file:

load("@&#8203;bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")

http_archive(
    name = "aspect_bazel_lib",
    sha256 = "a272d79bb0ac6b6965aa199b1f84333413452e87f043b53eca7f347a23a478e8",
    strip_prefix = "bazel-lib-2.9.3",
    url = "https://github.com/bazel-contrib/bazel-lib/releases/download/v2.9.3/bazel-lib-v2.9.3.tar.gz",
)

load("@&#8203;aspect_bazel_lib//lib:repositories.bzl", "aspect_bazel_lib_dependencies", "aspect_bazel_lib_register_toolchains")

### Required bazel-lib dependencies

aspect_bazel_lib_dependencies()

### Register bazel-lib toolchains

aspect_bazel_lib_register_toolchains()

What's Changed

Full Changelog: bazel-contrib/bazel-lib@v2.9.2...v2.9.3

v2.9.2

Compare Source

Using Bzlmod with Bazel 6:

  1. Enable with common --enable_bzlmod in .bazelrc.
  2. Add to your MODULE.bazel file:
bazel_dep(name = "aspect_bazel_lib", version = "2.9.2")

Read more about bzlmod: https://blog.aspect.dev/bzlmod

Using WORKSPACE

Paste this snippet into your WORKSPACE file:

load("@&#8203;bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")

http_archive(
    name = "aspect_bazel_lib",
    sha256 = "0e31778f1fd574d2c05d238bfc4c785fa4b7e50a5ef38b506e01cfd8ec2fccb3",
    strip_prefix = "bazel-lib-2.9.2",
    url = "https://github.com/bazel-contrib/bazel-lib/releases/download/v2.9.2/bazel-lib-v2.9.2.tar.gz",
)

load("@&#8203;aspect_bazel_lib//lib:repositories.bzl", "aspect_bazel_lib_dependencies", "aspect_bazel_lib_register_toolchains")

### Required bazel-lib dependencies

aspect_bazel_lib_dependencies()

### Register bazel-lib toolchains

aspect_bazel_lib_register_toolchains()

What's Changed

New Contributors


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), 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/aspect_bazel_lib-2.x branch from 68bf0e6 to 69d89df Compare May 4, 2024 03:28
@renovate renovate bot changed the title chore(deps): update dependency aspect_bazel_lib chore(deps): update dependency aspect_bazel_lib to v2.7.2 May 4, 2024
@renovate renovate bot force-pushed the renovate/aspect_bazel_lib-2.x branch from 69d89df to d965956 Compare May 8, 2024 17:32
@renovate renovate bot changed the title chore(deps): update dependency aspect_bazel_lib to v2.7.2 chore(deps): update dependency aspect_bazel_lib May 8, 2024
@renovate renovate bot force-pushed the renovate/aspect_bazel_lib-2.x branch from d965956 to fa78018 Compare May 8, 2024 22:59
@renovate renovate bot changed the title chore(deps): update dependency aspect_bazel_lib chore(deps): update dependency aspect_bazel_lib to v2.7.3 May 8, 2024
@renovate renovate bot force-pushed the renovate/aspect_bazel_lib-2.x branch from fa78018 to 1dc6a6b Compare May 23, 2024 21:45
@renovate renovate bot changed the title chore(deps): update dependency aspect_bazel_lib to v2.7.3 chore(deps): update dependency aspect_bazel_lib May 23, 2024
@renovate renovate bot force-pushed the renovate/aspect_bazel_lib-2.x branch from 1dc6a6b to 86c1a02 Compare May 24, 2024 02:01
@renovate renovate bot changed the title chore(deps): update dependency aspect_bazel_lib chore(deps): update dependency aspect_bazel_lib to v2.7.6 May 24, 2024
@renovate renovate bot force-pushed the renovate/aspect_bazel_lib-2.x branch from 86c1a02 to 4f8a969 Compare May 28, 2024 20:21
@renovate renovate bot changed the title chore(deps): update dependency aspect_bazel_lib to v2.7.6 chore(deps): update dependency aspect_bazel_lib to v2.7.7 May 28, 2024
@renovate renovate bot force-pushed the renovate/aspect_bazel_lib-2.x branch from 4f8a969 to aec9122 Compare June 21, 2024 22:52
@renovate renovate bot changed the title chore(deps): update dependency aspect_bazel_lib to v2.7.7 chore(deps): update dependency aspect_bazel_lib to v2.7.8 Jun 21, 2024
@renovate renovate bot force-pushed the renovate/aspect_bazel_lib-2.x branch from aec9122 to f0f8a1f Compare July 20, 2024 06:21
@renovate renovate bot changed the title chore(deps): update dependency aspect_bazel_lib to v2.7.8 chore(deps): update dependency aspect_bazel_lib to v2.7.9 Jul 20, 2024
@renovate renovate bot force-pushed the renovate/aspect_bazel_lib-2.x branch from f0f8a1f to a8fd969 Compare August 14, 2024 21:16
@renovate renovate bot changed the title chore(deps): update dependency aspect_bazel_lib to v2.7.9 chore(deps): update dependency aspect_bazel_lib to v2.8.0 Aug 14, 2024
@renovate renovate bot force-pushed the renovate/aspect_bazel_lib-2.x branch from a8fd969 to 31b59e5 Compare August 19, 2024 22:54
@renovate renovate bot changed the title chore(deps): update dependency aspect_bazel_lib to v2.8.0 chore(deps): update dependency aspect_bazel_lib to v2.8.1 Aug 19, 2024
@renovate renovate bot force-pushed the renovate/aspect_bazel_lib-2.x branch from 31b59e5 to 084c86f Compare September 19, 2024 04:40
@renovate renovate bot changed the title chore(deps): update dependency aspect_bazel_lib to v2.8.1 chore(deps): update dependency aspect_bazel_lib Sep 19, 2024
@renovate renovate bot force-pushed the renovate/aspect_bazel_lib-2.x branch from 084c86f to 67e0055 Compare September 19, 2024 17:21
@renovate renovate bot changed the title chore(deps): update dependency aspect_bazel_lib chore(deps): update dependency aspect_bazel_lib to v2.9.0 Sep 19, 2024
@renovate renovate bot force-pushed the renovate/aspect_bazel_lib-2.x branch from 67e0055 to 5da0d4a Compare September 26, 2024 16:33
@renovate renovate bot changed the title chore(deps): update dependency aspect_bazel_lib to v2.9.0 chore(deps): update dependency aspect_bazel_lib Sep 26, 2024
@renovate renovate bot force-pushed the renovate/aspect_bazel_lib-2.x branch from 5da0d4a to 302dfa3 Compare September 26, 2024 22:10
@renovate renovate bot changed the title chore(deps): update dependency aspect_bazel_lib chore(deps): update dependency aspect_bazel_lib to v2.9.1 Sep 26, 2024
@renovate renovate bot force-pushed the renovate/aspect_bazel_lib-2.x branch from 302dfa3 to d9f7806 Compare October 16, 2024 00:14
@renovate renovate bot changed the title chore(deps): update dependency aspect_bazel_lib to v2.9.1 chore(deps): update dependency aspect_bazel_lib to v2.9.2 Oct 16, 2024
@renovate renovate bot force-pushed the renovate/aspect_bazel_lib-2.x branch from 5748936 to 58d0769 Compare June 14, 2025 16:41
@renovate renovate bot changed the title chore(deps): update dependency aspect_bazel_lib to v2.19.2 chore(deps): update dependency aspect_bazel_lib Jun 14, 2025
@renovate renovate bot force-pushed the renovate/aspect_bazel_lib-2.x branch from 58d0769 to c47e524 Compare June 15, 2025 14:01
@renovate renovate bot changed the title chore(deps): update dependency aspect_bazel_lib chore(deps): update dependency aspect_bazel_lib to v2.19.3 Jun 15, 2025
@renovate renovate bot force-pushed the renovate/aspect_bazel_lib-2.x branch from c47e524 to 75366d4 Compare June 17, 2025 18:52
@renovate renovate bot changed the title chore(deps): update dependency aspect_bazel_lib to v2.19.3 chore(deps): update dependency aspect_bazel_lib Jun 17, 2025
@renovate renovate bot force-pushed the renovate/aspect_bazel_lib-2.x branch from 75366d4 to ef15a04 Compare June 17, 2025 23:42
@renovate renovate bot changed the title chore(deps): update dependency aspect_bazel_lib chore(deps): update dependency aspect_bazel_lib to v2.19.4 Jun 17, 2025
@renovate renovate bot force-pushed the renovate/aspect_bazel_lib-2.x branch from ef15a04 to 0f00e2f Compare July 16, 2025 21:25
@renovate renovate bot changed the title chore(deps): update dependency aspect_bazel_lib to v2.19.4 chore(deps): update dependency aspect_bazel_lib to v2.20.0 Jul 16, 2025
@renovate renovate bot force-pushed the renovate/aspect_bazel_lib-2.x branch 2 times, most recently from 9e79bf5 to dbb995d Compare August 13, 2025 16:26
@renovate renovate bot force-pushed the renovate/aspect_bazel_lib-2.x branch 2 times, most recently from 09fa8a8 to 0b78ef2 Compare August 17, 2025 18:21
@renovate renovate bot changed the title chore(deps): update dependency aspect_bazel_lib to v2.20.0 chore(deps): update dependency aspect_bazel_lib Aug 17, 2025
@renovate renovate bot force-pushed the renovate/aspect_bazel_lib-2.x branch from 0b78ef2 to 886a3dd Compare August 18, 2025 21:41
@renovate renovate bot changed the title chore(deps): update dependency aspect_bazel_lib chore(deps): update dependency aspect_bazel_lib to v2.21.0 Aug 18, 2025
@renovate renovate bot force-pushed the renovate/aspect_bazel_lib-2.x branch from 886a3dd to e3b082b Compare August 22, 2025 02:59
@renovate renovate bot changed the title chore(deps): update dependency aspect_bazel_lib to v2.21.0 chore(deps): update dependency aspect_bazel_lib Aug 22, 2025
@renovate renovate bot force-pushed the renovate/aspect_bazel_lib-2.x branch from e3b082b to 95ff91c Compare August 22, 2025 17:26
@renovate renovate bot changed the title chore(deps): update dependency aspect_bazel_lib chore(deps): update dependency aspect_bazel_lib to v2.21.1 Aug 22, 2025
@renovate renovate bot force-pushed the renovate/aspect_bazel_lib-2.x branch from 95ff91c to 5fad938 Compare September 17, 2025 17:55
@renovate renovate bot changed the title chore(deps): update dependency aspect_bazel_lib to v2.21.1 chore(deps): update dependency aspect_bazel_lib Sep 17, 2025
@aspect-workflows
Copy link

aspect-workflows bot commented Sep 17, 2025

Test (Bazel 7.x) (Test)

⚠️ Buildkite build #75 failed.

//examples/cli:tarball failed to build

tarball.sh failed: error executing OCITarball command (from target //examples/cli:tarball) bazel-out/k8-fastbuild/bin/examples/cli/tarball/tarball.sh
 
Use --sandbox_debug to see verbose messages from the sandbox and retain the sandbox build root for debugging
 
Format docker is only supported for oci_image targets but saw "application/vnd.oci.image.manifest.v1+json"

//examples/python_lambda:tarball failed to build

tarball.sh failed: error executing OCITarball command (from target //examples/python_lambda:tarball) bazel-out/k8-fastbuild/bin/examples/python_lambda/tarball/tarball.sh
 
Use --sandbox_debug to see verbose messages from the sandbox and retain the sandbox build root for debugging
 
Format docker is only supported for oci_image targets but saw "application/vnd.docker.distribution.manifest.v2+json"

💡 To reproduce the build failures, run

bazel build //examples/cli:tarball //examples/python_lambda:tarball

Test (Bazel 8.x) (Test)

⚠️ Buildkite build #75 failed.

//examples/cli:tarball failed to build

tarball.sh failed: error executing OCITarball command (from target //examples/cli:tarball) bazel-out/k8-fastbuild/bin/examples/cli/tarball/tarball.sh
 
Use --sandbox_debug to see verbose messages from the sandbox and retain the sandbox build root for debugging
 
Format docker is only supported for oci_image targets but saw "application/vnd.oci.image.manifest.v1+json"

//examples/python_lambda:tarball failed to build

tarball.sh failed: error executing OCITarball command (from target //examples/python_lambda:tarball) bazel-out/k8-fastbuild/bin/examples/python_lambda/tarball/tarball.sh
 
Use --sandbox_debug to see verbose messages from the sandbox and retain the sandbox build root for debugging
 
Format docker is only supported for oci_image targets but saw "application/vnd.docker.distribution.manifest.v2+json"

💡 To reproduce the build failures, run

bazel build //examples/cli:tarball //examples/python_lambda:tarball

Test (Bazel 6.x) (Test)

e2e/smoke

All tests were cache hits

1 test (100.0%) was fully cached saving 37ms.


Test (Bazel 7.x) (Test)

e2e/smoke

All tests were cache hits

1 test (100.0%) was fully cached saving 32ms.


Test (Bazel 8.x) (Test)

e2e/smoke

All tests were cache hits

1 test (100.0%) was fully cached saving 63ms.

@renovate renovate bot force-pushed the renovate/aspect_bazel_lib-2.x branch from 5fad938 to e4e14e0 Compare September 22, 2025 20:51
@renovate renovate bot changed the title chore(deps): update dependency aspect_bazel_lib chore(deps): update dependency aspect_bazel_lib to v2.21.2 Sep 22, 2025
@renovate renovate bot force-pushed the renovate/aspect_bazel_lib-2.x branch from e4e14e0 to 3555524 Compare October 9, 2025 11:08
@renovate renovate bot force-pushed the renovate/aspect_bazel_lib-2.x branch from 3555524 to 0476c8b Compare December 5, 2025 03:05
@renovate renovate bot changed the title chore(deps): update dependency aspect_bazel_lib to v2.21.2 chore(deps): update dependency aspect_bazel_lib to v2.22.0 Dec 5, 2025
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.

1 participant