chore: update dependency bazel_lib to v3.0.1 (#3882)

This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [bazel_lib](https://redirect.github.com/bazel-contrib/bazel-lib) |
http_archive | patch | `v3.0.0-beta.1` -> `v3.0.1` |

---

### Release Notes

<details>
<summary>bazel-contrib/bazel-lib (bazel_lib)</summary>

###
[`v3.0.1`](https://redirect.github.com/bazel-contrib/bazel-lib/releases/tag/v3.0.1)

[Compare
Source](https://redirect.github.com/bazel-contrib/bazel-lib/compare/v3.0.0...v3.0.1)

#### Using Bzlmod

Add to your `MODULE.bazel` file:

```starlark
bazel_dep(name = "bazel_lib", version = "3.0.1")
```

#### Using WORKSPACE (deprecated)

Paste this snippet into your `WORKSPACE` file:

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

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

load("@&#8203;bazel_lib//lib:repositories.bzl", "bazel_lib_dependencies", "bazel_lib_register_toolchains")

# Required bazel-lib dependencies

bazel_lib_dependencies()

# Required rules_shell dependencies
load("@&#8203;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("@&#8203;bazel_tools//tools/build_defs/repo:utils.bzl", "maybe")
load("@&#8203;platforms//host:extension.bzl", "host_platform_repo")

maybe(
    host_platform_repo,
    name = "host_platform",
)
```

#### What's Changed

- chore(deps): Bazel 9 is RC now by
[@&#8203;alexeagle](https://redirect.github.com/alexeagle) in
[#&#8203;1207](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1207)
- fix: build for bazel 9 by
[@&#8203;hofbi](https://redirect.github.com/hofbi) in
[#&#8203;1215](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1215)
- chore: Remove version from local bazel\_dep by
[@&#8203;hofbi](https://redirect.github.com/hofbi) in
[#&#8203;1214](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1214)
- chore: Consistent file naming for conventional commits and release by
[@&#8203;hofbi](https://redirect.github.com/hofbi) in
[#&#8203;1213](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1213)

**Full Changelog**:
<https://github.com/bazel-contrib/bazel-lib/compare/v3.0.0...v3.0.1>

</details>

---

### 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.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/bazel-contrib/rules_nodejs).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi4xOS45IiwidXBkYXRlZEluVmVyIjoiNDIuMTkuOSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 file changed
tree: 0d8349849af0e41e2eda278c5eead0c00f39cf3e
  1. .aspect/
  2. .bazelci/
  3. .bcr/
  4. .github/
  5. .vscode/
  6. docs/
  7. e2e/
  8. external/
  9. internal/
  10. nodejs/
  11. packages/
  12. scripts/
  13. tools/
  14. .bazelignore
  15. .bazelrc
  16. .bazelversion
  17. .clang-format
  18. .git-blame-ignore-revs
  19. .gitignore
  20. .npmrc
  21. .pre-commit-config.yaml
  22. .prettierignore
  23. AUTHORS
  24. BUILD.bazel
  25. CHANGELOG.md
  26. CODE_OF_CONDUCT.md
  27. commitlint.config.js
  28. CONTRIBUTING.md
  29. CONTRIBUTORS
  30. DEVELOPING.md
  31. LICENSE
  32. MODULE.bazel
  33. package.json
  34. pnpm-lock.yaml
  35. README.md
  36. renovate.json
  37. repositories.bzl
  38. WORKSPACE
README.md

JavaScript rules for Bazel

Build status GitHub release (latest by date)

This ruleset provides a Node.js development toolchain and runtime with Bazel. It does not have any rules for using Node.js, such as nodejs_binary. For that, we recommend rules_js.

This repository is maintained by volunteers in the Bazel community. Neither Google, nor the Bazel team, provides support for the code. However, this repository is part of the test suite used to vet new Bazel releases.

We follow semantic versioning. Patch releases have bugfixes, minor releases have new features. Only major releases (1.x, 2.x) have breaking changes. We support LTS releases of Bazel (starting at 4.x), see SUPPORTED_BAZEL_VERSIONS in our /index.bzl for the list we test against.

6.0 Scope Reduction

This branch is the latest release, 6.x.x It has a greatly reduced scope from previous releases, as most of the code was unmaintained. See the 5.x branch for the prior state of the repo.

Documentation

See the docs/ folder, and generated API docs on https://registry.bazel.build/docs/rules_nodejs