chore: release#290
Merged
Merged
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
c9f075a to
ca1cf25
Compare
9349c48 to
af2e0f4
Compare
cramforce
approved these changes
Jul 8, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.
Releases
just-bash@3.1.0
Minor Changes
#284
af2e0f4Thanks @arimxyer! - sandbox: forward capability flags fromSandboxOptionsinto the underlyingBashSandbox.create(opts)previously constructed its internalBashwith only a subsetof
BashOptions, silently dropping the optional capability flags (python,javascript,commands,customCommands,fetch). A host that drives just-bashthrough the
SandboxAPI (rather thannew Bash(...)) therefore could not enablepython3, js-exec, a restricted command set, custom commands, or a custom fetch — even
though the runtimes ship in the package.
SandboxOptionsnow exposes those fields andSandbox.createforwards them into theBashit builds. Behavior is unchanged when a caller omits them (each falls back toits existing
BashOptionsdefault — Python/js-exec stay off, the full command setstays available). Fixes the root cause behind justbash() backend can't enable just-bash's bundled Python (capability passthrough) vercel/eve#431.
Patch Changes
#268
7a5a0b9Thanks @trieloff! - jq: allow nested double-quoted strings inside"\(...)"string interpolationjq string interpolation of the form
"\(...)"that contained a nested double-quoted string — for example"\(sub("T.*";""))"or"\(ltrimstr("ab"))"— previously failed with a parse error. The tokenizer terminated the outer string at the first"it saw inside the interpolation expression, so the rest of the expression became orphaned tokens.The lexer now tracks
\(...)depth while consuming a string literal and treats nested"..."pairs as opaque content while inside an interpolation, restoring them verbatim into the captured interpolation source.parseStringInterpolationsimilarly skips over nested strings when balancing parentheses, so the interpolation expression is captured as a whole and handed to the expression parser intact.@just-bash/executor@2.0.0
Patch Changes
7a5a0b9,af2e0f4]:executor-tools-example@1.0.6
Patch Changes
7a5a0b9,af2e0f4]: