Skip to content

Commit

Permalink
fix: upgrade bazel-lib to include run_binary param parsing fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jbedard committed Oct 17, 2024
1 parent 31bf0e3 commit 0cc7dc1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ module(

# Lower-bounds (minimum) versions for direct runtime dependencies.
# Do not bump these unless rules_js requires a newer version to function.
bazel_dep(name = "aspect_bazel_lib", version = "2.7.7")
bazel_dep(name = "aspect_bazel_lib", version = "2.8.1")
bazel_dep(name = "bazel_features", version = "1.9.0")
bazel_dep(name = "bazel_skylib", version = "1.5.0")
bazel_dep(name = "platforms", version = "0.0.5")
Expand Down
4 changes: 2 additions & 2 deletions js/private/test/js_binary_sh/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -162,11 +162,11 @@ build_test(
assert_contains(
name = "regexy-args-1",
actual = ":regexy-stdout",
expected = "--arg1='/{{[{]?(.*?)[}]?}}/'",
expected = "--arg1=/{{[{]?(.*?)[}]?}}/",
)

assert_contains(
name = "regexy-args-2",
actual = ":regexy-stdout",
expected = "--arg2='/{%(.*?)%}/'",
expected = "--arg2=/{%(.*?)%}/",
)

0 comments on commit 0cc7dc1

Please sign in to comment.