[breaking] chore: update npm dependencies #87

Merged
Wuast94 merged 1 commit from updatarr/npm-dependencies-bac734c5b3 into main 2026-07-23 00:23:23 +02:00
Owner

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:17 1.23.0 -> 1.25.0
  • web/package.json:18 19.2.7 -> 19.2.8
  • web/package.json:19 19.2.7 -> 19.2.8
  • web/package.json:23 2.5.3 -> 2.5.5
  • web/package.json:24 20.10.6 -> 20.11.0
  • web/package.json:25 4.3.2 -> 4.3.3
  • web/package.json:27 6.9.1 -> 7.0.0
  • web/package.json:32 6.0.3 -> 6.0.4
  • web/package.json:33 4.3.2 -> 4.3.3
  • web/package.json:34 6.0.3 -> 7.0.2
  • web/package.json:35 8.1.3 -> 8.1.5
Release notes

1.24.0: lucide-react: Version 1.24.0

Compare source

What's Changed

New Contributors

Full Changelog: https://github.com/lucide-icons/lucide/compare/1.23.0...1.24.0

1.25.0: lucide-react: Version 1.25.0

Compare source

What's Changed

Full 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

  • Performance improvements when decoding
    (#37087 by @eps1lon)

v19.2.8: react-dom: 19.2.8 (July 21st, 2026)

Compare source

React Server Components

  • Performance improvements when decoding
    (#37087 by @eps1lon)

@biomejs/biome@2.5.3: @biomejs/biome: Biome CLI v2.5.3

Compare source

2.5.3

Patch Changes

  • #10815 86613d5 Thanks @WaterWhisperer! - Fixed a parser panic reported in #10708: Biome now recovers when unsupported CSS Modules @value rules or scoped @keyframes names end at EOF.

  • #10534 da9b403 Thanks @Mokto! - Fixed noUnusedVariables false positives in Svelte files: Svelte store subscriptions ($store references in templates now keep the underlying store binding 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 098ba41 Thanks @Aqu1bp! - Fixed #10698: The noUnsafeOptionalChaining rule now reports unsafe optional chains wrapped in TypeScript as, satisfies, type assertion, and instantiation expressions, such as new (value?.constructor as Constructor)().

  • #10773 3c6513d Thanks @otkrickey! - Fixed #10772: useVueValidVOn no 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 d83c66b Thanks @minseong0324! - Improved type-aware lint rule inference for built-in globals and indexed function calls. Biome now resolves Error(...), new Error(...), optional Error#stack, and calls through indexed function values such as handlers[0]() more accurately.

  • #10865 6450276 Thanks @ematipico! - Fixed #10845. Biome Language Server no longer goes in deadlock when the scanner is enabled.

  • #10853 93d8e53 Thanks @Netail! - Fixed #10840: Astro shorthand attribute syntax is now correctly being parsed from embedded nodes.

  • #10820 bba3092 Thanks @JamBalaya56562! - Fixed #10619: noProcessEnv now also reports computed (bracket) member access. Previously only dot access was checked, so process["env"] and env["NODE_ENV"] (where env is imported from node:process) were missed. Both static and computed accesses are now reported.

  • #10835 3447b2f Thanks @dyc3! - Fixed #10824: useDomQuerySelector now supports an ignore option for receiver identifiers that should not be reported.

  • #10875 b12e486 Thanks @dyc3! - Fixed #10795: --profile-rules now reports timings for each plugin separately as plugin/<pluginName>, matching the naming used by plugin suppressions, instead of aggregating all plugins under a single plugin/plugin entry.

  • #10877 d6bc447 Thanks @ematipico! - Fixed biome-zed#164: Biome no longer inserts stray whitespace when format-on-type runs after closing delimiters such as ), ], and }.

  • #10867 a21463e Thanks @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.4

Compare source

2.5.4

Patch Changes

  • #10665 55ff995 Thanks @dyc3! - Improved the performance of the HTML parser slightly in our synthetic benchmarks.

  • #10894 f4fb10e Thanks @ematipico! - Fixed #6392: On-type formatting no longer moves comments before an if statement into its body.

  • #10939 f2799db Thanks @Netail! - Fixed #10930: noLabelWithoutControl now correctly detects text interpolation in Astro, Svelte & Vue as valid accessible content.

  • #10945 ae15d98 Thanks @Netail! - Fixed #10942: Svelte directives don't throw an accidental debug log anymore.

  • #10842 5e1abfe Thanks @JamBalaya56562! - Fixed #9196: biome check --write --unsafe no longer hangs forever when applying the noCommentText code 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 ecca79e Thanks @ematipico! - Fixed #10885: prevented a module-inference regression introduced by a housekeeping change.

  • #10886 60c8043 Thanks @dyc3! - Fixed #10727: Biome now breaks the arguments of curried test.each, it.each, describe.each, and test.for calls when they exceed the configured line width.

    - test.each([[1, 2]])("a description that is long enough to push the hugged opening line beyond the print width", (a, b) => {
    -   expect(a).toBe(b);
    - });
    + test.each([[1, 2]])(
    +   "a description that is long enough to push the hugged opening line beyond the print width",
    +   (a, b) => {
    +     expect(a).toBe(b);
    +   },
    + );
    
  • #10895 01a85f0 Thanks @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.0

Compare source

🎨 Features

v4.3.3: @tailwindcss/vite: v4.3.3

Compare source

Fixed

  • Support --watch --poll[=ms] in @tailwindcss/cli when filesystem events are unreliable or unavailable (#20297)
  • Canonicalization: match arbitrary hex colors against theme colors case-insensitively (e.g. bg-[#fff] and bg-[#FFF]bg-white) (#20298)
  • Prevent Preflight from overriding Firefox's native iframe:focus-visible outline styles (#20292)
  • Ensure theme('colors.foo') in JS plugins resolves correctly when both --color-foo and --color-foo-bar exist (#20299)
  • Ensure fractional opacity modifiers work with named shadow sizes like shadow-sm/12.5, text-shadow-sm/12.5, drop-shadow-sm/12.5, and inset-shadow-sm/12.5 (#20302)
  • Parse selectors like [data-foo]div as two selectors instead of one (#20303)
  • Ensure @tailwindcss/postcss rebuilds when a preprocessor like Sass changes the input CSS without changing the input file on disk (#20310)
  • Ensure CSS nesting is handled even when Lightning CSS isn't run, such as in @tailwindcss/browser and Tailwind Play (#20124)
  • Prevent achromatic theme colors from shifting hue when mixed in polar color spaces like oklch (#20314)
  • Ensure --spacing(0) is optimized to 0px instead of 0 so it remains a <length> when used in calc(…) (#20319)
  • Load @parcel/watcher only when needed in @tailwindcss/cli --watch mode, so one-off builds and --watch --poll work when @parcel/watcher can't be loaded (#20325)
  • Use explicit platform fonts instead of system-ui and ui-sans-serif so CJK text respects the page's lang attribute on Windows (#20318)
  • Prevent @tailwindcss/upgrade from rewriting ignored files when run from a subdirectory (#20329)
  • Ensure earlier @source rules pointing to nested files are scanned when later @source rules point to files in parent folders (#20335)
  • Prevent @tailwindcss/vite from 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.0

Compare source

6.10.0 (2026-07-20)

Features

  • add toContainAnyBy* and toContainOneBy* query matchers (#731) (cae44df)

v7.0.0: @testing-library/jest-dom: v7.0.0

Breaking change detected.

Compare source

7.0.0 (2026-07-20)

Features

  • add toContainAnyBy* and toContainOneBy* query matchers (1e39089)

BREAKING CHANGES

  • @testing-library/dom is now a required peer dependency. The minimum supported
    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.3

Compare source

v4.3.3: tailwindcss: v4.3.3

Compare source

Fixed

  • Support --watch --poll[=ms] in @tailwindcss/cli when filesystem events are unreliable or unavailable (#20297)
  • Canonicalization: match arbitrary hex colors against theme colors case-insensitively (e.g. bg-[#fff] and bg-[#FFF]bg-white) (#20298)
  • Prevent Preflight from overriding Firefox's native iframe:focus-visible outline styles (#20292)
  • Ensure theme('colors.foo') in JS plugins resolves correctly when both --color-foo and --color-foo-bar exist (#20299)
  • Ensure fractional opacity modifiers work with named shadow sizes like shadow-sm/12.5, text-shadow-sm/12.5, drop-shadow-sm/12.5, and inset-shadow-sm/12.5 (#20302)
  • Parse selectors like [data-foo]div as two selectors instead of one (#20303)
  • Ensure @tailwindcss/postcss rebuilds when a preprocessor like Sass changes the input CSS without changing the input file on disk (#20310)
  • Ensure CSS nesting is handled even when Lightning CSS isn't run, such as in @tailwindcss/browser and Tailwind Play (#20124)
  • Prevent achromatic theme colors from shifting hue when mixed in polar color spaces like oklch (#20314)
  • Ensure --spacing(0) is optimized to 0px instead of 0 so it remains a <length> when used in calc(…) (#20319)
  • Load @parcel/watcher only when needed in @tailwindcss/cli --watch mode, so one-off builds and --watch --poll work when @parcel/watcher can't be loaded (#20325)
  • Use explicit platform fonts instead of system-ui and ui-sans-serif so CJK text respects the page's lang attribute on Windows (#20318)
  • Prevent @tailwindcss/upgrade from rewriting ignored files when run from a subdirectory (#20329)
  • Ensure earlier @source rules pointing to nested files are scanned when later @source rules point to files in parent folders (#20335)
  • Prevent @tailwindcss/vite from 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.4

Compare source

Please refer to CHANGELOG.md for details.

v8.1.5: vite: v8.1.5

Compare source

Please refer to CHANGELOG.md for details.

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:17` `1.23.0` -> `1.25.0` - `web/package.json:18` `19.2.7` -> `19.2.8` - `web/package.json:19` `19.2.7` -> `19.2.8` - `web/package.json:23` `2.5.3` -> `2.5.5` - `web/package.json:24` `20.10.6` -> `20.11.0` - `web/package.json:25` `4.3.2` -> `4.3.3` - `web/package.json:27` `6.9.1` -> `7.0.0` - `web/package.json:32` `6.0.3` -> `6.0.4` - `web/package.json:33` `4.3.2` -> `4.3.3` - `web/package.json:34` `6.0.3` -> `7.0.2` - `web/package.json:35` `8.1.3` -> `8.1.5` <details> <summary>Release notes</summary> ### [`1.24.0`](https://github.com/lucide-icons/lucide/releases/tag/1.24.0): lucide-react: Version 1.24.0 [Compare source](https://github.com/lucide-icons/lucide/compare/1.23.0...1.24.0) ## What's Changed * fix(scripts): fix typo in renameIcon.function.mts by @karsa-mistmere in https://github.com/lucide-icons/lucide/pull/4514 * chore(icons): remove `toBeRemovedInVersion` metadata and make it optional in schema by @ericfennis with @Copilot in https://github.com/lucide-icons/lucide/pull/4513 * feat(site): Add merch link by @ericfennis in https://github.com/lucide-icons/lucide/pull/4524 * fix(packages/angular): move child rendering logic to template from effect by @karsa-mistmere in https://github.com/lucide-icons/lucide/pull/4519 * docs(site): list @gyeonghokim/lucide-lit as third-party package by @GyeongHoKim in https://github.com/lucide-icons/lucide/pull/4421 * fix(icons): changed `option` icon by @jamiemlaw in https://github.com/lucide-icons/lucide/pull/4326 * fix(lucide-react-native): restore the icons entry point in the JS bundles by @pvinis in https://github.com/lucide-icons/lucide/pull/4528 * fix(vue): support kebab-case icon-node prop on Icon component by @Sagargupta16 in https://github.com/lucide-icons/lucide/pull/4512 * fix(lucide-react-native): Add icon exports property to the package.json file by @ericfennis in https://github.com/lucide-icons/lucide/pull/4522 * fix(icons): centered the `dot` icon by @cnlancehu in https://github.com/lucide-icons/lucide/pull/4492 * feat(icons): added `circle-euro-sign` icon by @Guido3000 in https://github.com/lucide-icons/lucide/pull/4353 * feat(icons): added `server-plus` icon by @Turboman3000 in https://github.com/lucide-icons/lucide/pull/4232 ## New Contributors * @ericfennis with @Copilot made their first contribution in https://github.com/lucide-icons/lucide/pull/4513 * @GyeongHoKim made their first contribution in https://github.com/lucide-icons/lucide/pull/4421 * @pvinis made their first contribution in https://github.com/lucide-icons/lucide/pull/4528 * @Sagargupta16 made their first contribution in https://github.com/lucide-icons/lucide/pull/4512 * @Guido3000 made their first contribution in https://github.com/lucide-icons/lucide/pull/4353 * @Turboman3000 made their first contribution in https://github.com/lucide-icons/lucide/pull/4232 **Full Changelog**: https://github.com/lucide-icons/lucide/compare/1.23.0...1.24.0 ### [`1.25.0`](https://github.com/lucide-icons/lucide/releases/tag/1.25.0): lucide-react: Version 1.25.0 [Compare source](https://github.com/lucide-icons/lucide/compare/1.23.0...1.25.0) ## What's Changed * fix(icons): Rename to `circle-euro` to match other euro icons by @ericfennis in https://github.com/lucide-icons/lucide/pull/4531 * chore(deps-dev): bump astro from 6.1.10 to 6.4.6 by @dependabot[bot] in https://github.com/lucide-icons/lucide/pull/4487 * fix(site): empty search results on first load for tag-only matches by @taimar in https://github.com/lucide-icons/lucide/pull/4413 * chore(deps-dev): bump @babel/core from 7.28.5 to 7.29.6 by @dependabot[bot] in https://github.com/lucide-icons/lucide/pull/4476 * fix(ci): broken link in brand logo comment by @jguddas in https://github.com/lucide-icons/lucide/pull/4533 * chore(depedencies): Update dependencies by @ericfennis in https://github.com/lucide-icons/lucide/pull/4553 * feat(docs): add studio link by @jguddas in https://github.com/lucide-icons/lucide/pull/4534 * fix(icons): changed `hdmi-port` icon by @karsa-mistmere in https://github.com/lucide-icons/lucide/pull/4554 * fix(icons): changed `ethernet-port` icon by @karsa-mistmere in https://github.com/lucide-icons/lucide/pull/4555 * fix(icons): changed `file-box` icon by @karsa-mistmere in https://github.com/lucide-icons/lucide/pull/4552 * feat(icons): added `scan-box` icon by @karsa-mistmere in https://github.com/lucide-icons/lucide/pull/4551 **Full Changelog**: https://github.com/lucide-icons/lucide/compare/1.24.0...1.25.0 ### [`v19.2.8`](https://github.com/react/react/releases/tag/v19.2.8): react: 19.2.8 (July 21st, 2026) [Compare source](https://github.com/react/react/compare/19.2.7...v19.2.8) ## React Server Components - Performance improvements when decoding ([#37087](https://github.com/facebook/react/pull/37087) by @eps1lon) ### [`v19.2.8`](https://github.com/react/react/releases/tag/v19.2.8): react-dom: 19.2.8 (July 21st, 2026) [Compare source](https://github.com/react/react/compare/19.2.7...v19.2.8) ## React Server Components - Performance improvements when decoding ([#37087](https://github.com/facebook/react/pull/37087) by @eps1lon) ### [`@biomejs/biome@2.5.3`](https://github.com/biomejs/biome/releases/tag/%40biomejs/biome%402.5.3): @biomejs/biome: Biome CLI v2.5.3 [Compare source](https://github.com/biomejs/biome/compare/2.5.3...@biomejs%2Fbiome@2.5.3) ## 2.5.3 ### Patch Changes - [#10815](https://github.com/biomejs/biome/pull/10815) [`86613d5`](https://github.com/biomejs/biome/commit/86613d5b01eb965b460ccefbf27f168d87774aaf) Thanks [@WaterWhisperer](https://github.com/WaterWhisperer)! - Fixed a parser panic reported in [#10708](https://github.com/biomejs/biome/issues/10708): Biome now recovers when unsupported CSS Modules `@value` rules or scoped `@keyframes` names end at EOF. - [#10534](https://github.com/biomejs/biome/pull/10534) [`da9b403`](https://github.com/biomejs/biome/commit/da9b403b6bbacc8d75d56e327a46f4ed0285913e) Thanks [@Mokto](https://github.com/Mokto)! - Fixed [`noUnusedVariables`](https://biomejs.dev/linter/rules/no-unused-variables/) false positives in Svelte files: Svelte store subscriptions (`$store` references in templates now keep the underlying `store` binding 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](https://github.com/biomejs/biome/pull/10827) [`098ba41`](https://github.com/biomejs/biome/commit/098ba41c99e6efaac8eb182eec258a567bb00123) Thanks [@Aqu1bp](https://github.com/Aqu1bp)! - Fixed [#10698](https://github.com/biomejs/biome/issues/10698): The [`noUnsafeOptionalChaining`](https://biomejs.dev/linter/rules/no-unsafe-optional-chaining/) rule now reports unsafe optional chains wrapped in TypeScript `as`, `satisfies`, type assertion, and instantiation expressions, such as `new (value?.constructor as Constructor)()`. - [#10773](https://github.com/biomejs/biome/pull/10773) [`3c6513d`](https://github.com/biomejs/biome/commit/3c6513d4e9a82a195785144caa9d96093c3861ff) Thanks [@otkrickey](https://github.com/otkrickey)! - Fixed [#10772](https://github.com/biomejs/biome/issues/10772): [`useVueValidVOn`](https://biomejs.dev/linter/rules/use-vue-valid-v-on/) no 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](https://github.com/biomejs/biome/pull/10721) [`d83c66b`](https://github.com/biomejs/biome/commit/d83c66b39a820703d94100f8a6502cc6dbad26a1) Thanks [@minseong0324](https://github.com/minseong0324)! - Improved type-aware lint rule inference for built-in globals and indexed function calls. Biome now resolves `Error(...)`, `new Error(...)`, optional `Error#stack`, and calls through indexed function values such as `handlers[0]()` more accurately. - [#10865](https://github.com/biomejs/biome/pull/10865) [`6450276`](https://github.com/biomejs/biome/commit/6450276764ee4794a0fcb46c139f95b68d892427) Thanks [@ematipico](https://github.com/ematipico)! - Fixed [#10845](https://github.com/biomejs/biome/issues/10845). Biome Language Server no longer goes in deadlock when the scanner is enabled. - [#10853](https://github.com/biomejs/biome/pull/10853) [`93d8e53`](https://github.com/biomejs/biome/commit/93d8e5352454bccfbd179db03b3155776599c52c) Thanks [@Netail](https://github.com/Netail)! - Fixed [#10840](https://github.com/biomejs/biome/issues/10840): Astro shorthand attribute syntax is now correctly being parsed from embedded nodes. - [#10820](https://github.com/biomejs/biome/pull/10820) [`bba3092`](https://github.com/biomejs/biome/commit/bba30920715920142e933939f6270feedca933a5) Thanks [@JamBalaya56562](https://github.com/JamBalaya56562)! - Fixed [#10619](https://github.com/biomejs/biome/issues/10619): [`noProcessEnv`](https://biomejs.dev/linter/rules/no-process-env/) now also reports computed (bracket) member access. Previously only dot access was checked, so `process["env"]` and `env["NODE_ENV"]` (where `env` is imported from `node:process`) were missed. Both static and computed accesses are now reported. - [#10835](https://github.com/biomejs/biome/pull/10835) [`3447b2f`](https://github.com/biomejs/biome/commit/3447b2f5a3c430efc8e917514260af5341c5509d) Thanks [@dyc3](https://github.com/dyc3)! - Fixed [#10824](https://github.com/biomejs/biome/issues/10824): [`useDomQuerySelector`](https://biomejs.dev/linter/rules/use-dom-query-selector/) now supports an `ignore` option for receiver identifiers that should not be reported. - [#10875](https://github.com/biomejs/biome/pull/10875) [`b12e486`](https://github.com/biomejs/biome/commit/b12e486d0f0b80d02d2208e239190f8756d39d48) Thanks [@dyc3](https://github.com/dyc3)! - Fixed [#10795](https://github.com/biomejs/biome/issues/10795): `--profile-rules` now reports timings for each plugin separately as `plugin/<pluginName>`, matching the naming used by plugin suppressions, instead of aggregating all plugins under a single `plugin/plugin` entry. - [#10877](https://github.com/biomejs/biome/pull/10877) [`d6bc447`](https://github.com/biomejs/biome/commit/d6bc4473a210758ee49f6cad41bc69587a7cf125) Thanks [@ematipico](https://github.com/ematipico)! - Fixed [biome-zed#164](https://github.com/biomejs/biome-zed/issues/164): Biome no longer inserts stray whitespace when format-on-type runs after closing delimiters such as `)`, `]`, and `}`. - [#10867](https://github.com/biomejs/biome/pull/10867) [`a21463e`](https://github.com/biomejs/biome/commit/a21463e5f616a2db5035b470cd206ac9da4d9423) Thanks [@dyc3](https://github.com/dyc3)! - Fixed [#10864](https://github.com/biomejs/biome/issues/10864): Biome no longer crashes when checking or linting HTML files with unquoted attribute values such as `<textarea rows=4></textarea>`. ## What's Changed * fix(useVueValidVOn): allow verb-modifier-only handlers and object syntax by @otkrickey in https://github.com/biomejs/biome/pull/10773 * fix(css_parser): recover CSS Modules syntax at EOF by @WaterWhisperer in https://github.com/biomejs/biome/pull/10815 * feat(fmt/yaml): sequence mapping by @ematipico in https://github.com/biomejs/biome/pull/10814 * fix(lint): handle TypeScript wrappers in unsafe optional chains by @Aqu1bp in https://github.com/biomejs/biome/pull/10827 * fix(lint): report computed member access in noProcessEnv by @JamBalaya56562 in https://github.com/biomejs/biome/pull/10820 * ci: ignore quick-xml RustSec advisories by @JamBalaya56562 in https://github.com/biomejs/biome/pull/10831 * perf(core): embedded ranges plumbing by @ematipico in https://github.com/biomejs/biome/pull/10836 * feat(md/fmt): more compatibility gains by @ematipico in https://github.com/biomejs/biome/pull/10833 * chore(xtask): migrate Error global type by @minseong0324 in https://github.com/biomejs/biome/pull/10721 * fix(lint): suppress false positives in noUnusedVariables for Svelte store subscriptions and $bindable() props by @Mokto in https://github.com/biomejs/biome/pull/10534 * refactor(md/parse): reduce emitted nodes by @ematipico in https://github.com/biomejs/biome/pull/10847 * feat(md/fmt): quotes, thematic breaks and link definition by @ematipico in https://github.com/biomejs/biome/pull/10844 * refactor(md/parse): parse HTML into one single node by @ematipico in https://github.com/biomejs/biome/pull/10848 * docs(noMissingVarFunction): list container-name in ignored properties by @dfedoryshchev in https://github.com/biomejs/biome/pull/10852 * refactor(md/parse): fold code content lines and indentation runs by @ematipico in https://github.com/biomejs/biome/pull/10851 * fix: astro shorthand syntax embedded nodes by @Netail in https://github.com/biomejs/biome/pull/10853 * chore(xtask): migrate disposable global types by @minseong0324 in https://github.com/biomejs/biome/pull/10841 * test(cli): anchor temp-dir snapshot redaction to path boundaries by @JamBalaya56562 in https://github.com/biomejs/biome/pull/10832 * chore(deps): update github-actions by @renovate[bot] in https://github.com/biomejs/biome/pull/10856 * chore(deps): update pnpm to v11.9.0 by @renovate[bot] in https://github.com/biomejs/biome/pull/10860 * ci: ignore Bot PRs in AgentScan workflow by @siketyan in https://github.com/biomejs/biome/pull/10862 * fix(workspace): deadlock on salsa setters by @ematipico in https://github.com/biomejs/biome/pull/10865 * ci: update macos runner by @ematipico in https://github.com/biomejs/biome/pull/10866 * feat(useDomQuerySelector): add ignore option by @dyc3 in https://github.com/biomejs/biome/pull/10835 * fix(css_parser): gate SCSS syntax in CSS by @denbezrukov in https://github.com/biomejs/biome/pull/10456 * fix(html): fix inner_string_text for unquoted attribute values by @dyc3 in https://github.com/biomejs/biome/pull/10867 * chore(deps): update rust to v1.96.1 by @renovate[bot] in https://github.com/biomejs/biome/pull/10859 * ci: update crossbeam-epoch to fix advisory by @ematipico in https://github.com/biomejs/biome/pull/10874 * feat(md/fmt): bullet list spacing by @ematipico in https://github.com/biomejs/biome/pull/10854 * docs(useSortedClasses): remove outdated notes about unsupported features by @johncarmack1984 in https://github.com/biomejs/biome/pull/10872 * feat(plugins): show plugin names in --profile-rules output by @dyc3 in https://github.com/biomejs/biome/pull/10875 * chore(markdown): update prettier and test fixtures for markdown by @tidefield in https://github.com/biomejs/biome/pull/10882 * fix(lsp): guard format on type using the right characters by @ematipico in https://github.com/biomejs/biome/pull/10877 * ci: release by @github-actions[bot] in https://github.com/biomejs/biome/pull/10817 ## New Contributors * @johncarmack1984 made their first contribution in https://github.com/biomejs/biome/pull/10872 **Full Changelog**: https://github.com/biomejs/biome/compare/@biomejs/biome@2.5.2...@biomejs/biome@2.5.3 ### [`@biomejs/biome@2.5.4`](https://github.com/biomejs/biome/releases/tag/%40biomejs/biome%402.5.4): @biomejs/biome: Biome CLI v2.5.4 [Compare source](https://github.com/biomejs/biome/compare/2.5.3...@biomejs%2Fbiome@2.5.4) ## 2.5.4 ### Patch Changes - [#10665](https://github.com/biomejs/biome/pull/10665) [`55ff995`](https://github.com/biomejs/biome/commit/55ff995098148446b7e7fdfc19053902bb987122) Thanks [@dyc3](https://github.com/dyc3)! - Improved the performance of the HTML parser slightly in our synthetic benchmarks. - [#10894](https://github.com/biomejs/biome/pull/10894) [`f4fb10e`](https://github.com/biomejs/biome/commit/f4fb10e176e537e8ce2cac0c3fd4c38a77f91886) Thanks [@ematipico](https://github.com/ematipico)! - Fixed [#6392](https://github.com/biomejs/biome/issues/6392): On-type formatting no longer moves comments before an `if` statement into its body. - [#10939](https://github.com/biomejs/biome/pull/10939) [`f2799db`](https://github.com/biomejs/biome/commit/f2799db38e3d8a644207d9b8f957abea6cb3d9fa) Thanks [@Netail](https://github.com/Netail)! - Fixed [#10930](https://github.com/biomejs/biome/issues/10930): [`noLabelWithoutControl`](https://biomejs.dev/linter/rules/no-label-without-control/) now correctly detects text interpolation in Astro, Svelte & Vue as valid accessible content. - [#10945](https://github.com/biomejs/biome/pull/10945) [`ae15d98`](https://github.com/biomejs/biome/commit/ae15d98bbf2222fbb34e3e31832cba9676a6d01c) Thanks [@Netail](https://github.com/Netail)! - Fixed [#10942](https://github.com/biomejs/biome/issues/10942): Svelte directives don't throw an accidental debug log anymore. - [#10842](https://github.com/biomejs/biome/pull/10842) [`5e1abfe`](https://github.com/biomejs/biome/commit/5e1abfee59155b5fdca8813314371ed54c06acfb) Thanks [@JamBalaya56562](https://github.com/JamBalaya56562)! - Fixed [#9196](https://github.com/biomejs/biome/issues/9196): `biome check --write --unsafe` no longer hangs forever when applying the [`noCommentText`](https://biomejs.dev/linter/rules/no-comment-text/) code 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](https://github.com/biomejs/biome/pull/10891) [`ecca79e`](https://github.com/biomejs/biome/commit/ecca79e8ff10f40aa676212c0db0a970c6091615) Thanks [@ematipico](https://github.com/ematipico)! - Fixed [`#10885`](https://github.com/biomejs/biome/issues/10885): prevented a module-inference regression introduced by a housekeeping change. - [#10886](https://github.com/biomejs/biome/pull/10886) [`60c8043`](https://github.com/biomejs/biome/commit/60c8043527f7ccc7b505471e1042f2a4324e4d31) Thanks [@dyc3](https://github.com/dyc3)! - Fixed [#10727](https://github.com/biomejs/biome/issues/10727): Biome now breaks the arguments of curried `test.each`, `it.each`, `describe.each`, and `test.for` calls when they exceed the configured line width. ```diff - test.each([[1, 2]])("a description that is long enough to push the hugged opening line beyond the print width", (a, b) => { - expect(a).toBe(b); - }); + test.each([[1, 2]])( + "a description that is long enough to push the hugged opening line beyond the print width", + (a, b) => { + expect(a).toBe(b); + }, + ); ``` - [#10895](https://github.com/biomejs/biome/pull/10895) [`01a85f0`](https://github.com/biomejs/biome/commit/01a85f04b09f0af05b16a15c137421e312ceada5) Thanks [@ematipico](https://github.com/ematipico)! - Biome will now remove stale Unix daemon sockets from older Biome versions when starting a newer daemon. ## What's Changed * feat(yml/fmt): basic block properties by @ematipico in https://github.com/biomejs/biome/pull/10873 * feat(useSortedClasses): sort important-suffix classes in sort_v4 by @johncarmack1984 in https://github.com/biomejs/biome/pull/10880 * fix(format/js): wrap curried test each calls by @dyc3 in https://github.com/biomejs/biome/pull/10886 * fix(markdown): parse whitespace after list markers by @tidefield in https://github.com/biomejs/biome/pull/10869 * fix(inference): use correct function when cloning data by @ematipico in https://github.com/biomejs/biome/pull/10891 * docs(noDuplicateProperties): note that @keyframes declarations are ignored by @dfedoryshchev in https://github.com/biomejs/biome/pull/10893 * fix(lint): prevent noCommentText fix from looping forever by @JamBalaya56562 in https://github.com/biomejs/biome/pull/10842 * fix(core): cleanup old sockets in Unix by @ematipico in https://github.com/biomejs/biome/pull/10895 * feat(inference): inference engine via salsa by @ematipico in https://github.com/biomejs/biome/pull/10888 * chore(deps): update dependency @types/node to v24.13.3 by @renovate[bot] in https://github.com/biomejs/biome/pull/10920 * chore(deps): update github-actions by @renovate[bot] in https://github.com/biomejs/biome/pull/10921 * chore(deps): update pnpm to v11.11.0 by @renovate[bot] in https://github.com/biomejs/biome/pull/10925 * chore(deps): update rust crate jiff to 0.2.32 by @renovate[bot] in https://github.com/biomejs/biome/pull/10923 * chore(deps): update rust crate regex to 1.13.0 by @renovate[bot] in https://github.com/biomejs/biome/pull/10926 * fix(fmt): don't move comments inside if statement by @ematipico in https://github.com/biomejs/biome/pull/10894 * fix(html_analyze): noLabelWithoutControl interpolation by @Netail in https://github.com/biomejs/biome/pull/10939 * refactor(parse/html): keywords for all html/svg tags by @dyc3 in https://github.com/biomejs/biome/pull/10665 * perf(lint/html): avoid string comparisons for tag names by @dyc3 in https://github.com/biomejs/biome/pull/10692 * fix: accidental debug log by @Netail in https://github.com/biomejs/biome/pull/10945 * ci: release by @github-actions[bot] in https://github.com/biomejs/biome/pull/10887 **Full Changelog**: https://github.com/biomejs/biome/compare/@biomejs/biome@2.5.3...@biomejs/biome@2.5.4 ### [`v20.11.0`](https://github.com/capricorn86/happy-dom/releases/tag/v20.11.0): @happy-dom/global-registrator: v20.11.0 [Compare source](https://github.com/capricorn86/happy-dom/compare/20.10.6...v20.11.0) ### :art: Features - Adds support for [CookieStore API](https://developer.mozilla.org/en-US/docs/Web/API/Cookie_Store_API) - By **@TrevorBurnham** in task #1864 - Adds support for [Element.checkVisibility()](https://developer.mozilla.org/en-US/docs/Web/API/Element/checkVisibility) - By **@capricorn86** in task #1506 ### [`v4.3.3`](https://github.com/tailwindlabs/tailwindcss/releases/tag/v4.3.3): @tailwindcss/vite: v4.3.3 [Compare source](https://github.com/tailwindlabs/tailwindcss/compare/4.3.2...v4.3.3) ### Fixed - Support `--watch --poll[=ms]` in `@tailwindcss/cli` when filesystem events are unreliable or unavailable ([#20297](https://github.com/tailwindlabs/tailwindcss/pull/20297)) - Canonicalization: match arbitrary hex colors against theme colors case-insensitively (e.g. `bg-[#fff]` and `bg-[#FFF]` → `bg-white`) ([#20298](https://github.com/tailwindlabs/tailwindcss/pull/20298)) - Prevent Preflight from overriding Firefox's native `iframe:focus-visible` outline styles ([#20292](https://github.com/tailwindlabs/tailwindcss/pull/20292)) - Ensure `theme('colors.foo')` in JS plugins resolves correctly when both `--color-foo` and `--color-foo-bar` exist ([#20299](https://github.com/tailwindlabs/tailwindcss/pull/20299)) - Ensure fractional opacity modifiers work with named shadow sizes like `shadow-sm/12.5`, `text-shadow-sm/12.5`, `drop-shadow-sm/12.5`, and `inset-shadow-sm/12.5` ([#20302](https://github.com/tailwindlabs/tailwindcss/pull/20302)) - Parse selectors like `[data-foo]div` as two selectors instead of one ([#20303](https://github.com/tailwindlabs/tailwindcss/pull/20303)) - Ensure `@tailwindcss/postcss` rebuilds when a preprocessor like Sass changes the input CSS without changing the input file on disk ([#20310](https://github.com/tailwindlabs/tailwindcss/pull/20310)) - Ensure CSS nesting is handled even when Lightning CSS isn't run, such as in `@tailwindcss/browser` and Tailwind Play ([#20124](https://github.com/tailwindlabs/tailwindcss/pull/20124)) - Prevent achromatic theme colors from shifting hue when mixed in polar color spaces like `oklch` ([#20314](https://github.com/tailwindlabs/tailwindcss/pull/20314)) - Ensure `--spacing(0)` is optimized to `0px` instead of `0` so it remains a `<length>` when used in `calc(…)` ([#20319](https://github.com/tailwindlabs/tailwindcss/pull/20319)) - Load `@parcel/watcher` only when needed in `@tailwindcss/cli --watch` mode, so one-off builds and `--watch --poll` work when `@parcel/watcher` can't be loaded ([#20325](https://github.com/tailwindlabs/tailwindcss/pull/20325)) - Use explicit platform fonts instead of `system-ui` and `ui-sans-serif` so CJK text respects the page's `lang` attribute on Windows ([#20318](https://github.com/tailwindlabs/tailwindcss/pull/20318)) - Prevent `@tailwindcss/upgrade` from rewriting ignored files when run from a subdirectory ([#20329](https://github.com/tailwindlabs/tailwindcss/pull/20329)) - Ensure earlier `@source` rules pointing to nested files are scanned when later `@source` rules point to files in parent folders ([#20335](https://github.com/tailwindlabs/tailwindcss/pull/20335)) - Prevent `@tailwindcss/vite` from triggering full page reloads when scanned files are processed by Vite but haven't been loaded as modules yet ([#20336](https://github.com/tailwindlabs/tailwindcss/pull/20336)) ### [`v6.10.0`](https://github.com/testing-library/jest-dom/releases/tag/v6.10.0): @testing-library/jest-dom: v6.10.0 [Compare source](https://github.com/testing-library/jest-dom/compare/6.9.1...v6.10.0) # [6.10.0](https://github.com/testing-library/jest-dom/compare/v6.9.1...v6.10.0) (2026-07-20) ### Features * add toContainAnyBy* and toContainOneBy* query matchers ([#731](https://github.com/testing-library/jest-dom/issues/731)) ([cae44df](https://github.com/testing-library/jest-dom/commit/cae44df901cf8e92e3febc0af6fa667b10be6d6a)) ### [`v7.0.0`](https://github.com/testing-library/jest-dom/releases/tag/v7.0.0): @testing-library/jest-dom: v7.0.0 **Breaking change detected.** [Compare source](https://github.com/testing-library/jest-dom/compare/6.9.1...v7.0.0) # [7.0.0](https://github.com/testing-library/jest-dom/compare/v6.10.0...v7.0.0) (2026-07-20) ### Features * add toContainAnyBy* and toContainOneBy* query matchers ([1e39089](https://github.com/testing-library/jest-dom/commit/1e39089d850408a583c83495d00d8aa27078933f)) ### BREAKING CHANGES * @testing-library/dom is now a required peer dependency. The minimum supported Node.js version is now 22. Repaired release for https://github.com/testing-library/jest-dom/pull/731 ### [`plugin-react@6.0.3`](https://github.com/vitejs/vite-plugin-react/releases/tag/plugin-react%406.0.3): @vitejs/plugin-react: plugin-react@6.0.3 [Compare source](https://github.com/vitejs/vite-plugin-react/compare/6.0.3...plugin-react@6.0.3) ### [`v4.3.3`](https://github.com/tailwindlabs/tailwindcss/releases/tag/v4.3.3): tailwindcss: v4.3.3 [Compare source](https://github.com/tailwindlabs/tailwindcss/compare/4.3.2...v4.3.3) ### Fixed - Support `--watch --poll[=ms]` in `@tailwindcss/cli` when filesystem events are unreliable or unavailable ([#20297](https://github.com/tailwindlabs/tailwindcss/pull/20297)) - Canonicalization: match arbitrary hex colors against theme colors case-insensitively (e.g. `bg-[#fff]` and `bg-[#FFF]` → `bg-white`) ([#20298](https://github.com/tailwindlabs/tailwindcss/pull/20298)) - Prevent Preflight from overriding Firefox's native `iframe:focus-visible` outline styles ([#20292](https://github.com/tailwindlabs/tailwindcss/pull/20292)) - Ensure `theme('colors.foo')` in JS plugins resolves correctly when both `--color-foo` and `--color-foo-bar` exist ([#20299](https://github.com/tailwindlabs/tailwindcss/pull/20299)) - Ensure fractional opacity modifiers work with named shadow sizes like `shadow-sm/12.5`, `text-shadow-sm/12.5`, `drop-shadow-sm/12.5`, and `inset-shadow-sm/12.5` ([#20302](https://github.com/tailwindlabs/tailwindcss/pull/20302)) - Parse selectors like `[data-foo]div` as two selectors instead of one ([#20303](https://github.com/tailwindlabs/tailwindcss/pull/20303)) - Ensure `@tailwindcss/postcss` rebuilds when a preprocessor like Sass changes the input CSS without changing the input file on disk ([#20310](https://github.com/tailwindlabs/tailwindcss/pull/20310)) - Ensure CSS nesting is handled even when Lightning CSS isn't run, such as in `@tailwindcss/browser` and Tailwind Play ([#20124](https://github.com/tailwindlabs/tailwindcss/pull/20124)) - Prevent achromatic theme colors from shifting hue when mixed in polar color spaces like `oklch` ([#20314](https://github.com/tailwindlabs/tailwindcss/pull/20314)) - Ensure `--spacing(0)` is optimized to `0px` instead of `0` so it remains a `<length>` when used in `calc(…)` ([#20319](https://github.com/tailwindlabs/tailwindcss/pull/20319)) - Load `@parcel/watcher` only when needed in `@tailwindcss/cli --watch` mode, so one-off builds and `--watch --poll` work when `@parcel/watcher` can't be loaded ([#20325](https://github.com/tailwindlabs/tailwindcss/pull/20325)) - Use explicit platform fonts instead of `system-ui` and `ui-sans-serif` so CJK text respects the page's `lang` attribute on Windows ([#20318](https://github.com/tailwindlabs/tailwindcss/pull/20318)) - Prevent `@tailwindcss/upgrade` from rewriting ignored files when run from a subdirectory ([#20329](https://github.com/tailwindlabs/tailwindcss/pull/20329)) - Ensure earlier `@source` rules pointing to nested files are scanned when later `@source` rules point to files in parent folders ([#20335](https://github.com/tailwindlabs/tailwindcss/pull/20335)) - Prevent `@tailwindcss/vite` from triggering full page reloads when scanned files are processed by Vite but haven't been loaded as modules yet ([#20336](https://github.com/tailwindlabs/tailwindcss/pull/20336)) ### [`v8.1.4`](https://github.com/vitejs/vite/releases/tag/v8.1.4): vite: v8.1.4 [Compare source](https://github.com/vitejs/vite/compare/8.1.3...v8.1.4) Please refer to [CHANGELOG.md](https://github.com/vitejs/vite/blob/v8.1.4/packages/vite/CHANGELOG.md) for details. ### [`v8.1.5`](https://github.com/vitejs/vite/releases/tag/v8.1.5): vite: v8.1.5 [Compare source](https://github.com/vitejs/vite/compare/8.1.3...v8.1.5) Please refer to [CHANGELOG.md](https://github.com/vitejs/vite/blob/v8.1.5/packages/vite/CHANGELOG.md) for details. </details>
chore: update npm dependencies
All checks were successful
CI / Quality (pull_request) Successful in 25m2s
CI / Build (pull_request) Successful in 2m9s
8c60d6017a
Wuast94 force-pushed updatarr/npm-dependencies-bac734c5b3 from 8c60d6017a
All checks were successful
CI / Quality (pull_request) Successful in 25m2s
CI / Build (pull_request) Successful in 2m9s
to 41f361d408
All checks were successful
CI / Quality (pull_request) Successful in 24m25s
CI / Build (pull_request) Successful in 1m57s
2026-07-09 16:38:12 +02:00
Compare
Wuast94 force-pushed updatarr/npm-dependencies-bac734c5b3 from 41f361d408
All checks were successful
CI / Quality (pull_request) Successful in 24m25s
CI / Build (pull_request) Successful in 1m57s
to 40510cf2ef
All checks were successful
CI / Quality (pull_request) Successful in 24m35s
CI / Build (pull_request) Successful in 2m16s
2026-07-09 17:15:10 +02:00
Compare
Wuast94 force-pushed updatarr/npm-dependencies-bac734c5b3 from 40510cf2ef
All checks were successful
CI / Quality (pull_request) Successful in 24m35s
CI / Build (pull_request) Successful in 2m16s
to 382f5fc200
All checks were successful
CI / Quality (pull_request) Successful in 21m23s
CI / Build (pull_request) Successful in 1m45s
2026-07-10 06:49:43 +02:00
Compare
Wuast94 force-pushed updatarr/npm-dependencies-bac734c5b3 from 382f5fc200
All checks were successful
CI / Quality (pull_request) Successful in 21m23s
CI / Build (pull_request) Successful in 1m45s
to 98b4cdcd99
All checks were successful
CI / Quality (pull_request) Successful in 26m37s
CI / Build (pull_request) Successful in 4m22s
2026-07-10 15:25:31 +02:00
Compare
Wuast94 force-pushed updatarr/npm-dependencies-bac734c5b3 from 98b4cdcd99
All checks were successful
CI / Quality (pull_request) Successful in 26m37s
CI / Build (pull_request) Successful in 4m22s
to 5c626756cb
All checks were successful
CI / Quality (pull_request) Successful in 24m47s
CI / Build (pull_request) Successful in 2m12s
2026-07-10 16:48:19 +02:00
Compare
Wuast94 force-pushed updatarr/npm-dependencies-bac734c5b3 from 5c626756cb
All checks were successful
CI / Quality (pull_request) Successful in 24m47s
CI / Build (pull_request) Successful in 2m12s
to ad5d04fb83
All checks were successful
CI / Quality (pull_request) Successful in 21m27s
CI / Build (pull_request) Successful in 1m34s
2026-07-11 16:33:23 +02:00
Compare
Wuast94 force-pushed updatarr/npm-dependencies-bac734c5b3 from ad5d04fb83
All checks were successful
CI / Quality (pull_request) Successful in 21m27s
CI / Build (pull_request) Successful in 1m34s
to 43d919f10e
All checks were successful
CI / Quality (pull_request) Successful in 20m36s
CI / Build (pull_request) Successful in 1m23s
2026-07-14 05:33:56 +02:00
Compare
Wuast94 force-pushed updatarr/npm-dependencies-bac734c5b3 from 43d919f10e
All checks were successful
CI / Quality (pull_request) Successful in 20m36s
CI / Build (pull_request) Successful in 1m23s
to 2e8881db5e
All checks were successful
CI / Quality (pull_request) Successful in 20m38s
CI / Build (pull_request) Successful in 1m22s
2026-07-14 08:02:34 +02:00
Compare
Wuast94 force-pushed updatarr/npm-dependencies-bac734c5b3 from 2e8881db5e
All checks were successful
CI / Quality (pull_request) Successful in 20m38s
CI / Build (pull_request) Successful in 1m22s
to d7d2eeb94b
All checks were successful
CI / Quality (pull_request) Successful in 21m27s
CI / Build (pull_request) Successful in 2m8s
2026-07-14 09:55:28 +02:00
Compare
Wuast94 force-pushed updatarr/npm-dependencies-bac734c5b3 from d7d2eeb94b
All checks were successful
CI / Quality (pull_request) Successful in 21m27s
CI / Build (pull_request) Successful in 2m8s
to 5598503981
All checks were successful
CI / Quality (pull_request) Successful in 21m32s
CI / Build (pull_request) Successful in 2m27s
2026-07-14 12:28:53 +02:00
Compare
Wuast94 force-pushed updatarr/npm-dependencies-bac734c5b3 from 5598503981
All checks were successful
CI / Quality (pull_request) Successful in 21m32s
CI / Build (pull_request) Successful in 2m27s
to ce60bc93bc
All checks were successful
CI / Quality (pull_request) Successful in 20m28s
CI / Build (pull_request) Successful in 1m25s
2026-07-14 14:20:07 +02:00
Compare
Wuast94 force-pushed updatarr/npm-dependencies-bac734c5b3 from ce60bc93bc
All checks were successful
CI / Quality (pull_request) Successful in 20m28s
CI / Build (pull_request) Successful in 1m25s
to cee0b85564
All checks were successful
CI / Quality (pull_request) Successful in 20m53s
CI / Build (pull_request) Successful in 1m19s
2026-07-14 16:51:56 +02:00
Compare
Wuast94 force-pushed updatarr/npm-dependencies-bac734c5b3 from cee0b85564
All checks were successful
CI / Quality (pull_request) Successful in 20m53s
CI / Build (pull_request) Successful in 1m19s
to f4d3b8b92d
Some checks failed
CI / Quality (pull_request) Successful in 20m38s
CI / Build (pull_request) Failing after 14m22s
2026-07-15 04:58:39 +02:00
Compare
Wuast94 force-pushed updatarr/npm-dependencies-bac734c5b3 from f4d3b8b92d
Some checks failed
CI / Quality (pull_request) Successful in 20m38s
CI / Build (pull_request) Failing after 14m22s
to 4f21ac062b
Some checks failed
CI / Quality (pull_request) Successful in 1m58s
CI / Build (pull_request) Failing after 1m53s
2026-07-15 05:35:47 +02:00
Compare
Wuast94 force-pushed updatarr/npm-dependencies-bac734c5b3 from 4f21ac062b
Some checks failed
CI / Quality (pull_request) Successful in 1m58s
CI / Build (pull_request) Failing after 1m53s
to 9a54a831c7
Some checks failed
CI / Quality (pull_request) Successful in 2m10s
CI / Build (pull_request) Failing after 1m42s
2026-07-15 16:18:15 +02:00
Compare
Wuast94 force-pushed updatarr/npm-dependencies-bac734c5b3 from 9a54a831c7
Some checks failed
CI / Quality (pull_request) Successful in 2m10s
CI / Build (pull_request) Failing after 1m42s
to ef1a0582b5
Some checks failed
CI / Quality (pull_request) Successful in 1m39s
CI / Build (pull_request) Failing after 1m47s
2026-07-16 16:37:23 +02:00
Compare
Wuast94 force-pushed updatarr/npm-dependencies-bac734c5b3 from ef1a0582b5
Some checks failed
CI / Quality (pull_request) Successful in 1m39s
CI / Build (pull_request) Failing after 1m47s
to 9187a28e8b
Some checks failed
CI / Quality (pull_request) Successful in 4m53s
CI / Build (pull_request) Failing after 2m23s
2026-07-17 16:40:11 +02:00
Compare
Wuast94 force-pushed updatarr/npm-dependencies-bac734c5b3 from 9187a28e8b
Some checks failed
CI / Quality (pull_request) Successful in 4m53s
CI / Build (pull_request) Failing after 2m23s
to 773f9c5c63
Some checks failed
CI / Quality (pull_request) Successful in 5m16s
CI / Build (pull_request) Failing after 2m7s
2026-07-19 16:41:57 +02:00
Compare
Wuast94 force-pushed updatarr/npm-dependencies-bac734c5b3 from 773f9c5c63
Some checks failed
CI / Quality (pull_request) Successful in 5m16s
CI / Build (pull_request) Failing after 2m7s
to 87cf7132a4
Some checks failed
CI / Quality (pull_request) Successful in 4m22s
CI / Build (pull_request) Failing after 3m19s
2026-07-21 02:38:20 +02:00
Compare
Wuast94 force-pushed updatarr/npm-dependencies-bac734c5b3 from 87cf7132a4
Some checks failed
CI / Quality (pull_request) Successful in 4m22s
CI / Build (pull_request) Failing after 3m19s
to 1193880e64
Some checks failed
CI / Quality (pull_request) Successful in 9m6s
CI / Build (pull_request) Has been cancelled
2026-07-21 15:48:11 +02:00
Compare
Wuast94 changed title from chore: update npm dependencies to [breaking] chore: update npm dependencies 2026-07-21 17:23:27 +02:00
Wuast94 force-pushed updatarr/npm-dependencies-bac734c5b3 from 1193880e64
Some checks failed
CI / Quality (pull_request) Successful in 9m6s
CI / Build (pull_request) Has been cancelled
to d12fa7ee26
Some checks failed
CI / Quality (pull_request) Successful in 12m22s
CI / Build (pull_request) Failing after 5m46s
2026-07-21 17:23:28 +02:00
Compare
Wuast94 force-pushed updatarr/npm-dependencies-bac734c5b3 from d12fa7ee26
Some checks failed
CI / Quality (pull_request) Successful in 12m22s
CI / Build (pull_request) Failing after 5m46s
to 9888de6b54
Some checks failed
CI / Quality (pull_request) Successful in 4m29s
CI / Build (pull_request) Failing after 6m29s
2026-07-22 11:25:42 +02:00
Compare
Wuast94 force-pushed updatarr/npm-dependencies-bac734c5b3 from 9888de6b54
Some checks failed
CI / Quality (pull_request) Successful in 4m29s
CI / Build (pull_request) Failing after 6m29s
to 05a89afecc
Some checks failed
CI / Quality (pull_request) Successful in 6m58s
CI / Build (pull_request) Failing after 5m52s
2026-07-22 17:06:22 +02:00
Compare
Wuast94 force-pushed updatarr/npm-dependencies-bac734c5b3 from 05a89afecc
Some checks failed
CI / Quality (pull_request) Successful in 6m58s
CI / Build (pull_request) Failing after 5m52s
to b2d52ba842
Some checks failed
CI / Quality (pull_request) Successful in 9m22s
CI / Build (pull_request) Failing after 6m14s
2026-07-22 18:39:48 +02:00
Compare
Wuast94 force-pushed updatarr/npm-dependencies-bac734c5b3 from b2d52ba842
Some checks failed
CI / Quality (pull_request) Successful in 9m22s
CI / Build (pull_request) Failing after 6m14s
to 766ff733ec
All checks were successful
CI / Quality (pull_request) Successful in 9m4s
CI / Build (pull_request) Successful in 6m29s
2026-07-22 21:30:37 +02:00
Compare
Wuast94 force-pushed updatarr/npm-dependencies-bac734c5b3 from 766ff733ec
All checks were successful
CI / Quality (pull_request) Successful in 9m4s
CI / Build (pull_request) Successful in 6m29s
to a7f661cde0
All checks were successful
CI / Quality (pull_request) Successful in 4m25s
CI / Build (pull_request) Successful in 2m5s
2026-07-22 22:50:42 +02:00
Compare
Sign in to join this conversation.
No reviewers
No labels
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
Wuast94/updatarr!87
No description provided.