Skip to content

Bump the "infrastructure" group with 2 updates across multiple ecosystems#85

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/infrastructure-fce547fa34
Open

Bump the "infrastructure" group with 2 updates across multiple ecosystems#85
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/infrastructure-fce547fa34

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 5, 2026

Bumps the infrastructure group with 24 updates:

Package From To
@biomejs/biome 2.3.11 2.3.14
@j178/prek 0.2.29 0.3.1
@tauri-apps/cli 2.9.6 2.10.0
@types/node 24.10.9 25.2.0
@react-router/node 7.12.0 7.13.0
@react-router/serve 7.12.0 7.13.0
fumadocs-core 16.4.7 16.5.0
fumadocs-ui 16.4.7 16.5.0
isbot 5.1.33 5.1.34
react 19.2.3 19.2.4
@types/react 19.2.8 19.2.13
react-dom 19.2.3 19.2.4
react-router 7.12.0 7.13.0
@react-router/dev 7.12.0 7.13.0
vite-tsconfig-paths 6.0.4 6.0.5
@tauri-apps/api 2.9.1 2.10.1
@tauri-apps/plugin-shell 2.3.4 2.3.5
lucide-svelte 0.562.0 0.563.0
@tsconfig/svelte 5.0.6 5.0.7
autoprefixer 10.4.23 10.4.24
oxfmt 0.24.0 0.28.0
oxlint 1.39.0 1.43.0
svelte 5.46.4 5.49.2
svelte-check 4.3.5 4.3.6

Updates @biomejs/biome from 2.3.11 to 2.3.14

Release notes

Sourced from @​biomejs/biome's releases.

Biome CLI v2.3.14

2.3.14

Patch Changes

  • #8921 29e2435 Thanks @​siketyan! - Fixed #8759: The useConsistentTypeDefinitions rule no longer converts empty object type declarations into interfaces, as it will conflict with the noEmptyInterface rule and can cause an infinite loop when both rules are enabled.

  • #8928 ccaeac4 Thanks @​taga3s! - Added the nursery rule useGlobalThis. This rule enforces using globalThis over window, self and global.

  • #8602 9a18daa Thanks @​dyc3! - Added the new nursery rule noVueArrowFuncInWatch. This rule forbids using arrow functions in watchers in Vue components, because arrow functions do not give access to the component instance (via this), while regular functions do.

  • #8905 9b1eea8 Thanks @​ryan-m-walker! - Fixed #8428: Improved parsing recovery when encountering qualified rules inside CSS @page at-rule blocks.

  • #8900 f788cff Thanks @​mdevils! - Fixed #8802: useExhaustiveDependencies now correctly suggests dependencies without including callback-scoped variables or method names.

    When accessing object properties with a callback-scoped variable, only the object path is suggested:

    // Now correctly suggests `props.value` instead of `props.value[day]`
    useMemo(() => {
      return WeekdayValues.filter((day) => props.value[day]);
    }, [props.value]);

    When calling methods on objects, only the object is suggested as a dependency:

    // Now correctly suggests `props.data` instead of `props.data.forEach`
    useMemo(() => {
      props.data.forEach((item) => console.log(item));
    }, [props.data]);
  • #8913 e1e20ea Thanks @​dyc3! - Fixed #8363: HTML parser no longer crashes when encountering a < character followed by a digit in text content (e.g., <12 months). The parser now correctly emits an "Unescaped < bracket character" error instead of treating <12 as a tag name and crashing.

  • #8910 2fb63a4 Thanks @​dyc3! - Fixed #8774: Type aliases with generic parameters that have extends constraints now properly indent comments after the equals sign.

    Previously, comments after the = in type aliases with extends constraints were not indented:

    -type A<B, C extends D> = // Some comment
    -undefined;
    +type A<B, C extends D> =
    +    // Some comment
    +    undefined;
  • #8916 ea4bd04 Thanks @​ryan-m-walker! - Fixed #4013, where comments in member chains caused unnecessary line breaks.

... (truncated)

Changelog

Sourced from @​biomejs/biome's changelog.

2.3.14

Patch Changes

  • #8921 29e2435 Thanks @​siketyan! - Fixed #8759: The useConsistentTypeDefinitions rule no longer converts empty object type declarations into interfaces, as it will conflict with the noEmptyInterface rule and can cause an infinite loop when both rules are enabled.

  • #8928 ccaeac4 Thanks @​taga3s! - Added the nursery rule useGlobalThis. This rule enforces using globalThis over window, self and global.

  • #8602 9a18daa Thanks @​dyc3! - Added the new nursery rule noVueArrowFuncInWatch. This rule forbids using arrow functions in watchers in Vue components, because arrow functions do not give access to the component instance (via this), while regular functions do.

  • #8905 9b1eea8 Thanks @​ryan-m-walker! - Fixed #8428: Improved parsing recovery when encountering qualified rules inside CSS @page at-rule blocks.

  • #8900 f788cff Thanks @​mdevils! - Fixed #8802: useExhaustiveDependencies now correctly suggests dependencies without including callback-scoped variables or method names.

    When accessing object properties with a callback-scoped variable, only the object path is suggested:

    // Now correctly suggests `props.value` instead of `props.value[day]`
    useMemo(() => {
      return WeekdayValues.filter((day) => props.value[day]);
    }, [props.value]);

    When calling methods on objects, only the object is suggested as a dependency:

    // Now correctly suggests `props.data` instead of `props.data.forEach`
    useMemo(() => {
      props.data.forEach((item) => console.log(item));
    }, [props.data]);
  • #8913 e1e20ea Thanks @​dyc3! - Fixed #8363: HTML parser no longer crashes when encountering a < character followed by a digit in text content (e.g., <12 months). The parser now correctly emits an "Unescaped < bracket character" error instead of treating <12 as a tag name and crashing.

  • #8910 2fb63a4 Thanks @​dyc3! - Fixed #8774: Type aliases with generic parameters that have extends constraints now properly indent comments after the equals sign.

    Previously, comments after the = in type aliases with extends constraints were not indented:

    -type A<B, C extends D> = // Some comment
    -undefined;
    +type A<B, C extends D> =
    +    // Some comment
    +    undefined;
  • #8916 ea4bd04 Thanks @​ryan-m-walker! - Fixed #4013, where comments in member chains caused unnecessary line breaks.

    // Before

... (truncated)

Commits

Updates @j178/prek from 0.2.29 to 0.3.1

Release notes

Sourced from @​j178/prek's releases.

0.3.1

Release Notes

Released on 2026-01-31.

Enhancements

  • Add language: swift support (#1463)
  • Add language: haskell support (#1484)
  • Extract go version constraint from go.mod (#1457)
  • Warn when config file exists but fails to parse (#1487)
  • Add GitHub artifact attestations to release and build-docker workflow (#1494, #1497)
  • Allow GIT_CONFIG_PARAMETERS for private repository authentication (#1472)
  • Show progress bar when running builtin hooks (#1504)

Bug fixes

  • Cap ARG_MAX at 1<<19 for safety (#1506)
  • Don't check Python executable path in health check (#1496)

Documentation

  • Include CocoIndex as a project using prek (#1477)
  • Add commands for artifact verification using GitHub Attestations (#1500)

Contributors

Install prek 0.3.1

Install prebuilt binaries via shell script

curl --proto '=https' --tlsv1.2 -LsSf https://github.com/j178/prek/releases/download/v0.3.1/prek-installer.sh | sh

Install prebuilt binaries via powershell script

powershell -ExecutionPolicy Bypass -c "irm https://github.com/j178/prek/releases/download/v0.3.1/prek-installer.ps1 | iex"

Install prebuilt binaries via Homebrew

... (truncated)

Changelog

Sourced from @​j178/prek's changelog.

0.3.1

Released on 2026-01-31.

Enhancements

  • Add language: swift support (#1463)
  • Add language: haskell support (#1484)
  • Extract go version constraint from go.mod (#1457)
  • Warn when config file exists but fails to parse (#1487)
  • Add GitHub artifact attestations to release and build-docker workflow (#1494, #1497)
  • Allow GIT_CONFIG_PARAMETERS for private repository authentication (#1472)
  • Show progress bar when running builtin hooks (#1504)

Bug fixes

  • Cap ARG_MAX at 1<<19 for safety (#1506)
  • Don't check Python executable path in health check (#1496)

Documentation

  • Include CocoIndex as a project using prek (#1477)
  • Add commands for artifact verification using GitHub Attestations (#1500)

Contributors

0.3.0

Released on 2026-01-22.

Highlights

  • prek cache gc (also available via prek gc for pre-commit compatibility) is finally here! You can now run prek cache gc to clean up unused repos, hook envs and tool versions from prek cache.
  • language: bun is now supported, making it possible to write and run hooks with Bun.

Enhancements

  • Implement prek cache gc (#1410)

    • Bootstrap tracking configs from workspace cache (#1417)
    • Show total size prek cache gc removed (#1418)
    • Show accurate repo and hook details in prek cache gc -v (#1420)

... (truncated)

Commits

Updates @tauri-apps/cli from 2.9.6 to 2.10.0

Release notes

Sourced from @​tauri-apps/cli's releases.

@​tauri-apps/cli v2.10.0

[2.10.0]

Enhancements

  • f82594410 (#13253 by @​Armaldio) Allow electron to run the CLI directly

  • a2abe2e6b (#14607 by @​sftse) Simplified internal representation of features: Option<Vec<String>> with Vec<String>, no user facing changes

  • 84b04c4a8 (#14759 by @​amrbashir) Added new environment variables for tauri signer sign command, to align with existing environment variables used in tauri build, tauri bundle and tauri signer generate

    • TAURI_SIGNING_PRIVATE_KEY
    • TAURI_SIGNING_PRIVATE_KEY_PATH
    • TAURI_SIGNING_PRIVATE_KEY_PASSWORD

    The old environment variables are deprecated and will be removed in a future release.

    • TAURI_PRIVATE_KEY
    • TAURI_PRIVATE_KEY_PATH
    • TAURI_PRIVATE_KEY_PASSWORD

Bug Fixes

What's Changed

  • e3fdcb500 (#14836 by @​sftse) Continued refactors of tauri-cli, fix too weak atomics.
  • 0575dd287 (#14521 by @​kandrelczyk) Change the way bundle type information is added to binary files. Instead of looking up the value of a variable we simply look for the default value.
  • 7f7d9aac2 (#14668 by @​sftse) Refactored internal use of static on config and directory resolvings, no user facing changes, please report any regressions if you encounter any

Dependencies

  • Upgraded to tauri-cli@2.10.0
Commits
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for @​tauri-apps/cli since your current version.


Updates @types/node from 24.10.9 to 25.2.0

Commits

Updates @react-router/node from 7.12.0 to 7.13.0

Release notes

Sourced from @​react-router/node's releases.

v7.13.0

See the changelog for release notes: https://github.com/remix-run/react-router/blob/main/CHANGELOG.md#v7130

Changelog

Sourced from @​react-router/node's changelog.

7.13.0

Patch Changes

  • Updated dependencies:
    • react-router@7.13.0
Commits

Updates @react-router/serve from 7.12.0 to 7.13.0

Release notes

Sourced from @​react-router/serve's releases.

v7.13.0

See the changelog for release notes: https://github.com/remix-run/react-router/blob/main/CHANGELOG.md#v7130

Changelog

Sourced from @​react-router/serve's changelog.

7.13.0

Patch Changes

  • Updated dependencies:
    • react-router@7.13.0
    • @react-router/node@7.13.0
    • @react-router/express@7.13.0
Commits

Updates fumadocs-core from 16.4.7 to 16.5.0

Release notes

Sourced from fumadocs-core's releases.

fumadocs-core@16.5.0

Minor Changes

  • 9ba1250: Support Universal Shiki configuration

fumadocs-core@16.4.11

Patch Changes

  • a75a84d: fix duplicated transformer execution for fallback trees

fumadocs-core@16.4.10

Patch Changes

  • 099fde7: [Page Tree] Extract index page from folder
  • 6fd7e63: handle circular reference in page tree

fumadocs-core@16.4.9

Patch Changes

  • 48dd0c2: fix incorrect page tree output
Commits

Updates fumadocs-ui from 16.4.7 to 16.5.0

Release notes

Sourced from fumadocs-ui's releases.

fumadocs-ui@16.5.0

Minor Changes

  • 9ba1250: Support Universal Shiki configuration

Patch Changes

  • Updated dependencies [85cc22f]
  • Updated dependencies [9ba1250]
    • @​fumadocs/ui@​16.5.0
    • fumadocs-core@16.5.0

fumadocs-ui@16.4.11

Patch Changes

  • Updated dependencies [a75a84d]
    • fumadocs-core@16.4.11
    • @​fumadocs/ui@​16.4.11

fumadocs-ui@16.4.10

Patch Changes

  • 430a5f1: support on on docs layout
  • Updated dependencies [099fde7]
  • Updated dependencies [6fd7e63]
    • fumadocs-core@16.4.10
    • @​fumadocs/ui@​16.4.10

fumadocs-ui@16.4.9

Patch Changes

  • Updated dependencies [48dd0c2]
    • fumadocs-core@16.4.9
    • @​fumadocs/ui@​16.4.9
Commits

Updates isbot from 5.1.33 to 5.1.34

Changelog

Sourced from isbot's changelog.

5.1.34

  • [Pattern] Pattern updates
Commits

Updates react from 19.2.3 to 19.2.4

Release notes

Sourced from react's releases.

19.2.4 (January 26th, 2026)

React Server Components

Commits

Updates @types/react from 19.2.8 to 19.2.13

Commits

Updates react-dom from 19.2.3 to 19.2.4

Release notes

Sourced from react-dom's releases.

19.2.4 (January 26th, 2026)

React Server Components

Commits

Updates react-router from 7.12.0 to 7.13.0

Release notes

Sourced from react-router's releases.

v7.13.0

See the changelog for release notes: https://github.com/remix-run/react-router/blob/main/CHANGELOG.md#v7130

Changelog

Sourced from react-router's changelog.

7.13.0

Minor Changes

  • Add crossOrigin prop to Links component (#14687)

Patch Changes

  • Fix double slash normalization for useNavigate colon urls (#14718)
  • Update failed origin checks to return a 400 status instead of a 500 (#14737)
  • Bugfix #14666: Inline criticalCss is missing nonce (#14691)
  • Loosen allowedActionOrigins glob check so ** matches all domains (#14722)
Commits

Updates @react-router/dev from 7.12.0 to 7.13.0

Release notes

Sourced from @​react-router/dev's releases.

v7.13.0

See the changelog for release notes: https://github.com/remix-run/react-router/blob/main/CHANGELOG.md#v7130

Changelog

Sourced from @​react-router/dev's changelog.

7.13.0

Patch Changes

  • Bump @​remix-run/node-fetch-server dep (#14704)
  • Updated dependencies:
    • react-router@7.13.0
    • @react-router/node@7.13.0
    • @react-router/serve@7.13.0
Commits

Updates @types/react from 19.2.8 to 19.2.13

Commits

Updates vite-tsconfig-paths from 6.0.4 to 6.0.5

Commits

Updates @tauri-apps/api from 2.9.1 to 2.10.1

Release notes

Sourced from @​tauri-apps/api's releases.

@​tauri-apps/api v2.10.1

No known vulnerabilities found

[2.10.1]

Bug Fixes

  • Re-release of 2.10.0 with working assets.
> @tauri-apps/api@2.10.1 npm-publish /home/runner/work/tauri/tauri/packages/api
> pnpm build && cd ./dist && pnpm publish --access public --loglevel silly --no-git-checks

> @​tauri-apps/api@​2.10.1 build /home/runner/work/tauri/tauri/packages/api > rollup -c --configPlugin typescript

�[36m �[1m./src/app.ts, ./src/core.ts, ./src/dpi.ts, ./src/event.ts, ./src/image.ts, ./src/index.ts, ./src/menu.ts, ./src/mocks.ts, ./src/path.ts, ./src/tray.ts, ./src/webview.ts, ./src/webviewWindow.ts, ./src/window.ts�[22m → �[1m./dist, ./dist�[22m...�[39m �[32mcreated �[1m./dist, ./dist�[22m in �[1m1.2s�[22m�[39m �[36m �[1msrc/index.ts�[22m → �[1m../../crates/tauri/scripts/bundle.global.js�[22m...�[39m �[32mcreated �[1m../../crates/tauri/scripts/bundle.global.js�[22m in �[1m1.4s�[22m�[39m npm verbose cli /opt/hostedtoolcache/node/24.13.0/x64/bin/node /opt/hostedtoolcache/node/24.13.0/x64/bin/npm npm info using npm@11.6.2 npm info using node@v24.13.0 npm silly config load:file:/opt/hostedtoolcache/node/24.13.0/x64/lib/node_modules/npm/npmrc npm warn Unknown cli config "--git-checks". This will stop working in the next major version of npm. npm warn Unknown env config "verify-deps-before-run". This will stop working in the next major version of npm. npm warn Unknown env config "_jsr-registry". This will stop working in the next major version of npm. npm silly config load:file:/tmp/adc7feab38a65aed96fd8b952564b859/.npmrc npm silly config load:file:/home/runner/.npmrc npm silly config load:file:/opt/hostedtoolcache/node/24.13.0/x64/etc/npmrc npm verbose title npm publish tauri-apps-api-2.10.1.tgz npm verbose argv "publish" "--ignore-scripts" "tauri-apps-api-2.10.1.tgz" "--access" "public" "--loglevel" "silly" "--no-git-checks" npm verbose logfile logs-max:10 dir:/home/runner/.npm/_logs/2026-02-03T00_17_22_204Z- npm verbose logfile /home/runner/.npm/_logs/2026-02-03T00_17_22_204Z-debug-0.log npm silly logfile done cleaning log files npm verbose publish [ 'tauri-apps-api-2.10.1.tgz' ] npm http cache file:/tmp/adc7feab38a65aed96fd8b952564b859/tauri-apps-api-2.10.1.tgz 0ms (cache hit) </tr></table>

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for @​tauri-apps/api since your current version.


Updates @tauri-apps/plugin-shell from 2.3.4 to 2.3.5

Release notes

Sourced from @​tauri-apps/plugin-shell's releases.

single-instance v2.3.5

[2.3.5]

Dependencies

  • Upgraded to deep-link@2.4.4
Updating crates.io index
   Packaging tauri-plugin-single-instance v2.3.5 (/home/runner/work/plugins-workspace/plugins-workspace/plugins/single-instance)
    Updating crates.io index
    Packaged 16 files, 209.0KiB (90.5KiB compressed)
   Uploading tauri-plugin-single-instance v2.3.5 (/home/runner/work/plugins-workspace/plugins-workspace/plugins/single-instance)
    Uploaded tauri-plugin-single-instance v2.3.5 to registry `crates-io`
note: waiting for tauri-plugin-single-instance v2.3.5 to be available at registry `crates-io`.
You may press ctrl-c to skip waiting; the crate should be available shortly.
   Published tauri-plugin-single-instance v2.3.5 at registry `crates-io`

persisted-scope v2.3.5

[2.3.5]

Dependencies

  • Upgraded to fs@2.4.5
Updating crates.io index
   Packaging tauri-plugin-persisted-scope v2.3.5 (/home/runner/work/plugins-workspace/plugins-workspace/plugins/persisted-scope)
    Updating crates.io index
    Packaged 12 files, 185.2KiB (83.8KiB compressed)
   Uploading tauri-plugin-persisted-scope v2.3.5 (/home/runner/work/plugins-workspace/plugins-workspace/plugins/persisted-scope)
    Uploaded tauri-plugin-persisted-scope v2.3.5 to registry `crates-io`
note: waiting for tauri-plugin-persisted-scope v2.3.5 to be available at registry `crates-io`
help: you may press ctrl-c to skip waiting; the crate should be available shortly
   Published tauri-plugin-persisted-scope v2.3.5 at registry `crates-io`

shell-js v2.3.5

[2.3.5]

... (truncated)

Commits
  • 50b159f Publish New Versions (v2) (#3211)
  • 305c4f6 ci: add workflow_dipatch trigger to integration tests
  • 89f3e17 chore: bump tauri to 2.10 (#3246)
  • d4613ff fix(shell): Make sidecars work in tests (fix #13767) (#3234)
  • 69a9d57 chore(updater): use keep from tempfile 3.20 (#3229)
  • 61e9b0a fix(http): ensure body resources are released on stream cancellation (#3228)
  • 25ad21b chore(deps): bump diff from 5.2.0 to 5.2.2 (#3226)
  • 2dc3f3f fix(sql): uuid columns returning null in postgres query results (#2039) (#3144)
  • c27af91 fix(barcode-scanner): check if iOS platform supports scanning (#3222)
  • b60dd88 fix(barcode-scanner): start capture session on a separate thread (#3223)
  • Additional commits viewable in compare view

Updates lucide-svelte from 0.562.0 to 0.563.0

Release notes

Sourced from lucide-svelte's releases.

Version 0.563.0

What's Changed

aria-hidden is by default added to icons components in all packages. This was already added to lucide-react before. Making icons accessible, you can add an aria-label or a title. See docs about accessibility.

All changes

Bumps the infrastructure group with 24 updates:

| Package | From | To |
| --- | --- | --- |
| [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome) | `2.3.11` | `2.3.14` |
| [@j178/prek](https://github.com/j178/prek) | `0.2.29` | `0.3.1` |
| [@tauri-apps/cli](https://github.com/tauri-apps/tauri) | `2.9.6` | `2.10.0` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `24.10.9` | `25.2.0` |
| [@react-router/node](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-node) | `7.12.0` | `7.13.0` |
| [@react-router/serve](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-serve) | `7.12.0` | `7.13.0` |
| [fumadocs-core](https://github.com/fuma-nama/fumadocs) | `16.4.7` | `16.5.0` |
| [fumadocs-ui](https://github.com/fuma-nama/fumadocs) | `16.4.7` | `16.5.0` |
| [isbot](https://github.com/omrilotan/isbot) | `5.1.33` | `5.1.34` |
| [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `19.2.3` | `19.2.4` |
| [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `19.2.8` | `19.2.13` |
| [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `19.2.3` | `19.2.4` |
| [react-router](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router) | `7.12.0` | `7.13.0` |
| [@react-router/dev](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dev) | `7.12.0` | `7.13.0` |
| [vite-tsconfig-paths](https://github.com/aleclarson/vite-tsconfig-paths) | `6.0.4` | `6.0.5` |
| [@tauri-apps/api](https://github.com/tauri-apps/tauri) | `2.9.1` | `2.10.1` |
| [@tauri-apps/plugin-shell](https://github.com/tauri-apps/plugins-workspace) | `2.3.4` | `2.3.5` |
| [lucide-svelte](https://github.com/lucide-icons/lucide/tree/HEAD/packages/lucide-svelte) | `0.562.0` | `0.563.0` |
| [@tsconfig/svelte](https://github.com/tsconfig/bases/tree/HEAD/bases) | `5.0.6` | `5.0.7` |
| [autoprefixer](https://github.com/postcss/autoprefixer) | `10.4.23` | `10.4.24` |
| [oxfmt](https://github.com/oxc-project/oxc/tree/HEAD/npm/oxfmt) | `0.24.0` | `0.28.0` |
| [oxlint](https://github.com/oxc-project/oxc/tree/HEAD/npm/oxlint) | `1.39.0` | `1.43.0` |
| [svelte](https://github.com/sveltejs/svelte/tree/HEAD/packages/svelte) | `5.46.4` | `5.49.2` |
| [svelte-check](https://github.com/sveltejs/language-tools) | `4.3.5` | `4.3.6` |


Updates `@biomejs/biome` from 2.3.11 to 2.3.14
- [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.3.14/packages/@biomejs/biome)

Updates `@j178/prek` from 0.2.29 to 0.3.1
- [Release notes](https://github.com/j178/prek/releases)
- [Changelog](https://github.com/j178/prek/blob/master/CHANGELOG.md)
- [Commits](j178/prek@v0.2.29...v0.3.1)

Updates `@tauri-apps/cli` from 2.9.6 to 2.10.0
- [Release notes](https://github.com/tauri-apps/tauri/releases)
- [Commits](https://github.com/tauri-apps/tauri/compare/@tauri-apps/cli-v2.9.6...@tauri-apps/cli-v2.10.0)

Updates `@types/node` from 24.10.9 to 25.2.0
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

Updates `@react-router/node` from 7.12.0 to 7.13.0
- [Release notes](https://github.com/remix-run/react-router/releases)
- [Changelog](https://github.com/remix-run/react-router/blob/main/packages/react-router-node/CHANGELOG.md)
- [Commits](https://github.com/remix-run/react-router/commits/@react-router/node@7.13.0/packages/react-router-node)

Updates `@react-router/serve` from 7.12.0 to 7.13.0
- [Release notes](https://github.com/remix-run/react-router/releases)
- [Changelog](https://github.com/remix-run/react-router/blob/main/packages/react-router-serve/CHANGELOG.md)
- [Commits](https://github.com/remix-run/react-router/commits/@react-router/serve@7.13.0/packages/react-router-serve)

Updates `fumadocs-core` from 16.4.7 to 16.5.0
- [Release notes](https://github.com/fuma-nama/fumadocs/releases)
- [Commits](https://github.com/fuma-nama/fumadocs/commits/fumadocs-core@16.5.0)

Updates `fumadocs-ui` from 16.4.7 to 16.5.0
- [Release notes](https://github.com/fuma-nama/fumadocs/releases)
- [Commits](https://github.com/fuma-nama/fumadocs/commits/fumadocs-ui@16.5.0)

Updates `isbot` from 5.1.33 to 5.1.34
- [Changelog](https://github.com/omrilotan/isbot/blob/main/CHANGELOG.md)
- [Commits](omrilotan/isbot@v5.1.33...v5.1.34)

Updates `react` from 19.2.3 to 19.2.4
- [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.4/packages/react)

Updates `@types/react` from 19.2.8 to 19.2.13
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react)

Updates `react-dom` from 19.2.3 to 19.2.4
- [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.4/packages/react-dom)

Updates `react-router` from 7.12.0 to 7.13.0
- [Release notes](https://github.com/remix-run/react-router/releases)
- [Changelog](https://github.com/remix-run/react-router/blob/main/packages/react-router/CHANGELOG.md)
- [Commits](https://github.com/remix-run/react-router/commits/react-router@7.13.0/packages/react-router)

Updates `@react-router/dev` from 7.12.0 to 7.13.0
- [Release notes](https://github.com/remix-run/react-router/releases)
- [Changelog](https://github.com/remix-run/react-router/blob/main/packages/react-router-dev/CHANGELOG.md)
- [Commits](https://github.com/remix-run/react-router/commits/@react-router/dev@7.13.0/packages/react-router-dev)

Updates `@types/react` from 19.2.8 to 19.2.13
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react)

Updates `vite-tsconfig-paths` from 6.0.4 to 6.0.5
- [Release notes](https://github.com/aleclarson/vite-tsconfig-paths/releases)
- [Commits](aleclarson/vite-tsconfig-paths@v6.0.4...v6.0.5)

Updates `@tauri-apps/api` from 2.9.1 to 2.10.1
- [Release notes](https://github.com/tauri-apps/tauri/releases)
- [Commits](https://github.com/tauri-apps/tauri/compare/@tauri-apps/api-v2.9.1...@tauri-apps/api-v2.10.1)

Updates `@tauri-apps/plugin-shell` from 2.3.4 to 2.3.5
- [Release notes](https://github.com/tauri-apps/plugins-workspace/releases)
- [Commits](tauri-apps/plugins-workspace@nfc-v2.3.4...shell-v2.3.5)

Updates `lucide-svelte` from 0.562.0 to 0.563.0
- [Release notes](https://github.com/lucide-icons/lucide/releases)
- [Commits](https://github.com/lucide-icons/lucide/commits/0.563.0/packages/lucide-svelte)

Updates `@tsconfig/svelte` from 5.0.6 to 5.0.7
- [Commits](https://github.com/tsconfig/bases/commits/HEAD/bases)

Updates `autoprefixer` from 10.4.23 to 10.4.24
- [Release notes](https://github.com/postcss/autoprefixer/releases)
- [Changelog](https://github.com/postcss/autoprefixer/blob/main/CHANGELOG.md)
- [Commits](postcss/autoprefixer@10.4.23...10.4.24)

Updates `oxfmt` from 0.24.0 to 0.28.0
- [Release notes](https://github.com/oxc-project/oxc/releases)
- [Changelog](https://github.com/oxc-project/oxc/blob/main/npm/oxfmt/CHANGELOG.md)
- [Commits](https://github.com/oxc-project/oxc/commits/oxfmt_v0.28.0/npm/oxfmt)

Updates `oxlint` from 1.39.0 to 1.43.0
- [Release notes](https://github.com/oxc-project/oxc/releases)
- [Changelog](https://github.com/oxc-project/oxc/blob/main/npm/oxlint/CHANGELOG.md)
- [Commits](https://github.com/oxc-project/oxc/commits/oxlint_v1.43.0/npm/oxlint)

Updates `svelte` from 5.46.4 to 5.49.2
- [Release notes](https://github.com/sveltejs/svelte/releases)
- [Changelog](https://github.com/sveltejs/svelte/blob/main/packages/svelte/CHANGELOG.md)
- [Commits](https://github.com/sveltejs/svelte/commits/svelte@5.49.2/packages/svelte)

Updates `svelte-check` from 4.3.5 to 4.3.6
- [Release notes](https://github.com/sveltejs/language-tools/releases)
- [Commits](https://github.com/sveltejs/language-tools/compare/svelte-check@4.3.5...svelte-check@4.3.6)
chore(deps): bump the infrastructure group in /src-tauri with 5 updates

Updates the requirements on [toml](https://github.com/toml-rs/toml), [env_logger](https://github.com/rust-cli/env_logger), [reqwest](https://github.com/seanmonstar/reqwest), [zip](https://github.com/zip-rs/zip2) and [dirs](https://github.com/soc/dirs-rs) to permit the latest version.

Updates `toml` to 0.9.11+spec-1.1.0
- [Commits](toml-rs/toml@toml_datetime-v0.5.0...toml-v0.9.11)

Updates `env_logger` to 0.11.8
- [Release notes](https://github.com/rust-cli/env_logger/releases)
- [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md)
- [Commits](rust-cli/env_logger@v0.9.0...v0.11.8)

Updates `reqwest` to 0.13.1
- [Release notes](https://github.com/seanmonstar/reqwest/releases)
- [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md)
- [Commits](seanmonstar/reqwest@v0.11.0...v0.13.1)

Updates `zip` to 7.2.0
- [Release notes](https://github.com/zip-rs/zip2/releases)
- [Changelog](https://github.com/zip-rs/zip2/blob/master/CHANGELOG.md)
- [Commits](zip-rs/zip2@v2.2.2...v7.2.0)

Updates `dirs` to 6.0.0
- [Commits](https://github.com/soc/dirs-rs/commits)

---
updated-dependencies:
- dependency-name: "@biomejs/biome"
  dependency-version: 2.3.14
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: infrastructure
- dependency-name: "@j178/prek"
  dependency-version: 0.3.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: infrastructure
- dependency-name: "@tauri-apps/cli"
  dependency-version: 2.10.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: infrastructure
- dependency-name: "@types/node"
  dependency-version: 25.2.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: infrastructure
- dependency-name: "@react-router/node"
  dependency-version: 7.13.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: infrastructure
- dependency-name: "@react-router/serve"
  dependency-version: 7.13.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: infrastructure
- dependency-name: fumadocs-core
  dependency-version: 16.5.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: infrastructure
- dependency-name: fumadocs-ui
  dependency-version: 16.5.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: infrastructure
- dependency-name: isbot
  dependency-version: 5.1.34
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: infrastructure
- dependency-name: react
  dependency-version: 19.2.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: infrastructure
- dependency-name: "@types/react"
  dependency-version: 19.2.13
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: infrastructure
- dependency-name: react-dom
  dependency-version: 19.2.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: infrastructure
- dependency-name: react-router
  dependency-version: 7.13.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: infrastructure
- dependency-name: "@react-router/dev"
  dependency-version: 7.13.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: infrastructure
- dependency-name: "@types/react"
  dependency-version: 19.2.13
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: infrastructure
- dependency-name: vite-tsconfig-paths
  dependency-version: 6.0.5
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: infrastructure
- dependency-name: "@tauri-apps/api"
  dependency-version: 2.10.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: infrastructure
- dependency-name: "@tauri-apps/plugin-shell"
  dependency-version: 2.3.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: infrastructure
- dependency-name: lucide-svelte
  dependency-version: 0.563.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: infrastructure
- dependency-name: "@tsconfig/svelte"
  dependency-version: 5.0.7
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: infrastructure
- dependency-name: autoprefixer
  dependency-version: 10.4.24
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: infrastructure
- dependency-name: oxfmt
  dependency-version: 0.28.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: infrastructure
- dependency-name: oxlint
  dependency-version: 1.43.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: infrastructure
- dependency-name: svelte
  dependency-version: 5.49.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: infrastructure
- dependency-name: svelte-check
  dependency-version: 4.3.6
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: infrastructure
- dependency-name: toml
  dependency-version: 0.9.11+spec-1.1.0
  dependency-type: direct:production
  dependency-group: infrastructure
- dependency-name: env_logger
  dependency-version: 0.11.8
  dependency-type: direct:production
  dependency-group: infrastructure
- dependency-name: reqwest
  dependency-version: 0.13.1
  dependency-type: direct:production
  dependency-group: infrastructure
- dependency-name: zip
  dependency-version: 7.2.0
  dependency-type: direct:production
  dependency-group: infrastructure
- dependency-name: dirs
  dependency-version: 6.0.0
  dependency-type: direct:production
  dependency-group: infrastructure
...

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 Feb 5, 2026
@vercel
Copy link

vercel bot commented Feb 5, 2026

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
drop-out-docs Ready Ready Preview, Comment Feb 5, 2026 11:03am

@github-actions
Copy link
Contributor

github-actions bot commented Feb 5, 2026

Workspace change through: def1bff

0 changesets found

Planned changes to release
Package Bump Level Current Version Next Version

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.

0 participants