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

fix(deps): update dependency execa to ^9.2.0 #372

Merged
merged 1 commit into from
Jun 10, 2024
Merged

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jun 10, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
execa ^9.1.0 -> ^9.2.0 age adoption passing confidence

Release Notes

sindresorhus/execa (execa)

v9.2.0

Compare Source

This release includes a new set of methods to exchange messages between the current process and a Node.js subprocess, also known as "IPC". This allows passing and returning almost any message type to/from a Node.js subprocess. Also, debugging IPC is now much easier.

Moreover, a new gracefulCancel option has also been added to terminate a subprocess gracefully.

For a deeper dive-in, please check and share the release post!

Thanks @​iiroj for your contribution, @​SimonSiefke and @​adymorz for reporting the bugs fixed in this release, and @​karlhorky for improving the documentation!

Deprecations
  • Passing 'ipc' to the stdio option has been deprecated. It will be removed in the next major release. Instead, the ipc: true option should be used. (#​1056)
- await execa('npm', ['run', 'build'], {stdio: ['pipe', 'pipe', 'pipe', 'ipc']});
+ await execa('npm', ['run', 'build'], {ipc: true});
- import {execaCommand} from 'execa';
+ import {execa} from 'execa';

- await execaCommand('npm run build');
+ await execa`npm run build`;

const taskName = 'build';
- await execaCommand(`npm run ${taskName}`);
+ await execa`npm run ${taskName}`;

const commandArguments = ['run', 'task with space'];
await execa`npm ${commandArguments}`;

If the file and/or multiple arguments are supplied as a single string, parseCommandString(command) can split that string into an array. More info. (#​1054)

- import {execaCommand} from 'execa';
+ import {execa, parseCommandString} from 'execa';

const commandString = 'npm run task';
- await execaCommand(commandString);
+ const commandArray = parseCommandString(commandString); // ['npm', 'run', 'task']
+ await execa`${commandArray}`;

// Or alternatively:
const [file, ...commandArguments] = commandArray;
await execa(file, commandArguments);
Features
Types
Bug fixes

Configuration

📅 Schedule: Branch creation - "after 6pm every weekday,every weekend" in timezone Australia/Sydney, Automerge - "after 6pm every weekday,every weekend" in timezone Australia/Sydney.

🚦 Automerge: Enabled.

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.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot enabled auto-merge (squash) June 10, 2024 10:15
@renovate renovate bot merged commit ea065e1 into main Jun 10, 2024
9 of 10 checks passed
@renovate renovate bot deleted the renovate/execa-9.x branch June 10, 2024 10:17
zeshuaro-bot bot pushed a commit that referenced this pull request Jun 16, 2024
## [0.8.17](v0.8.16...v0.8.17) (2024-06-16)

### Bug Fixes

* **deps:** update dependency execa to ^9.2.0 ([#372](#372)) ([ea065e1](ea065e1))
* **deps:** update dependency google-auth-library to ^9.11.0 ([#380](#380)) ([76c4565](76c4565))
* **deps:** update dependency yaml to ^2.4.5 ([#374](#374)) ([de12b9c](de12b9c))

### Miscellaneous Chores

* **deps:** update dependency eslint-plugin-n to v17.8.1 ([#371](#371)) ([1177e02](1177e02))
* **deps:** update dependency prettier to v3.3.2 ([#378](#378)) ([5f46ba6](5f46ba6))
* **deps:** update typescript-eslint monorepo to v7.13.0 ([#379](#379)) ([d6cb650](d6cb650))

### Continuous Integration

* **deps:** update codecov/codecov-action action to v4.5.0 ([#376](#376)) ([bf67ee1](bf67ee1))
* **deps:** update zeshuaro/github-actions-workflows digest to 214a3ef ([#375](#375)) ([a700536](a700536))
* **deps:** update zeshuaro/github-actions-workflows digest to 3e23531 ([#377](#377)) ([48523f5](48523f5))
* **deps:** update zeshuaro/github-actions-workflows digest to cc09c79 ([#373](#373)) ([d2c8594](d2c8594))
@zeshuaro-bot
Copy link

zeshuaro-bot bot commented Jun 16, 2024

🎉 This PR is included in version 0.8.17 🎉

The release is available on:

Your semantic-release bot 📦🚀

@github-actions github-actions bot locked as resolved and limited conversation to collaborators Jul 16, 2024
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants