bazel-contrib / rules_nodejs

NodeJS toolchain for Bazel.
https://bazelbuild.github.io/rules_nodejs/
Apache License 2.0
733 stars 523 forks source link

chore: update dependency aspect_bazel_lib to v2.9.1 #3789

Closed renovate[bot] closed 1 month ago

renovate[bot] commented 2 months ago

This PR contains the following updates:

Package Type Update Change
aspect_bazel_lib http_archive patch v2.9.0 -> v2.9.1

Release Notes

aspect-build/bazel-lib (aspect_bazel_lib) ### [`v2.9.1`](https://redirect.github.com/bazel-contrib/bazel-lib/releases/tag/v2.9.1) [Compare Source](https://redirect.github.com/aspect-build/bazel-lib/compare/v2.9.0...v2.9.1) #### Using Bzlmod with Bazel 6: 1. Enable with `common --enable_bzlmod` in `.bazelrc`. 2. Add to your `MODULE.bazel` file: ```starlark bazel_dep(name = "aspect_bazel_lib", version = "2.9.1") ``` > Read more about bzlmod: #### Using WORKSPACE Paste this snippet into your `WORKSPACE` file: ```starlark load("@​bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") http_archive( name = "aspect_bazel_lib", sha256 = "f93d386d8d0b0149031175e81df42a488be4267c3ca2249ba5321c23c60bc1f0", strip_prefix = "bazel-lib-2.9.1", url = "https://github.com/bazel-contrib/bazel-lib/releases/download/v2.9.1/bazel-lib-v2.9.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 - fix: declare host_platform as non-dev dep by [@​jbedard](https://redirect.github.com/jbedard) in [https://github.com/bazel-contrib/bazel-lib/pull/945](https://redirect.github.com/bazel-contrib/bazel-lib/pull/945) - fix(presets): restore build runfile links for the 'coverage' command by [@​alexeagle](https://redirect.github.com/alexeagle) in [https://github.com/bazel-contrib/bazel-lib/pull/943](https://redirect.github.com/bazel-contrib/bazel-lib/pull/943) **Full Changelog**: https://github.com/bazel-contrib/bazel-lib/compare/v2.9.0...v2.9.1

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 this update again.



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