[breaking] chore: update npm dependencies #131
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "updatarr/npm-dependencies-bac734c5b3"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Updates
npm dependencies.Breaking change detected. Review the release notes before merging.
Automerge: Disabled by automerge.rules[0]: major updates require review
Changed files:
web/package.json:181.23.0->1.25.0web/package.json:1919.2.7->19.2.8web/package.json:2019.2.7->19.2.8web/package.json:242.5.3->2.5.5web/package.json:2520.10.6->20.11.0web/package.json:264.3.2->4.3.3web/package.json:286.9.1->7.0.0web/package.json:336.0.3->6.0.4web/package.json:344.3.2->4.3.3web/package.json:356.0.3->7.0.2web/package.json:368.1.3->8.1.5Release notes
1.24.0: lucide-react: Version 1.24.0Compare source
What's Changed
toBeRemovedInVersionmetadata and make it optional in schema by @ericfennis with @Copilot in https://github.com/lucide-icons/lucide/pull/4513optionicon by @jamiemlaw in https://github.com/lucide-icons/lucide/pull/4326doticon by @cnlancehu in https://github.com/lucide-icons/lucide/pull/4492circle-euro-signicon by @Guido3000 in https://github.com/lucide-icons/lucide/pull/4353server-plusicon by @Turboman3000 in https://github.com/lucide-icons/lucide/pull/4232New Contributors
Full Changelog: https://github.com/lucide-icons/lucide/compare/1.23.0...1.24.0
1.25.0: lucide-react: Version 1.25.0Compare source
What's Changed
circle-euroto match other euro icons by @ericfennis in https://github.com/lucide-icons/lucide/pull/4531hdmi-porticon by @karsa-mistmere in https://github.com/lucide-icons/lucide/pull/4554ethernet-porticon by @karsa-mistmere in https://github.com/lucide-icons/lucide/pull/4555file-boxicon by @karsa-mistmere in https://github.com/lucide-icons/lucide/pull/4552scan-boxicon by @karsa-mistmere in https://github.com/lucide-icons/lucide/pull/4551Full Changelog: https://github.com/lucide-icons/lucide/compare/1.24.0...1.25.0
v19.2.8: react: 19.2.8 (July 21st, 2026)Compare source
React Server Components
(#37087 by @eps1lon)
v19.2.8: react-dom: 19.2.8 (July 21st, 2026)Compare source
React Server Components
(#37087 by @eps1lon)
@biomejs/biome@2.5.3: @biomejs/biome: Biome CLI v2.5.3Compare source
2.5.3
Patch Changes
#10815
86613d5Thanks @WaterWhisperer! - Fixed a parser panic reported in #10708: Biome now recovers when unsupported CSS Modules@valuerules or scoped@keyframesnames end at EOF.#10534
da9b403Thanks @Mokto! - FixednoUnusedVariablesfalse positives in Svelte files: Svelte store subscriptions ($storereferences in templates now keep the underlyingstorebinding from being flagged), and$bindable()props that are only written to in the script block (write-only is intentional for bindable props) are no longer reported as unused.#10827
098ba41Thanks @Aqu1bp! - Fixed #10698: ThenoUnsafeOptionalChainingrule now reports unsafe optional chains wrapped in TypeScriptas,satisfies, type assertion, and instantiation expressions, such asnew (value?.constructor as Constructor)().#10773
3c6513dThanks @otkrickey! - Fixed #10772:useVueValidVOnno longer reports a missing handler for v-on directives using a verb modifier (.stop/.prevent) without an expression, e.g.<div @click.stop></div>. The rule also accepts the arg-less object syntax<div v-on="$listeners"></div>instead of reporting a missing event name.#10721
d83c66bThanks @minseong0324! - Improved type-aware lint rule inference for built-in globals and indexed function calls. Biome now resolvesError(...),new Error(...), optionalError#stack, and calls through indexed function values such ashandlers[0]()more accurately.#10865
6450276Thanks @ematipico! - Fixed #10845. Biome Language Server no longer goes in deadlock when the scanner is enabled.#10853
93d8e53Thanks @Netail! - Fixed #10840: Astro shorthand attribute syntax is now correctly being parsed from embedded nodes.#10820
bba3092Thanks @JamBalaya56562! - Fixed #10619:noProcessEnvnow also reports computed (bracket) member access. Previously only dot access was checked, soprocess["env"]andenv["NODE_ENV"](whereenvis imported fromnode:process) were missed. Both static and computed accesses are now reported.#10835
3447b2fThanks @dyc3! - Fixed #10824:useDomQuerySelectornow supports anignoreoption for receiver identifiers that should not be reported.#10875
b12e486Thanks @dyc3! - Fixed #10795:--profile-rulesnow reports timings for each plugin separately asplugin/<pluginName>, matching the naming used by plugin suppressions, instead of aggregating all plugins under a singleplugin/pluginentry.#10877
d6bc447Thanks @ematipico! - Fixed biome-zed#164: Biome no longer inserts stray whitespace when format-on-type runs after closing delimiters such as),], and}.#10867
a21463eThanks @dyc3! - Fixed #10864: Biome no longer crashes when checking or linting HTML files with unquoted attribute values such as<textarea rows=4></textarea>.What's Changed
New Contributors
Full Changelog: https://github.com/biomejs/biome/compare/@biomejs/biome@2.5.2...@biomejs/biome@2.5.3
@biomejs/biome@2.5.4: @biomejs/biome: Biome CLI v2.5.4Compare source
2.5.4
Patch Changes
#10665
55ff995Thanks @dyc3! - Improved the performance of the HTML parser slightly in our synthetic benchmarks.#10894
f4fb10eThanks @ematipico! - Fixed #6392: On-type formatting no longer moves comments before anifstatement into its body.#10939
f2799dbThanks @Netail! - Fixed #10930:noLabelWithoutControlnow correctly detects text interpolation in Astro, Svelte & Vue as valid accessible content.#10945
ae15d98Thanks @Netail! - Fixed #10942: Svelte directives don't throw an accidental debug log anymore.#10842
5e1abfeThanks @JamBalaya56562! - Fixed #9196:biome check --write --unsafeno longer hangs forever when applying thenoCommentTextcode fix.The rule's fix now wraps the comment in a real JSX expression container (
{/* comment */}) instead of re-inserting the braces as plain JSX text, so the fixed code is no longer reported again by the same rule.#10891
ecca79eThanks @ematipico! - Fixed#10885: prevented a module-inference regression introduced by a housekeeping change.#10886
60c8043Thanks @dyc3! - Fixed #10727: Biome now breaks the arguments of curriedtest.each,it.each,describe.each, andtest.forcalls when they exceed the configured line width.#10895
01a85f0Thanks @ematipico! - Biome will now remove stale Unix daemon sockets from older Biome versions when starting a newer daemon.What's Changed
Full Changelog: https://github.com/biomejs/biome/compare/@biomejs/biome@2.5.3...@biomejs/biome@2.5.4
v20.11.0: @happy-dom/global-registrator: v20.11.0Compare source
🎨 Features
v4.3.3: @tailwindcss/vite: v4.3.3Compare source
Fixed
--watch --poll[=ms]in@tailwindcss/cliwhen filesystem events are unreliable or unavailable (#20297)bg-[#fff]andbg-[#FFF]→bg-white) (#20298)iframe:focus-visibleoutline styles (#20292)theme('colors.foo')in JS plugins resolves correctly when both--color-fooand--color-foo-barexist (#20299)shadow-sm/12.5,text-shadow-sm/12.5,drop-shadow-sm/12.5, andinset-shadow-sm/12.5(#20302)[data-foo]divas two selectors instead of one (#20303)@tailwindcss/postcssrebuilds when a preprocessor like Sass changes the input CSS without changing the input file on disk (#20310)@tailwindcss/browserand Tailwind Play (#20124)oklch(#20314)--spacing(0)is optimized to0pxinstead of0so it remains a<length>when used incalc(…)(#20319)@parcel/watcheronly when needed in@tailwindcss/cli --watchmode, so one-off builds and--watch --pollwork when@parcel/watchercan't be loaded (#20325)system-uiandui-sans-serifso CJK text respects the page'slangattribute on Windows (#20318)@tailwindcss/upgradefrom rewriting ignored files when run from a subdirectory (#20329)@sourcerules pointing to nested files are scanned when later@sourcerules point to files in parent folders (#20335)@tailwindcss/vitefrom triggering full page reloads when scanned files are processed by Vite but haven't been loaded as modules yet (#20336)v6.10.0: @testing-library/jest-dom: v6.10.0Compare source
6.10.0 (2026-07-20)
Features
v7.0.0: @testing-library/jest-dom: v7.0.0Breaking change detected.
Compare source
7.0.0 (2026-07-20)
Features
BREAKING CHANGES
Node.js version is now 22.
Repaired release for https://github.com/testing-library/jest-dom/pull/731
plugin-react@6.0.3: @vitejs/plugin-react: plugin-react@6.0.3Compare source
v4.3.3: tailwindcss: v4.3.3Compare source
Fixed
--watch --poll[=ms]in@tailwindcss/cliwhen filesystem events are unreliable or unavailable (#20297)bg-[#fff]andbg-[#FFF]→bg-white) (#20298)iframe:focus-visibleoutline styles (#20292)theme('colors.foo')in JS plugins resolves correctly when both--color-fooand--color-foo-barexist (#20299)shadow-sm/12.5,text-shadow-sm/12.5,drop-shadow-sm/12.5, andinset-shadow-sm/12.5(#20302)[data-foo]divas two selectors instead of one (#20303)@tailwindcss/postcssrebuilds when a preprocessor like Sass changes the input CSS without changing the input file on disk (#20310)@tailwindcss/browserand Tailwind Play (#20124)oklch(#20314)--spacing(0)is optimized to0pxinstead of0so it remains a<length>when used incalc(…)(#20319)@parcel/watcheronly when needed in@tailwindcss/cli --watchmode, so one-off builds and--watch --pollwork when@parcel/watchercan't be loaded (#20325)system-uiandui-sans-serifso CJK text respects the page'slangattribute on Windows (#20318)@tailwindcss/upgradefrom rewriting ignored files when run from a subdirectory (#20329)@sourcerules pointing to nested files are scanned when later@sourcerules point to files in parent folders (#20335)@tailwindcss/vitefrom triggering full page reloads when scanned files are processed by Vite but haven't been loaded as modules yet (#20336)v8.1.4: vite: v8.1.4Compare source
Please refer to CHANGELOG.md for details.
v8.1.5: vite: v8.1.5Compare source
Please refer to CHANGELOG.md for details.
85d60fb6ee8583ebac398583ebac39887a713c40887a713c406dfb8845b66dfb8845b69a5bf395819a5bf395812cf6feb7a62cf6feb7a68b291cfc248b291cfc24d93649dd7bd93649dd7ba5dc575cf5a5dc575cf5159cbee46f159cbee46feee47d3b15eee47d3b1525aca4ddf025aca4ddf0d7144d4877d7144d4877cd5856bd55cd5856bd554d20091c594d20091c5997a6f7fd38chore: update npm dependenciesto [breaking] chore: update npm dependencies97a6f7fd38659569ea22659569ea226e0ec8dcad6e0ec8dcad19547203bb19547203bb11be35b47a