Skip to content

fix(deps): bump the all group across 1 directory with 19 updates#173

Closed
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/all-06c1986ffb
Closed

fix(deps): bump the all group across 1 directory with 19 updates#173
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/all-06c1986ffb

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github Apr 13, 2026

Bumps the all group with 19 updates in the / directory:

Package From To
@biomejs/biome 2.4.10 2.4.11
knip 6.1.1 6.4.1
lefthook 2.1.4 2.1.5
turbo 2.9.1 2.9.6
ultracite 7.4.2 7.5.6
@jitl/quickjs-ng-wasmfile-release-sync 0.31.0 0.32.0
vite 8.0.3 8.0.8
@codemirror/view 6.40.0 6.41.0
@tanstack/react-form 1.28.6 1.29.0
@vp-tw/nanostores-qs 1.0.0 2.0.0
astro 6.1.2 6.1.6
eslint-linter-browserify 10.1.0 10.2.0
globals 17.4.0 17.5.0
lucide-react 1.7.0 1.8.0
react 19.2.4 19.2.5
react-dom 19.2.4 19.2.5
react-resizable-panels 4.8.0 4.10.0
vite-plugin-svgr 5.0.0 5.2.0
@astrojs/react 5.0.2 5.0.3

Updates @biomejs/biome from 2.4.10 to 2.4.11

Release notes

Sourced from @​biomejs/biome's releases.

Biome CLI v2.4.11

2.4.11

Patch Changes

  • #9350 4af4a3a Thanks @​dyc3! - Added the new nursery rule useConsistentTestIt in the test domain. The rule enforces consistent use of either it or test for test functions in Jest/Vitest suites, with separate control for top-level tests and tests inside describe blocks.

    Invalid:

    test("should fly", () => {}); // Top-level test using 'test' flagged, convert to 'it'
    describe("pig", () => {
    test("should fly", () => {}); // Test inside 'describe' using 'test' flagged, convert to 'it'
    });

  • #9429 a2f3f7e Thanks @​ematipico! - Added the new nursery lint rule useExplicitReturnType. It reports TypeScript functions and methods that omit an explicit return type.

    function toString(x: any) {
      // rule triggered, it doesn't declare a return type
      return x.toString();
    }
  • #9828 9e40844 Thanks @​ematipico! - Fixed #9484: the formatter no longer panics when formatting files that contain graphql tagged template literals combined with parenthesized expressions.

  • #9886 e7c681e Thanks @​ematipico! - Fixed an issue where, occasionally, some bindings and references were not properly tracked, causing false positives from noUnusedVariables and noUndeclaredVariables in Svelte, Vue, and Astro files.

  • #9760 5b16d18 Thanks @​myx0m0p! - Fixed #4093: the noDelete rule no longer triggers for delete process.env.FOO, since delete is the documented way to remove environment variables in Node.js.

  • #9799 2af8efd Thanks @​minseong0324! - Added the rule noMisleadingReturnType. The rule detects when a function's return type annotation is wider than what the implementation actually returns.

    // Flagged: `: string` is wider than `"loading" | "idle"`
    function getStatus(b: boolean): string {
      if (b) return "loading";
      return "idle";
    }
  • #9880 7f67749 Thanks @​dyc3! - Improved the diagnostics for useFind to better explain the problem, why it matters, and how to fix it.

  • #9755 bff7bdb Thanks @​ematipico! - Improved performance of fix-all operations (--write). Biome is now smarter when it runs lint rules and assist actions. First, it runs only rules that have code fixes, and then runs the rest of the rules.

  • #8651 aafca2d Thanks @​siketyan! - Add a new lint rule useDisposables for JavaScript, which detects disposable objects assigned to variables without using or await using syntax. Disposable objects that implement the Disposable or AsyncDisposable interface are intended to be disposed of after use. Not disposing them can lead to resource or memory leaks, depending on the implementation.

    Invalid:

... (truncated)

Changelog

Sourced from @​biomejs/biome's changelog.

2.4.11

Patch Changes

  • #9350 4af4a3a Thanks @​dyc3! - Added the new nursery rule useConsistentTestIt in the test domain. The rule enforces consistent use of either it or test for test functions in Jest/Vitest suites, with separate control for top-level tests and tests inside describe blocks.

    Invalid:

    test("should fly", () => {}); // Top-level test using 'test' flagged, convert to 'it'
    describe("pig", () => {
    test("should fly", () => {}); // Test inside 'describe' using 'test' flagged, convert to 'it'
    });

  • #9429 a2f3f7e Thanks @​ematipico! - Added the new nursery lint rule useExplicitReturnType. It reports TypeScript functions and methods that omit an explicit return type.

    function toString(x: any) {
      // rule triggered, it doesn't declare a return type
      return x.toString();
    }
  • #9828 9e40844 Thanks @​ematipico! - Fixed #9484: the formatter no longer panics when formatting files that contain graphql tagged template literals combined with parenthesized expressions.

  • #9886 e7c681e Thanks @​ematipico! - Fixed an issue where, occasionally, some bindings and references were not properly tracked, causing false positives from noUnusedVariables and noUndeclaredVariables in Svelte, Vue, and Astro files.

  • #9760 5b16d18 Thanks @​myx0m0p! - Fixed #4093: the noDelete rule no longer triggers for delete process.env.FOO, since delete is the documented way to remove environment variables in Node.js.

  • #9799 2af8efd Thanks @​minseong0324! - Added the rule noMisleadingReturnType. The rule detects when a function's return type annotation is wider than what the implementation actually returns.

    // Flagged: `: string` is wider than `"loading" | "idle"`
    function getStatus(b: boolean): string {
      if (b) return "loading";
      return "idle";
    }
  • #9880 7f67749 Thanks @​dyc3! - Improved the diagnostics for useFind to better explain the problem, why it matters, and how to fix it.

  • #9755 bff7bdb Thanks @​ematipico! - Improved performance of fix-all operations (--write). Biome is now smarter when it runs lint rules and assist actions. First, it runs only rules that have code fixes, and then runs the rest of the rules.

  • #8651 aafca2d Thanks @​siketyan! - Add a new lint rule useDisposables for JavaScript, which detects disposable objects assigned to variables without using or await using syntax. Disposable objects that implement the Disposable or AsyncDisposable interface are intended to be disposed of after use. Not disposing them can lead to resource or memory leaks, depending on the implementation.

    Invalid:

... (truncated)

Commits

Updates knip from 6.1.1 to 6.4.1

Release notes

Sourced from knip's releases.

Release 6.4.1

  • license (2d3d8d86ea51f18224c3558a38c28df00113f683)
  • Handle file path arguments in Bun plugin (resolve #1678) (cdbe298efcb226ae4baec6567a0cbb6fdf001ee8)

Release 6.4.0

  • chore: change license file to have more conventional casing (#1664) (ed97e6a37) - thanks @​Zamiell!
  • fix: whitelist spelling error (#1666) (bcad12012) - thanks @​Zamiell!
  • Add Panda CSS plugin (#1671) (7ab0d4d88) - thanks @​Faithfinder!
  • fix(rspack): detect plugins from swc-loader (#1675) (1431ff3d5) - thanks @​TkDodo!
  • docs: fix broken anchor link in DEVELOPMENT.md (#1677) (e78c7f609) - thanks @​vincent067!
  • Fix @jest-environment pragma resolution and limit pragma scope (3832364e2)
  • Track Object enumeration to skip enum-member checks in nsTypes mode (a47aff535)
  • Cache module resolution by directory + specifier (cefed38c2)
  • Skip read+parse in walkAndAnalyze when the file cache will hit (25a7982c1)
  • Collapse double statSync in FileEntryCache.reconcile (b63fbd9f2)
  • Refactor walkAndAnalyze: dedupe cached/uncached paths (573df54ba)
  • Cache glob results across --cache runs (6ab8de805)
  • Mark namespace members used when enumerated via Object.* (dabf8ce77)
  • Add config hints for redundant/unregistered extensions (close #1672, close #1673) (050689575)
  • Enable Tailwind CSS compiler for @​tailwindcss integrations (close #1674) (f3ed14d0e)
  • Resolve scss path aliases (resolve #1676) (00ae83be9)
  • Re-gen plugins.md (35d8fabaa)
  • Resolve path.join(__dirname, ...) in Worker/child_process calls (#1660) (40a917e3f)
  • license (608f0ed76)

Release 6.3.1

  • Fix peer dependency resolution (#1645) (0a6e93d16f89bde270a5458c0e76e1c6a996012f) - thanks @​controversial!
  • Support absolute file paths in react-router routes (#1659) (97bb283e31eb72da8c60fcede607b22da2929103) - thanks @​mpalmer685!
  • Track namespace imports used as object property values (resolve #1669) (c4d6b28df5955abbe9dde40d245ceb5a6e0bc669)
  • Split plugins/util smoke globs to fit Windows cmd.exe limit (33ef87d15770d0ee9dc248a640538ce2f0d75a46)

Release 6.3.0

  • Re-gen sponsorships chart (83ee4895f36d934bf9f2efaaaf3e141c33c889f8)
  • Add testimonial (be16c54d379698899e3f10646bb23b280024b989)
  • Add deferred resolve entries as direct entry paths to avoid ws exclusion (91a183539fb63528f900b187328c3bba1b161e88)
  • Add rolldown plugin (resolve #1661) (44bfd6273375384dc0b01b2cf673b6ad1b6783f0)
  • Housekeep plugins a bit (dc6986821bde185185b730e119d2c528048f9976)
  • Improve module.register handling (b9e36ea42d0b2b35d6080aafc94b292a3d7fd711)
  • Housekeep release script (f81bd0f5f6630c2cac9934c3b96ace0d42bd2353)

Release 6.2.0

  • Support tilde-prefixed scoped package names (e.g. @~private/pkg) (#1656) (947893d9dd9135fb8878e30de65841d4dff17f0c) - thanks @​MatissJanis!
  • fix(storybook): mark vitest coverage deps as optional when addon-vitest is used (#1654) (06e88d42d7c1f89e18cba3d09c12ef080cb231a4) - thanks @​brick-pixel!
  • Deduplicate module graph queue to avoid redundant file processing (#1657) (e34d3b0dd4cc97d16a9c70c7bd436372a3e3081d) - thanks @​MatissJanis!
  • Export KnipConfiguration type for dynamic config use cases (resolve #1634) (4a64e0e833511859b7703ac36e08a178e663192d)
  • Release knip@6.2.0 (d8c016164fda981209186c205f86329b522e76ee)
Commits

Updates lefthook from 2.1.4 to 2.1.5

Release notes

Sourced from lefthook's releases.

v2.1.5

Changelog

  • afac466157f88b5a5f9d03eb28acc90b095a4b5d chore(golangci-lint): upgrade to 2.11.4 (#1362)
  • f8e73b947e2eefd6950d6a19c20bbde19070809d chore: fix golangci-lint version lookup
  • 4564da343b1497f73f8a82f6104e1b5903f8a081 chore: move golangci-lint version to .tool-versions (#1349)
  • 236a5bd07c650aaa882963d68ab5e5e654a47681 chore: small cleanup (#1370)
  • 5ddf2206dd23e826c5434392e034fa7db523cd3d deps: April 2026 (#1375)
  • e26c719f5a85e8ff35871e9724649714d6f05c13 fix: git repository merge issue (#1372)
  • 3503a3b102c2b41c298e1e7dc6549181508518a6 fix: prevent lefthook run from overwriting global hooks (#1371)
  • f3fc175f6c638fd54ab49b8d7c060898f936c934 fix: use pre-push stdin for push file detection (#1368)
Changelog

Sourced from lefthook's changelog.

2.1.5 (2026-04-06)

Commits

Updates turbo from 2.9.1 to 2.9.6

Release notes

Sourced from turbo's releases.

Turborepo v2.9.6

What's Changed

create-turbo

Examples

Changelog

Full Changelog: vercel/turborepo@v2.9.5...v2.9.6

Turborepo v2.9.6-canary.3

What's Changed

Changelog

Full Changelog: vercel/turborepo@v2.9.6-canary.2...v2.9.6-canary.3

Turborepo v2.9.6-canary.2

What's Changed

create-turbo

Examples

Changelog

Full Changelog: vercel/turborepo@v2.9.6-canary.1...v2.9.6-canary.2

Turborepo v2.9.6-canary.1

What's Changed

@​turbo/telemetry

... (truncated)

Commits

Updates ultracite from 7.4.2 to 7.5.6

Release notes

Sourced from ultracite's releases.

ultracite@7.5.6

Patch Changes

  • acf4a97: Update oxlint jest rules
  • 6905932: Fix vitest/no-importing-vitest-globals conflict
  • 4e4dc03: Update oxlint vitest rules
  • 6a583d1: Fix oxfmt setup config

ultracite@7.5.5

Patch Changes

  • 5437f81: Attempt to fix oxlint/oxfmt AGAIN

ultracite@7.5.4

Patch Changes

  • 66999e0: Fix oxlint and oxfmt yet again

ultracite@7.5.3

Patch Changes

  • 97c3938: Fix oxlint and oxfmt import paths

ultracite@7.5.2

Patch Changes

  • 22df7a5: Fix oxlint import issues

ultracite@7.5.1

Patch Changes

  • e96c55a: Switch oxlint.config.ts to js imports

ultracite@7.5.0

Minor Changes

  • 7861cf7: Migrate oxlint and oxfmt configurations from JSON to TypeScript using defineConfig. The CLI now generates oxlint.config.ts and oxfmt.config.ts instead of .oxlintrc.json and .oxfmtrc.jsonc, and all internal framework presets have been converted to TypeScript.

Patch Changes

  • fdb1493: Exclude package manager lock files (bun.lock, bun.lockb, package-lock.json, yarn.lock, pnpm-lock.yaml) from Biome linting and formatting

ultracite@7.4.4

Patch Changes

  • e9db6f1: Add IBM Bob agent, editor, and logo
  • 5341bcc: Disable vitest/prefer-strict-boolean-matchers to resolve conflict with prefer-to-be-truthy and prefer-to-be-falsy

ultracite@7.4.3

Patch Changes

... (truncated)

Commits

Updates @jitl/quickjs-ng-wasmfile-release-sync from 0.31.0 to 0.32.0

Changelog

Sourced from @​jitl/quickjs-ng-wasmfile-release-sync's changelog.

v0.32.0

  • #227

    • Re-works function binding in newFunction to use a different proxying strategy based on a new abstraction, HostRef. HostRef allows tracking references of host values from guest handles. Once all references to the HostRef object are disposed (either in the host, or GC'd in the guest), the host value will be dereferenced and become garbage collectable.
    • Functions passed to newFunction are interned in the runtime's HostRefMap until dereferenced.
    • HostRef is also exposed directly for use from QuickJSContext, see newHostRef, toHostRef, unwrapHostRef in the docs.
    • Added QuickJSContext.newConstructorFunction, such functions will have their this set to the newly constructed object, although they may also return a new object.
  • #244 Upgrade quickjs-ng to v0.12.1.

  • #243 (thanks to @​josh-) Upgrade bellard/quickjs to 2025-09-13+f1139494. Review the QuickJS changelog for details.

    • Some intrinsics like BigInt are now always enabled.
    • BigNum extension removed.
  • #242 Upgrade to Emscripten 5.0.1.

  • #221 (thanks to @​melbourne2991) Support generator return values in QuickJSIterator.

Commits

Updates vite from 8.0.3 to 8.0.8

Release notes

Sourced from vite's releases.

v8.0.8

Please refer to CHANGELOG.md for details.

v8.0.7

Please refer to CHANGELOG.md for details.

v8.0.6

Please refer to CHANGELOG.md for details.

v8.0.5

Please refer to CHANGELOG.md for details.

v8.0.4

Please refer to CHANGELOG.md for details.

Changelog

Sourced from vite's changelog.

8.0.8 (2026-04-09)

Features

Bug Fixes

  • avoid dns.getDefaultResultOrder temporary (#22202) (15f1c15)
  • ssr: class property keys hoisting matching imports (#22199) (e137601)

8.0.7 (2026-04-07)

Bug Fixes

  • use sync dns.getDefaultResultOrder instead of dns.promises (#22185) (5c05b04)

8.0.6 (2026-04-07)

Features

Bug Fixes

Performance Improvements

  • early return in getLocalhostAddressIfDiffersFromDNS when DNS order is verbatim (#22151) (56ec256)

Miscellaneous Chores

8.0.5 (2026-04-06)

Bug Fixes

  • apply server.fs check to env transport (#22159) (f02d9fd)
  • avoid path traversal with optimize deps sourcemap handler (#22161) (79f002f)
  • check server.fs after stripping query as well (#22160) (a9a3df2)
  • disallow referencing files outside the package from sourcemap (#22158) (f05f501)

8.0.4 (2026-04-06)

Features

  • allow esbuild 0.28 as peer deps (#22155) (b0da973)
  • hmr: truncate list of files on hmr update (#21535) (d00e806)
  • optimizer: log when dependency scanning or bundling takes over 1s (#21797) (f61a1ab)

Bug Fixes

... (truncated)

Commits

Updates @codemirror/view from 6.40.0 to 6.41.0

Changelog

Sourced from @​codemirror/view's changelog.

6.41.0 (2026-04-01)

Bug fixes

Fix an issue where EditorView.posAtCoords could incorrectly return a position near a higher element on the line, in mixed-font-size lines.

Expand the workaround for the Webkit bug that causes nonexistent selections to stay visible to be active on non-Safari Webkit browsers.

New features

The new EditorView.cursorScrollMargin facet can now be used to configure the extra space used when scrolling the cursor into view.

Commits
  • a0a5ed9 Mark version 6.41.0
  • c834ebf Enable the workaround for ghost selections in all forms of Webkit
  • 49d72c4 Improve posAtCoords in non-uniform height lines
  • 4935d24 Make the margin used when scrolling the cursor into view configurable
  • ed7d625 Remove duplicated slash in forum url in README
  • c3770d3 Fix forum link in readme
  • See full diff in compare view

Updates @tanstack/react-form from 1.28.6 to 1.29.0

Release notes

Sourced from @​tanstack/react-form's releases.

@​tanstack/react-form-nextjs@​1.29.0

Patch Changes

  • Updated dependencies [d6ab662]:
    • @​tanstack/react-form@​1.29.0

@​tanstack/react-form-remix@​1.29.0

Patch Changes

  • Updated dependencies [d6ab662]:
    • @​tanstack/react-form@​1.29.0

@​tanstack/react-form-start@​1.29.0

Patch Changes

  • Updated dependencies [d6ab662]:
    • @​tanstack/react-form@​1.29.0

@​tanstack/react-form@​1.29.0

Minor Changes

  • Adds extension method to AppForm allowing for teams to extend upstream AppForms (#2106)

Patch Changes

  • Updated dependencies []:
    • @​tanstack/form-core@​1.29.0
Changelog

Sourced from @​tanstack/react-form's changelog.

1.29.0

Minor Changes

  • Adds extension method to AppForm allowing for teams to extend upstream AppForms (#2106)

Patch Changes

  • Updated dependencies []:
    • @​tanstack/form-core@​1.29.0
Commits

Updates @vp-tw/nanostores-qs from 1.0.0 to 2.0.0

Release notes

Sourced from @​vp-tw/nanostores-qs's releases.

@​vp-tw/nanostores-qs@​2.0.0

Breaking Changes

  • Removed defineSearchParam — the def() callback pattern is replaced by direct config objects and the new presets API
  • Removed .setEncode() chaining — pass encode directly in the config object
- const store = qsUtils.createSearchParamStore("n", (def) =>
-   def({ decode: Number }).setEncode(String)
- );
+ const store = qsUtils.createSearchParamStore("n", {
+   decode: (v) => Number(v),
+   encode: (v) => String(v),
+ });

New Features

Presets (@vp-tw/nanostores-qs/presets)

Type-safe, function-based preset configs for common URL parameter types. Every preset is a function that returns a config object compatible with createSearchParamStore / createSearchParamsStore.

import * as presets from "@vp-tw/nanostores-qs/presets";
qsUtils.createSearchParamStore("page", presets.integer({ default: 1, min: 1 }));
qsUtils.createSearchParamStore("q", presets.string({ optional: true }));
qsUtils.createSearchParamStore("sort", presets.enum(["asc", "desc"]));
qsUtils.createSearchParamStore("tags", presets.enum(["a", "b"], { array: true }));

Built-in presets: string, integer, float, boolean, enum, date, ymd, hms, tuple

Common options (mutually exclusive): { optional: true }, { default: value }, { array: true }

Preset Specific options
integer round, min, max, outOfRange, numInput
float fixed, min, max, outOfRange, numInput
string maxLength, outOfRange
enum
boolean
date
ymd
hms
tuple Combines multiple preset configs into a positional array

$resolved store

All stores now expose $resolved alongside $value. When a config has a resolve function, $resolved is a computed store that maps $value through it. Without resolve, $resolved === $value (same reference, zero overhead).

... (truncated)

Commits

Bumps the all group with 19 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome) | `2.4.10` | `2.4.11` |
| [knip](https://github.com/webpro-nl/knip/tree/HEAD/packages/knip) | `6.1.1` | `6.4.1` |
| [lefthook](https://github.com/evilmartians/lefthook) | `2.1.4` | `2.1.5` |
| [turbo](https://github.com/vercel/turborepo) | `2.9.1` | `2.9.6` |
| [ultracite](https://github.com/haydenbleasel/ultracite) | `7.4.2` | `7.5.6` |
| [@jitl/quickjs-ng-wasmfile-release-sync](https://github.com/justjake/quickjs-emscripten) | `0.31.0` | `0.32.0` |
| [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `8.0.3` | `8.0.8` |
| [@codemirror/view](https://github.com/codemirror/view) | `6.40.0` | `6.41.0` |
| [@tanstack/react-form](https://github.com/TanStack/form/tree/HEAD/packages/react-form) | `1.28.6` | `1.29.0` |
| [@vp-tw/nanostores-qs](https://github.com/VdustR/nanostores-qs) | `1.0.0` | `2.0.0` |
| [astro](https://github.com/withastro/astro/tree/HEAD/packages/astro) | `6.1.2` | `6.1.6` |
| [eslint-linter-browserify](https://github.com/UziTech/eslint-linter-browserify) | `10.1.0` | `10.2.0` |
| [globals](https://github.com/sindresorhus/globals) | `17.4.0` | `17.5.0` |
| [lucide-react](https://github.com/lucide-icons/lucide/tree/HEAD/packages/lucide-react) | `1.7.0` | `1.8.0` |
| [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `19.2.4` | `19.2.5` |
| [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `19.2.4` | `19.2.5` |
| [react-resizable-panels](https://github.com/bvaughn/react-resizable-panels) | `4.8.0` | `4.10.0` |
| [vite-plugin-svgr](https://github.com/pd4d10/vite-plugin-svgr) | `5.0.0` | `5.2.0` |
| [@astrojs/react](https://github.com/withastro/astro/tree/HEAD/packages/integrations/react) | `5.0.2` | `5.0.3` |



Updates `@biomejs/biome` from 2.4.10 to 2.4.11
- [Release notes](https://github.com/biomejs/biome/releases)
- [Changelog](https://github.com/biomejs/biome/blob/main/packages/@biomejs/biome/CHANGELOG.md)
- [Commits](https://github.com/biomejs/biome/commits/@biomejs/biome@2.4.11/packages/@biomejs/biome)

Updates `knip` from 6.1.1 to 6.4.1
- [Release notes](https://github.com/webpro-nl/knip/releases)
- [Commits](https://github.com/webpro-nl/knip/commits/knip@6.4.1/packages/knip)

Updates `lefthook` from 2.1.4 to 2.1.5
- [Release notes](https://github.com/evilmartians/lefthook/releases)
- [Changelog](https://github.com/evilmartians/lefthook/blob/master/CHANGELOG.md)
- [Commits](evilmartians/lefthook@v2.1.4...v2.1.5)

Updates `turbo` from 2.9.1 to 2.9.6
- [Release notes](https://github.com/vercel/turborepo/releases)
- [Changelog](https://github.com/vercel/turborepo/blob/main/RELEASE.md)
- [Commits](vercel/turborepo@v2.9.1...v2.9.6)

Updates `ultracite` from 7.4.2 to 7.5.6
- [Release notes](https://github.com/haydenbleasel/ultracite/releases)
- [Commits](https://github.com/haydenbleasel/ultracite/compare/ultracite@7.4.2...ultracite@7.5.6)

Updates `@jitl/quickjs-ng-wasmfile-release-sync` from 0.31.0 to 0.32.0
- [Changelog](https://github.com/justjake/quickjs-emscripten/blob/main/CHANGELOG.md)
- [Commits](justjake/quickjs-emscripten@v0.31.0...v0.32.0)

Updates `vite` from 8.0.3 to 8.0.8
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v8.0.8/packages/vite)

Updates `@codemirror/view` from 6.40.0 to 6.41.0
- [Changelog](https://github.com/codemirror/view/blob/main/CHANGELOG.md)
- [Commits](codemirror/view@6.40.0...6.41.0)

Updates `@tanstack/react-form` from 1.28.6 to 1.29.0
- [Release notes](https://github.com/TanStack/form/releases)
- [Changelog](https://github.com/TanStack/form/blob/main/packages/react-form/CHANGELOG.md)
- [Commits](https://github.com/TanStack/form/commits/@tanstack/react-form@1.29.0/packages/react-form)

Updates `@vp-tw/nanostores-qs` from 1.0.0 to 2.0.0
- [Release notes](https://github.com/VdustR/nanostores-qs/releases)
- [Changelog](https://github.com/vp-tw/nanostores-qs/blob/main/CHANGELOG.md)
- [Commits](https://github.com/VdustR/nanostores-qs/compare/@vp-tw/nanostores-qs@1.0.0...@vp-tw/nanostores-qs@2.0.0)

Updates `astro` from 6.1.2 to 6.1.6
- [Release notes](https://github.com/withastro/astro/releases)
- [Changelog](https://github.com/withastro/astro/blob/main/packages/astro/CHANGELOG.md)
- [Commits](https://github.com/withastro/astro/commits/astro@6.1.6/packages/astro)

Updates `eslint-linter-browserify` from 10.1.0 to 10.2.0
- [Changelog](https://github.com/UziTech/eslint-linter-browserify/blob/master/release.mjs)
- [Commits](UziTech/eslint-linter-browserify@v10.1.0...v10.2.0)

Updates `globals` from 17.4.0 to 17.5.0
- [Release notes](https://github.com/sindresorhus/globals/releases)
- [Commits](sindresorhus/globals@v17.4.0...v17.5.0)

Updates `lucide-react` from 1.7.0 to 1.8.0
- [Release notes](https://github.com/lucide-icons/lucide/releases)
- [Commits](https://github.com/lucide-icons/lucide/commits/1.8.0/packages/lucide-react)

Updates `react` from 19.2.4 to 19.2.5
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/v19.2.5/packages/react)

Updates `react-dom` from 19.2.4 to 19.2.5
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/v19.2.5/packages/react-dom)

Updates `react-resizable-panels` from 4.8.0 to 4.10.0
- [Release notes](https://github.com/bvaughn/react-resizable-panels/releases)
- [Changelog](https://github.com/bvaughn/react-resizable-panels/blob/main/CHANGELOG.md)
- [Commits](bvaughn/react-resizable-panels@4.8.0...4.10.0)

Updates `vite-plugin-svgr` from 5.0.0 to 5.2.0
- [Release notes](https://github.com/pd4d10/vite-plugin-svgr/releases)
- [Commits](pd4d10/vite-plugin-svgr@v5.0.0...v5.2.0)

Updates `@astrojs/react` from 5.0.2 to 5.0.3
- [Release notes](https://github.com/withastro/astro/releases)
- [Changelog](https://github.com/withastro/astro/blob/main/packages/integrations/react/CHANGELOG.md)
- [Commits](https://github.com/withastro/astro/commits/@astrojs/react@5.0.3/packages/integrations/react)

---
updated-dependencies:
- dependency-name: "@biomejs/biome"
  dependency-version: 2.4.11
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: knip
  dependency-version: 6.4.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: lefthook
  dependency-version: 2.1.5
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: turbo
  dependency-version: 2.9.6
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: ultracite
  dependency-version: 7.5.6
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: "@jitl/quickjs-ng-wasmfile-release-sync"
  dependency-version: 0.32.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: vite
  dependency-version: 8.0.8
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: "@codemirror/view"
  dependency-version: 6.41.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: "@tanstack/react-form"
  dependency-version: 1.29.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: "@vp-tw/nanostores-qs"
  dependency-version: 2.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all
- dependency-name: astro
  dependency-version: 6.1.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: eslint-linter-browserify
  dependency-version: 10.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: globals
  dependency-version: 17.5.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: lucide-react
  dependency-version: 1.8.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: react
  dependency-version: 19.2.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: react-dom
  dependency-version: 19.2.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: react-resizable-panels
  dependency-version: 4.10.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: vite-plugin-svgr
  dependency-version: 5.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: "@astrojs/react"
  dependency-version: 5.0.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Apr 13, 2026
@Pkcarreno
Copy link
Copy Markdown
Owner

@dependabot help

@Pkcarreno
Copy link
Copy Markdown
Owner

@dependabot ignore @jitl/quickjs-ng-wasmfile-release-sync

@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot Bot commented on behalf of github Apr 19, 2026

OK, I won't notify you about @jitl/quickjs-ng-wasmfile-release-sync again, unless you unignore it.

@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot Bot commented on behalf of github Apr 19, 2026

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot Bot closed this Apr 19, 2026
@dependabot dependabot Bot deleted the dependabot/npm_and_yarn/all-06c1986ffb branch April 19, 2026 23:34
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant