fix(deps): update external fixes - #585
Open
renovate[bot] wants to merge 1 commit into
Open
Conversation
|
This PR will trigger a patch release when merged. |
Codecov Report✅ All modified and coverable lines are covered by tests. 📢 Thoughts on this report? Let us know! |
renovate
Bot
force-pushed
the
renovate-external-fixes
branch
from
August 3, 2025 18:58
b6c4069 to
6a82bf8
Compare
renovate
Bot
force-pushed
the
renovate-external-fixes
branch
3 times, most recently
from
August 12, 2025 14:50
d72ce20 to
37cab0b
Compare
renovate
Bot
force-pushed
the
renovate-external-fixes
branch
from
August 19, 2025 11:52
37cab0b to
f67ccc9
Compare
renovate
Bot
force-pushed
the
renovate-external-fixes
branch
3 times, most recently
from
August 16, 2026 19:38
2a8d09c to
0eefc63
Compare
renovate
Bot
force-pushed
the
renovate-external-fixes
branch
from
August 19, 2026 10:12
0eefc63 to
1b09e50
Compare
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 contains the following updates:
11.0.0→11.0.111.3.0→11.4.017.0.4→17.3.011.7.1→11.8.00.5.2→0.5.325.0.3→25.0.90.7.4→0.8.0Release Notes
semantic-release/git (@semantic-release/git)
v11.0.1Compare Source
Bug Fixes
jprichardson/node-fs-extra (fs-extra)
v11.4.0Compare Source
EEXISTerror when trying to create a symlink and the dest already exists as a broken symlink (#925, #1076)v11.3.6Compare Source
v11.3.5Compare Source
ensureLink*/ensureSymlink*identical file detection on Windows (#1068)v11.3.4Compare Source
ensureSymlink/ensureSymlinkSyncwith a relativesrcPathwould fail if the symlink already existed (#1038, #1064)v11.3.3Compare Source
v11.3.2Compare Source
UnhandledPromiseRejectionWarningthat could occur when calling.copy()in some cases (#1056, #1058)v11.3.1Compare Source
move/moveSynccould incorrectly think files are identical on Windows (#1050)lint-staged/lint-staged (lint-staged)
v17.3.0Compare Source
Minor Changes
#1825
16b3f74- It is now possible to run multiple tasks in parallel for a single glob by configuring it with an array of tasks (which run sequentially), and then placing another array inside it (where the tasks will run in parallel). The following demonstrates the order tasks will start in:{ "*.ts": ["first", "second", ["third", "third"], "fourth"] }As a concrete example, lint-staged's own configuration is:
which means:
oxfmt --check --no-error-on-unmatched-pattern lib/index.jsoxlint --no-error-on-unmatched-pattern lib/index.js*.tsfiles are staged, runtscwithout appending any argumentsPatch Changes
15f7e53- During an in-progress merge, files that are unchanged from the branch being merged are now skipped. Technically, files are only included if there are staged changes against bothHEADandMERGE_HEAD.v17.2.0Compare Source
Minor Changes
#1823
ee156cc- The chunking of tasks based on maximum command line argument length has been re-implemented to be more precise. Now the chunking happens based on the final generated command string, instead of just the list of staged files like previously. This benefits mainly Windows platforms and function commands like:Where the spawned command is literally
"tsc"without any extra arguments. Previously, this was still chunked when a lot of files were staged. Now, it probably won't be chunked because the length of the command is just three letters.Also, native JavaScript/Node.js function tasks won't be chunked at all, when previously they were run multiple times when chunked:
v17.1.1Compare Source
Patch Changes
a626a9f- It's now possible to set--max-arg-length=Infinityto effectively disable chunking of tasks based on the number of staged files. The parsing and validation of the numeric CLI options--max-arg-lengthand--concurrencyhas been improved.v17.1.0Compare Source
Minor Changes
#1816
7568d4f- The console output of lint-staged has been simplified so that there's less interactive spinners and more explicit messages like "Started…" -> "Done!". The primary purpose of this was to removeListr2, a very large dependency.Before:
Size of
node_modules/after installing:1561.7 kBwith 29 packages.Fancy interactive spinners, but output dynamically changes:
After:
Size of
node_modules/after installing:974.0 kBwith 5 packages (37.6 % smaller, 82.7 % less transitive dependencies).Simpler but more explicit output:
Patch Changes
#1816
c19079d- Try to restore hidden unstaged changes when using--no-revert.#1818
efb23a2- Console output colors are enabled/disabled more consistently.#1818
26112a1- Failed JS function tasks now properly kill other tasks, unless--continue-on-erroris used. Previously their failure didn't affect other tasks.v17.0.8Compare Source
Patch Changes
#1809
179b437- Fix lint-staged discarding the ongoing merge conflict status (.git/MERGE_HEAD) when using the--hide-unstagedor--hide-alloptions.#1811
3d0b2c0- Fix issues with Git commands that are successful but also emit warnings tostderr, by ignoring thestderroutput completely when the process exits with code 0. This was the behavior when usingnano-spawnandexeca, but when switching totinyexecin 16.3.0 bothstdoutandstderrwere used as interleaved output.v17.0.7Compare Source
Patch Changes
e692e58- Update dependencytinyexec@^1.2.4.v17.0.6Compare Source
Patch Changes
#1803
bdf2770- Run all tests with Deno, in addition to Node.js and Bun.#1796
7508272- Fix performance regression of lint-staged v17 by going back to usinggit addto stage task modifications. This was changed togit update-index --againin v17 for less manual work, but unfortunately theupdate-indexcommand gets slower in very large Git repos.#1797
7b2505a- This version of lint-staged uses the new staged publishing for npm packages feature. Releases are already published from GitHub Actions with trusted publishing, but now an additional approval with two-factor authentication is also required.#1802
321b0a9- Downgrade dependencytinyexec@1.2.2to avoid issues in version 1.2.3.v17.0.5Compare Source
Patch Changes
1f67271- Correctly set the--max-arg-lengthdefault value based on the running platform. This controls how very long lists of staged files are split into multiple chunks.mochajs/mocha (mocha)
v11.8.0Compare Source
v11.7.6Compare Source
🩹 Fixes
describe().timeout()work (aafe6fd)wmicusage with native Windows API (#5694) (73ebdfa)🧹 Chores
v11.7.5Compare Source
🩹 Fixes
requireerrors from *ts files (#5498) (d89dbaf)🧹 Chores
v11.7.4Compare Source
🩹 Fixes
📚 Documentation
🧹 Chores
v11.7.3Compare Source
🩹 Fixes
📚 Documentation
🤖 Automation
v11.7.2Compare Source
🩹 Fixes
📚 Documentation
🧹 Chores
-R import-only-loader(#5391) (6ee5b48)🤖 Automation
tjvr/moo (moo)
v0.5.3Compare Source
semantic-release/semantic-release (semantic-release)
v25.0.9Compare Source
Bug Fixes
v25.0.8Compare Source
Bug Fixes
v25.0.7Compare Source
Bug Fixes
v25.0.6Compare Source
Bug Fixes
v25.0.5Compare Source
Bug Fixes
v25.0.4Compare Source
Bug Fixes
mozilla/source-map (source-map)
v0.8.0Compare Source
Adding security policy
Use Object.create for sourceContents
Fixes types for SourceMapConsumer.initialize
v0.7.6Compare Source
publishConfigproperty in package.json (801be934007c3ed0ef66c620641b1668e92c891d)v0.7.5Compare Source
Pass through the implementation of more index map operations.
Remove the bundled dist/ directory?
Split up wasm loading based on compilation target.
Use WHATWG's URL to implement all of source-map's URL operations.
Fix typo
Add Mozilla Code of Conduct in
Remove unused fromVLQSigned function
Add lastGeneratedColumn to typing for MappingItem
addMapping(): ensure thatoriginalLineandoriginalColumnarenullwhenoriginalargument was undefined/nullfix crash in url util function due to undefined root value
minor binary-search code/comment fixes
use Travis CI svg badge
add
prettiertask for standardized code formatting => easier cross-branch/fork code comparison and mergingSyntax highlight README HTML sample
Add function to SourceMapConsumer TS interface
Include types file extension in package.json
Require Node.js 12 or later & switch CI to GitHub Actions
Skip updating coveralls.io coverage
Update WASM binary and Land WASM rust sources in this repository
Update ESLint & Prettier to latest
Adopt & enforce the mozilla-central Prettier config
Simplify coverage tooling
Update to doctoc v2 & simplify call pattern
Filter out unnecessary rust tasks
Improve coverage
Include package-lock.json in repo
fix: convert result of allocate_mappings from signed to unsigned
Add support for the sourcemaps ignorelist
Remove .DS_Store
Fix reference to LICENSE file
Fix an off-by-1 error in section lookup
Add source map spec tests
Remove whatwg-url module
Configuration
📅 Schedule: (in timezone Europe/Zurich)
🚦 Automerge: Enabled.
♻ 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.