chore(deps): update all-dependencies (major)#15
Open
renovate[bot] wants to merge 1 commit into
Open
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
cc4e886 to
e98188d
Compare
e98188d to
79ce68c
Compare
79ce68c to
872ce52
Compare
872ce52 to
7c1b99a
Compare
7c1b99a to
d96c010
Compare
d96c010 to
8887ea4
Compare
8887ea4 to
ebdeb19
Compare
ebdeb19 to
09bfc30
Compare
09bfc30 to
e7ac602
Compare
e7ac602 to
b85a2e3
Compare
b85a2e3 to
812396d
Compare
812396d to
5a18830
Compare
5a18830 to
adf47e2
Compare
adf47e2 to
4bcd2f9
Compare
051edde to
02973dc
Compare
02973dc to
840141d
Compare
840141d to
e4274a2
Compare
e4274a2 to
71c00bd
Compare
71c00bd to
9697048
Compare
9697048 to
89ba08f
Compare
89ba08f to
5f16677
Compare
5f16677 to
2015186
Compare
2015186 to
48649bf
Compare
48649bf to
5ac339e
Compare
5ac339e to
489ff96
Compare
489ff96 to
20c1e70
Compare
20c1e70 to
89676c9
Compare
89676c9 to
add4261
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:
v4→v6v4→v616.2.7→17.0.722→2423.11.1-slim→26.3.0-slim23.11.1-alpine→26.3.0-alpine23.11.1-slim→26.3.0-slim10.26.1→11.7.016-alpine→18-alpineRelease Notes
actions/checkout (actions/checkout)
v6.0.3Compare Source
v6.0.2Compare Source
v6.0.1Compare Source
v6.0.0Compare Source
v6Compare Source
v5.0.1Compare Source
What's Changed
Full Changelog: actions/checkout@v5...v5.0.1
v5.0.0Compare Source
What's Changed
v2.327.1
Release Notes
Make sure your runner is updated to this version or newer to use this release.
Full Changelog: actions/checkout@v4...v5.0.0
v5Compare Source
actions/setup-node (actions/setup-node)
v6.4.0Compare Source
v6.3.0Compare Source
What's Changed
Enhancements:
devEnginesfield by @susnux in #1283Dependency updates:
Bug fixes:
New Contributors
Full Changelog: actions/setup-node@v6...v6.3.0
v6.2.0Compare Source
v6.1.0Compare Source
What's Changed
Enhancement:
Dependency updates:
Documentation update:
Full Changelog: actions/setup-node@v6...v6.1.0
v6.0.0Compare Source
What's Changed
Breaking Changes
Dependency Upgrades
Full Changelog: actions/setup-node@v5...v6.0.0
v6Compare Source
v5.0.0Compare Source
What's Changed
Breaking Changes
This update, introduces automatic caching when a valid
packageManagerfield is present in yourpackage.json. This aims to improve workflow performance and make dependency management more seamless.To disable this automatic caching, set
package-manager-cache: falseMake sure your runner is on version v2.327.1 or later to ensure compatibility with this release. See Release Notes
Dependency Upgrades
New Contributors
Full Changelog: actions/setup-node@v4...v5.0.0
v5Compare Source
lint-staged/lint-staged (lint-staged)
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.v17.0.4Compare Source
Patch Changes
#1788
f95c1f8- Another fix for making sure lint-staged adds task modifications correctly to the commit in the following cases:<file>it is staged withgit add <file>, and then committed withgit commit<file>it is committed withgit commit --allwithout explicitgit add<file>it is committed withgit commit <pathspec>without explicitgit addThere's new test cases which actually setup the Git
pre_commithook to run lint-staged and verify them. These issues started in v17.0.0 when trying to improve support for committig without having explicitly staged files.v17.0.3Compare Source
Patch Changes
06813f9Thanks @iiroj! - Fix lint-staged behavior when implicitly committing files without usinggit addby either:git commit -am "my commit message"where-a(--all) means to automatically stage all tracked modified and deleted filesgit commit -m "my commit message" .where.is an example of a pathspec where matching files will be stagedv17.0.2Compare Source
Patch Changes
88670caThanks @iiroj! - Enable immutable GitHub releasesv17.0.1Compare Source
Patch Changes
4a5664bThanks @iiroj! - Adjust GitHub Actions workflow so that automatic publishing works with signed commits.v17.0.0Compare Source
Major Changes
#1745
e244adfThanks @iiroj! - Node.js v20 is no longer supported, and the oldest supported version is now22.22.1, which is an active LTS version at the time of this release. Node.js 20 will be EOL after April 2026. Please upgrade your Node.js version!#1676
0584e0bThanks @outslept! - Lint-staged now tries to verify the installed Git version is at least2.32.0, released in 2021. If you're using an even older Git version, you need to upgrade it before running lint-staged!#1745
2dcc40aThanks @iiroj! - The dependencyyamlis now marked as optional and probably won't be installed by default. If you're using a YAML configuration file you should install the package separately:If you're using
.lintstagedrcas the config file name (without a file extension), it will be treated as a YAML file. If the content is JSON, consider renaming it to.lintstagedrc.jsonto avoid needing to installyaml.Minor Changes
#1748
809d5efThanks @iiroj! - Add new option--hide-allfor hiding all unstaged changes and untracked files, before running tasks. This makes it easier to run tools like Knip which check for unused code. Untracked files are included in the backup stash and restored automatically after running.#1759
f13045aThanks @iiroj! - Update dependencies, includingtinyexec@1.1.1to fix the following issues:#!/usr/bin/env nodeshebang (Prettier, ESLint, for example) were previously spawned using the default Node.js version configured by the version manager (the onewhich nodepoints to) on POSIX systems. Now, they will be spawned with the same version that lint-staged itself was started with.nodeexecutable available inPATHis a symlink pointing to Snap itself. The sandboxing features of Snap prevented lint-staged from spawning scripts with the#!/usr/bin/env nodeshebang, because it meant lint-staged tried to spawn Snap via the symlink. This resulted in anENOENTerror when trying to runprettier, for example. Now, since the realnodeexecutable's directory is available in thePATH, lint-staged will instead spawn the script with the realnodebinary succesfully.#1761
d3251b1Thanks @iiroj! - Lint-staged now runsgit update-index --againafter running tasks, instead ofgit add <originally staged files>. This should improve compatibility when using non-default indexes, for example when committing with a pathspecgit commit -m "message" .instead of adding files to the index.#1745
a9585acThanks @iiroj! - Removecommanderas a dependency and use the built-inparseArgsfromnode:utilto parse CLI flags.Patch Changes
#1755
c82d30bThanks @iiroj! - All tests now pass on the Bun runtime (latest).#1750
a401818Thanks @iiroj! - Remove manual handling forgit stash --keep-indexresurrecting deleted files, because the issue was fixed in Git2.23.0and lint-staged requires at least Git2.32.0.#1771
c4b8936Thanks @iiroj! - Fix documentation about multiple config files and the--cwdoption. When using it, all tasks will be run in the specified directory. For example, to run everything in the actualprocess.cwd(), uselint-staged --cwd=".".v16.4.0Compare Source
Minor Changes
687fc90Thanks @hyperz111! - Replacemicromatchwithpicomatchto reduce dependencies.v16.3.4Compare Source
Patch Changes
9d6e827Thanks @iiroj! - Update dependencies, includingtinyexec@1.0.4to make sure localnode_modules/.binare preferred to global locations (released intinyexec@1.0.3).v16.3.3Compare Source
Patch Changes
0109e8dThanks @iiroj! - Make sure Git's warning about CRLF line-endings doesn't interfere with creating initial backup stash.v16.3.2Compare Source
Patch Changes
2adaf6cThanks @iiroj! - Hide the extracmdwindow on Windows by spawning tasks without thedetachedoption.v16.3.1Compare Source
Patch Changes
cd5d762Thanks @iiroj! - Removenano-spawnas a dependency frompackage.jsonas it was replaced withtinyexecand is no longer used.v16.3.0Compare Source
Minor Changes
#1698
feda37aThanks @iiroj! - Run external processes withtinyexecinstead ofnano-spawn.nano-spawnreplacedexecain lint-staged version 16 to limit the amount of npm dependencies required, but caused some unknown issues related to spawning tasks. Let's hopetinyexecimproves the situation.#1699
1346d16Thanks @iiroj! - Removepidtreeas a dependency. When a task fails, its sub-processes are killed more efficiently via the process group on Unix systems, and thetaskkillcommand on Windows.Patch Changes
87467aaThanks @iiroj! - Incorrect brace expansions like*.{js}(nothing to expand) are detected exhaustively, instead of just a single pass.actions/node-versions (node)
v24.16.0: 24.16.0Compare Source
Node.js 24.16.0
v24.15.0: 24.15.0Compare Source
Node.js 24.15.0
v24.14.1: 24.14.1Compare Source
Node.js 24.14.1
v24.14.0: 24.14.0Compare Source
Node.js 24.14.0
v24.13.1: 24.13.1Compare Source
Node.js 24.13.1
v24.13.0: 24.13.0Compare Source
Node.js 24.13.0
v24.12.0: 24.12.0Compare Source
Node.js 24.12.0
v24.11.1: 24.11.1Compare Source
Node.js 24.11.1
v24.11.0: 24.11.0Compare Source
Node.js 24.11.0
v24.10.0: 24.10.0Compare Source
Node.js 24.10.0
v24.9.0: 24.9.0Compare Source
Node.js 24.9.0
v24.8.0: 24.8.0Compare Source
Node.js 24.8.0
v24.7.0: 24.7.0Compare Source
Node.js 24.7.0
v24.6.0: 24.6.0Compare Source
Node.js 24.6.0
v24.5.0: 24.5.0Compare Source
Node.js 24.5.0
v24.4.1: 24.4.1Compare Source
Node.js 24.4.1
v24.4.0: 24.4.0Compare Source
Node.js 24.4.0
v24.3.0: 24.3.0Compare Source
Node.js 24.3.0
v24.2.0: 24.2.0Compare Source
Node.js 24.2.0
v24.1.0: 24.1.0Compare Source
Node.js 24.1.0
v24.0.2: 24.0.2Compare Source
Node.js 24.0.2
v24.0.1: 24.0.1Compare Source
Node.js 24.0.1
v24.0.0: 24.0.0Compare Source
Node.js 24.0.0
nodejs/node (node)
v26.3.0: 2026-06-01, Version 26.3.0 (Current), @aduh95Compare Source
Notable Changes
Potential changes to macOS Universal Binary availability
With Apple and its ecosystem progressively dropping support for Intel-based
architectures, it has become apparent that the Node.js project may not be able
to maintain the universal binaries we currently distribute for the full lifetime
of Node.js 26. This change serves to communicate that risk. At present, our
intention remains to continue shipping universal binaries supporting both Apple
Silicon and Intel-based Macs for as long as practical.
Contributed by Antoine du Hamel in #63055.
Other notable changes
a2a4b33dd8] - (SEMVER-MINOR) buffer: increaseBuffer.poolSizedefault to 64 KiB (Matteo Collina) #63597051a2152f7] - crypto: update root certificates to NSS 3.123.1 (Node.js GitHub Bot) #6352749462eca37] - (SEMVER-MINOR) http: addhttpValidationoption to configure header value validation (RajeshKumar11) #6159797b7ab19bd] - (SEMVER-MINOR) inspector: expose precise coverage start to JS runtime (sangwook) #63079cfb80a2103] - (SEMVER-MINOR) lib,permission: addpermission.drop(Rafael Gonzaga) #62672Commits
a2a4b33dd8] - (SEMVER-MINOR) buffer: increase Buffer.poolSize default to 64 KiB (Matteo Collina) #635970eff3e23b9] - build: defNODE_USE_NODE_CODE_CACHEonly used in node_mksnapshot (Chengzhong Wu) #63588447ab2d252] - build,win: fix VS2022 arm64 PGO build (Stefan Stojanovic) #6341386032758e4] - build,win: replace LTCG with Thin LTO for releases (Stefan Stojanovic) #631145f4d794052] - build,win: add Rust toolchain automated configuration Windows (Mike McCready) #63381051a2152f7] - crypto: update root certificates to NSS 3.123.1 (Node.js GitHub Bot) #63527d0f65e3579] - crypto: coerce -0 keylen to +0 in pbkdf2 and scrypt (Jordan Harband) #63531e3ddb326c9] - crypto: harden WebCrypto against prototype pollution (Filip Skokan) #63363e04cd17dc0] - crypto: pass CryptoKey handles to KDF jobs (Filip Skokan) #6336364ba74d847] - crypto: remove async from WebCrypto methods (Filip Skokan) #63363bd230418b4] - crypto: add WebCrypto CryptoJob mode (Filip Skokan) #633631a4090a83d] - debugger: surface inspector failures in probe mode (Joyee Cheung) #63437dbc78ff825] - debugger,test: deflake resume failure test and add debug logs (Joyee Cheung) #635244da442f432] - deps: upgrade npm to 11.16.0 (npm team) #6360263372cfa87] - deps: SQLite: cherry-pickb869ed6(Junsu Han) #63525e286fa170d] - deps: upgrade npm to 11.15.0 (npm team) #63463de996437a5] - doc: downgrade macOS x64 to Tier 2 (Antoine du Hamel) #6305522ac78750c] - doc: remove duplicated sentences in large-pull-requests.md (Joyee Cheung) #63650532f7f2085] - doc: updategit node landinstructions for security releases (Antoine du Hamel) #63586c61f90dfb9] - doc: drop --experimental from --permission (Rafael Gonzaga) #63583fd69d7b16a] - doc: improvefs.StatFsproperties descriptions (aymanxdev) #62578693257782c] - doc: generate llms.txt (Guilherme Araújo) #6202755a57beb26] - doc: explicitly ask for reproducible in JS (Rafael Gonzaga) #634794895c2babc] - doc: fix URL postMessage example in worker_threads (Kit Dallege) #622030355c36e37] - doc: clarifyfilteroption ofsqlite.database.applyChangeset(Antoine du Hamel) #63515c85ee22df6] - doc: fix double spaces in ERR_TLS_INVALID_PROTOCOL_METHOD (Daijiro Wachi) #6351162947192f6] - doc: move hyperlinks outside of text blocks (Aviv Keller) #634939849690a1d] - doc: edit Rust toolchain general install instructions (Antoine du Hamel) #63488885d2462e9] - doc: fix double space in modules.md (Daijiro Wachi) #6351242fbb48bc6] - doc: fix "options" to "option" in tls.createServer (Daijiro Wachi) #6345305a7b0a301] - doc: add Rust toolchain general install instructions (Mike McCready) #63426e13dfd7ed0] - doc: update toolchain for official releases (Richard Lau) #6344182306881cc] - doc: fix typo in deprecations (Daijiro Wachi) #63434eeb77d217c] - doc,lib: align WebCrypto names with spec (Filip Skokan) #63518679e13c57f] - errors: handle V8 warnings in DisallowJavascriptExecutionScope (Divyanshu Sharma) #634917f41f5d803] - ffi: validate 'void' as parameter type in getFunction and getFunctions (Anshika Jain) #63504972cd227cb] - ffi: remove function signature property aliases (René) #634825d7805e433] - ffi: move DynamicLibrary disposer to native layer (René) #634595a0b32dc24] - gyp: update deps gypfiles (Nad Alaba) #6311749462eca37] - (SEMVER-MINOR) http: add httpValidation option to configure header value validation (RajeshKumar11) #61597e3c6629ee3] - http2: emit session close before stream close (Matteo Collina) #6341497b7ab19bd] - (SEMVER-MINOR) inspector: expose precise coverage start to JS runtime (sangwook) #630796bef10e7b7] - lib: cleanup stateless diffiehellman key handling (Filip Skokan) #62645fdc0b3d49c] - lib: definekEnumerablePropertyatomically (Antoine du Hamel) #6360999baf27aeb] - lib: fix typos in esm loader comments (RonGamzu) #63465cfb80a2103] - (SEMVER-MINOR) lib,permission: add permission.drop (Rafael Gonzaga) #626728e75efb9bc] - meta: flip mcollina emails in .mailmap (Matteo Collina) #63621a4ae97045f] - meta: label "source maps" PRs (Chengzhong Wu) #635913455a48ae1] - meta: addvfssubsystem label (René) #6233101bfcdfc20] - meta: skip scheduled workflows on forks (Jamie Magee) #63565bc4c457eae] - meta: add additional gitignore entries (James M Snell) #63267e1d65d9509] - module: load ESM helpers eagerly in the snapshot (Joyee Cheung) #635506a97b0932a] - quic: add proper error codes & messages for QUIC failures (Tim Perry) #631985989f4a6e1] - quic: support hostname verification (James M Snell) #63483b4d30e7a78] - quic: add stream idle timeout (James M Snell) #634838a1017f774] - quic: add block list support for endpoints (James M Snell) #634835a3ab93c49] - quic: improve peer cert verification (James M Snell) #634839701a82a78] - quic: handle h3 max header size option (James M Snell) #6348371788a2048] - quic: add rate limiting docs (James M Snell) #63483309bd49906] - quic: cache timestamp for address lru cache (James M Snell) #634832ce5588d51] - quic: add session creation rate limiting (James M Snell) #6348398808baed1] - quic: refine rate limiting (James M Snell) #6348375a4176b32] - quic: flip preferred address policy default to 'ignore' (James M Snell) #634838b6b03d60c] - quic: add doc note about certificate size limitations (James M Snell) #6348330eff873e0] - quic: add applicationOptions to session (James M Snell) #632674303daa43c] - quic: add getters for local and remote transport parameters (James M Snell) #63267e1b1bb5465] - quic: improve recv coalescing test sizes (James M Snell) #6326725a416f457] - quic: add initial RTT option to session options (James M Snell) #6326722e91c357f] - quic: enable recvmmsg batching in Endpoint (James M Snell) #63267c96d8a9d9b] - quic: improve stream header collection performance (James M Snell) #63267409460f2ce] - quic: add reusePort option to QuicEndpoint (James M Snell) #632679a2afffec9] - quic: coalesce received data into fewer buffers (James M Snell) #63267f9a6a2f558] - quic: apply multiple additional minor improvements (James M Snell) #63267ea5f3724ee] - quic: fix tests that are missing serverEndpoint close (James M Snell) #632676cffc931fc] - quic: fixup some v8:: qualifiers (James M Snell) #632679bc875e522] - quic: fix premature unref of endpoint when listening (James M Snell) [#63267](https://redirect.github.com/noConfiguration
📅 Schedule: (UTC)
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, 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.