Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump zx from 8.3.2 to 8.4.0 in /bindings_node in the node-dev group #1726

Merged

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 10, 2025

Bumps the node-dev group in /bindings_node with 1 update: zx.

Updates zx from 8.3.2 to 8.4.0

Release notes

Sourced from zx's releases.

8.4.0 – Drip Detective

Try the new batch of enhancements: npm i zx@8.4.0 https://www.npmjs.com/package/zx/v/8.4.0

Changes

  • The CLI option --prefer-local now allows linking both external binaries and packages #1116 #1117
const cwd = tmpdir()
const external = tmpdir()
await fs.outputJson(path.join(external, 'node_modules/a/package.json'), {
  name: 'a',
  version: '1.0.0',
  type: 'module',
  exports: './index.js',
})
await fs.outputFile(
  path.join(external, 'node_modules/a/index.js'),
  `
export const a = 'AAA'
`
)
const script = `
import {a} from 'a'
console.log(a);
`
const out = await $`zx --cwd=${cwd} --prefer-local=${external} --test <<< ${script}`
assert.equal(out.stdout, 'AAA\n')
  • The quote has been slightly changed for a conner case, when zx literal gets an array. #999 #1113
const p = $({prefix: '', postfix: ''})`echo ${[1, '', '*', '2']}`
// before
p.cmd //  echo 1  $'*' 2)
// after
p.cmd //  echo 1 $'' $'*' 2)

  • Provided support for custom script extensions via CLI #1104 #1105
zx script.zx           # Unknown file extension "\.zx"
zx --ext=mjs script.zx # OK

... (truncated)

Commits
  • 3efc9eb chore: add prettier to pre-commit hook (#1118)
  • 539130a feat(cli): use --prefer-local option to link external `node_modules (#1117)
  • 778fd03 chore: bump to v8.4.0 (#1114)
  • eff2d70 fix: enhance quote to handle empty args (#1113)
  • f4b0328 refactor: use ts exts for relative paths (#1111)
  • a23261b feat: pass origin error as ProcessOuput cause (#1110)
  • b571839 docs: describe nothrow option (#1109)
  • 1ef794a refactor: let nothrow suppress any kind of errors (#1108)
  • b709f2b feat: define explicit primitive cast for ProcessPromise and ProcessOutput...
  • 5f48c73 ci: separate build and publish steps (#1106)
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the node-dev group in /bindings_node with 1 update: [zx](https://github.com/google/zx).


Updates `zx` from 8.3.2 to 8.4.0
- [Release notes](https://github.com/google/zx/releases)
- [Commits](google/zx@8.3.2...8.4.0)

---
updated-dependencies:
- dependency-name: zx
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: node-dev
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot requested a review from a team as a code owner March 10, 2025 02:16
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Mar 10, 2025
Copy link
Contributor

@insipx insipx left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@dependabot merge

@dependabot dependabot bot merged commit 0d522da into main Mar 10, 2025
7 checks passed
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/bindings_node/node-dev-f6167886a1 branch March 10, 2025 15:06
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant