fix: multi-entry bundle with environment variables
fix: use formatted short_path in copy progress messages
fix: display destination directory in copy_to_directory progress message
chore(deps): update dependency aspect_bazel_lib to v1.24.2 (#835)
This PR contains the following updates:
| Package | Type | Update | Change |
|---|---|---|---|
| aspect_bazel_lib | http_archive | patch | v1.24.0
-> v1.24.2
|
Warnings were logged while processing this repo. Please check the Dependency Dashboard for more information.
v1.24.2
v1.24.1
common --enable_bzlmod
in .bazelrc
.MODULE.bazel
file:bazel_dep(name = "aspect_bazel_lib", version = "1.24.1")
Read more about bzlmod: https://blog.aspect.dev/bzlmod
Paste this snippet into your file:
load("@​bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "aspect_bazel_lib",
sha256 = "5829c55a2400cdfbbdeeaf562bce947361d31c7cab13d56f12c34d781b6c0344",
strip_prefix = "bazel-lib-1.24.1",
url = "https://github.com/aspect-build/bazel-lib/releases/download/v1.24.1/bazel-lib-v1.24.1.tar.gz",
)
load("@​aspect_bazel_lib//lib:repositories.bzl", "aspect_bazel_lib_dependencies")
aspect_bazel_lib_dependencies()
Optional toolchains:
### Register the following toolchain to use jq
load("@​aspect_bazel_lib//lib:repositories.bzl", "register_jq_toolchains")
register_jq_toolchains()
### Register the following toolchain to use yq
load("@​aspect_bazel_lib//lib:repositories.bzl", "register_yq_toolchains")
register_yq_toolchains()
Full Changelog: https://github.com/aspect-build/bazel-lib/compare/v1.24.0...v1.24.1
📅 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 is behind base branch, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR has been generated by Mend Renovate. View repository job log here.
fix: use formatted short_path in copy progress messages
fix: display destination directory in copy_to_directory progress message
fixup! chore(deps): update bazel
fixup! chore(deps): update dependency tslib to v2.5.0
fix: transitive dependency type checking with transpiler (#299)
I'm seeing this at sourcegraph using a transpiler just like this. It seems to be when there is an indirect npm dependency? Or that's my guess at least, I haven't fully investigated that.
The test is the exact same as deps_lib
but using babel as the transpiler and fails without the fix.