This repository was archived by the owner on Aug 29, 2025. It is now read-only.
chore(deps): update all dependencies (major) #715
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 contains the following updates:
v2
->v5
v4
->v5
8.3.0
->10.0.0
v3
->v5
5.3.0
->9.2.1
7.32.0
->9.34.0
14.2.1
->15.0.0
7.2.0
->10.1.8
26.6.3
->30.1.1
^3.0.2
->^10.0.0
22
->24
~= 2.17
->~=3.2
8.3.1
->11.0.1
2.8.3
->3.6.2
13.13.1
->16.23.1
8.0.2
->9.0.5
20.0.0
->39.0.0
4.1.0
->7.0.0
22.04
->24.04
jammy
->noble
jammy
->noble
4.10.0
->6.0.1
Release Notes
actions/checkout (actions/checkout)
v5
Compare Source
v4
Compare Source
url-helper.ts
now leverages well-known environment variables by @jww3 in https://github.com/actions/checkout/pull/1941isGhes
by @jww3 in https://github.com/actions/checkout/pull/1946v3
Compare Source
babel/babel-loader (babel-loader)
v10.0.0
Compare Source
What's Changed
Breaking Changes
^18.20.0 || ^20.10.0 || >=22.0.0
and webpack requirement to>= 5.61.0
by @JLHwung in #1026New Features
Bug Fixes
Docs
cacheIdentifier
is computed from the merged options by @JLHwung in #1000Dependencies
find-cache-dir
byfind-up
by @JLHwung in #1031Internal
New Contributors
Full Changelog: babel/babel-loader@v9.1.3...v10.0.0
v9.2.1
Compare Source
What's Changed
Full Changelog: babel/babel-loader@v9.2.0...v9.2.1
v9.2.0
Compare Source
What's Changed
cacheIdentifier
is computed from the merged options by @JLHwung in https://github.com/babel/babel-loader/pull/1000Full Changelog: babel/babel-loader@v9.1.3...v9.2.0
v9.1.3
Compare Source
Security dependency updates
New Contributors
Full Changelog: babel/babel-loader@v9.1.2...v9.1.3
v9.1.2
Compare Source
9.1.1 was a broken release, it didn't include all the commits.
Dependencies updates
Misc
New Contributors
Full Changelog: babel/babel-loader@v9.1.0...v9.1.2
v9.1.1
Compare Source
v9.1.0
Compare Source
New features
Full Changelog: babel/babel-loader@v9.0.1...v9.1.0
v9.0.1
Compare Source
Bug Fixes
Full Changelog: babel/babel-loader@v9.0.0...v9.0.1
v9.0.0
Compare Source
What's Changed
New Contributors
Full Changelog: babel/babel-loader@v8.2.5...v9.0.0
v8.4.1
Compare Source
What's Changed
Full Changelog: babel/babel-loader@v8.4.0...v8.4.1
v8.4.0
Compare Source
What's Changed
New Contributors
Full Changelog: babel/babel-loader@v8.3.0...v8.4.0
codecov/codecov-action (codecov/codecov-action)
v5
Compare Source
What's Changed
Full Changelog: https://github.com/codecov/codecov-action/compare/v5.4.3..v5.5.0
v4
Compare Source
What's Changed
versionInfo
by @marcobiedermann in #1407evenName
in the logs correctly by @webknjaz in #1560open-cli-tools/concurrently (concurrently)
v9.2.1
Compare Source
What's Changed
Full Changelog: open-cli-tools/concurrently@v9.2.0...v9.2.1
v9.2.0
Compare Source
What's Changed
--kill-timeout
by @gustavohenke in https://github.com/open-cli-tools/concurrently/pull/540New Contributors
Full Changelog: open-cli-tools/concurrently@v9.1.2...v9.2.0
v9.1.2
Compare Source
What's Changed
New Contributors
Full Changelog: open-cli-tools/concurrently@v9.1.1...v9.1.2
v9.1.1
Compare Source
What's Changed
Full Changelog: open-cli-tools/concurrently@v9.1.0...v9.1.1
v9.1.0
Compare Source
What's Changed
New Contributors
Full Changelog: open-cli-tools/concurrently@v9.0.1...v9.1.0
v9.0.1
Compare Source
What's Changed
Full Changelog: open-cli-tools/concurrently@v9.0.0...v9.0.1
v9.0.0
Compare Source
💥 Breaking Changes
Dropped support for Node.js < 18.0.0.
Older Node.js version have reached end-of-life, and certain features require new-ish JS APIs.
Pending commands no longer run when
--max-processes
is set and an interruption/kill signal is sent - #433, #452, #460Before v9.0.0, pressing Ctrl+C when
--max-processes
is set meant that only those commands would receive it. Once these stopped, the pending commands would start, which in turn meant that another Ctrl+C press would be necessary to stop them, and so on.Similar situation applied to combining
--max-processes
with--kill-others
/--kill-others-on-fail
.Starting with v9.0.0, this no longer happens, as these flags and/or key presses send a signal to stop the running commands in addition to preventing new commands from running.
The
concurrently
and default exports are now the same - #399It's reasonable to expect that
import { concurrently } from 'concurrently'
would work the same asimport concurrently from 'concurrently'
, however this has not been the case.The former used to be an unconfigured version of concurrently, lacking all features that you'd get from the CLI, which was seen as a "footgun". Both are now the same function.
If you'd like to access the unconfigured function, use
import { createConcurrently } from 'concurrently'
instead.✨ New Features
Use
--restart-after exponential
. Restarts happen at2^N
seconds.--pad-prefix
flag - #166, #417, #495--teardown
flag - #472, #500node:<script>
commands tonode --run <script>
- #475state
field toCommand
- #455🐛 Bug Fixes
Configuration
📅 Schedule: Branch creation - "on the first day of january" (UTC), 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.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR was generated by Mend Renovate. View the repository job log.