Skip to content

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

Closed
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/infrastructure-4eb587b105
Closed

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

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github Feb 19, 2026

⚠️ Dependabot is rebasing this PR ⚠️

Rebasing might not happen immediately, so don't worry if this takes some time.

Note: if you make any changes to this PR yourself, they will take precedence over the rebase.


⚠️ Dependabot is rebasing this PR ⚠️

Rebasing might not happen immediately, so don't worry if this takes some time.

Note: if you make any changes to this PR yourself, they will take precedence over the rebase.


Bumps the infrastructure group with 29 updates:

Package From To
@biomejs/biome 2.3.11 2.4.2
@j178/prek 0.2.29 0.3.3
@tauri-apps/cli 2.9.6 2.10.0
@types/node 24.10.9 25.3.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.6.3
fumadocs-mdx 14.2.6 14.2.7
fumadocs-ui 16.4.7 16.6.3
isbot 5.1.33 5.1.35
react 19.2.3 19.2.4
@types/react 19.2.8 19.2.14
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
@tailwindcss/vite 4.1.18 4.2.0
tailwindcss 4.1.18 4.2.0
vite-tsconfig-paths 6.0.4 6.1.1
@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.574.0
marked 17.0.1 17.0.3
@tsconfig/svelte 5.0.6 5.0.8
@types/prismjs 1.26.5 1.26.6
autoprefixer 10.4.23 10.4.24
oxfmt 0.24.0 0.33.0
oxlint 1.39.0 1.48.0
svelte 5.46.4 5.53.0
svelte-check 4.3.5 4.4.1

Updates @biomejs/biome from 2.3.11 to 2.4.2

Release notes

Sourced from @​biomejs/biome's releases.

Biome CLI v2.4.2

2.4.2

Patch Changes

  • #9103 fc9850c Thanks @​dyc3! - Fixed #9098: useImportType no longer incorrectly flags imports used in Svelte control flow blocks ({#if}, {#each}, {#await}, {#key}) as type-only imports.

  • #9106 f4b7296 Thanks @​dyc3! - Updated rule source metadata for rules from html-eslint.

  • #8960 4a5ff40 Thanks @​abossenbroek! - Added the nursery rule noConditionalExpect. This rule disallows conditional expect() calls inside tests, which can lead to tests that silently pass when assertions never run.

    // Invalid - conditional expect may not run
    test("conditional", async ({ page }) => {
      if (someCondition) {
        await expect(page).toHaveTitle("Title");
      }
    });
    // Valid - unconditional expect
    test("unconditional", async ({ page }) => {
    await expect(page).toHaveTitle("Title");
    });

  • #8960 4a5ff40 Thanks @​abossenbroek! - Added the nursery rule noPlaywrightElementHandle. Prefers locators to element handles.

    const el = await page.$(".btn");
  • #8960 4a5ff40 Thanks @​abossenbroek! - Added the nursery rule noPlaywrightEval. Disallows page.$eval() and page.$$eval() methods.

    await page.$eval(".btn", (el) => el.textContent);
  • #8960 4a5ff40 Thanks @​abossenbroek! - Added the nursery rule noPlaywrightForceOption. Disallows the force option on user interactions.

    await locator.click({ force: true });
  • #8960 4a5ff40 Thanks @​abossenbroek! - Added the nursery rule noPlaywrightMissingAwait. Enforces awaiting async Playwright APIs.

    const el = page.locator(".btn");
    el.click(); // Missing await

... (truncated)

Changelog

Sourced from @​biomejs/biome's changelog.

2.4.2

Patch Changes

... (truncated)

Commits

Updates @j178/prek from 0.2.29 to 0.3.3

Release notes

Sourced from @​j178/prek's releases.

0.3.3

Release Notes

Released on 2026-02-15.

Enhancements

  • Read Python version specifier from hook repo pyproject.toml (#1596)
  • Add #:schema directives to generated prek.toml (#1597)
  • Add prek util list-builtins command (#1600)
  • Expand install source detection to mise, uv tool, pipx, and asdf (#1605, #1607)
  • Add progress bar to cache clean and show removal summary (#1616)
  • Make yaml-to-toml CONFIG argument optional (#1593)
  • prek uninstall removes legacy scripts too (#1622)

Bug fixes

  • Fix underflow when formatting summary output (#1626)
  • Match files/exclude filter against relative path of nested project (#1624)
  • Select musllinux wheel tag for uv on musl-based distros (#1628)

Documentation

  • Clarify prek list description (#1604)

Contributors

Install prek 0.3.3

Install prebuilt binaries via shell script

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

Install prebuilt binaries via powershell script

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

Install prebuilt binaries via Homebrew

</tr></table> 

... (truncated)

Changelog

Sourced from @​j178/prek's changelog.

0.3.3

Released on 2026-02-15.

Enhancements

  • Read Python version specifier from hook repo pyproject.toml (#1596)
  • Add #:schema directives to generated prek.toml (#1597)
  • Add prek util list-builtins command (#1600)
  • Expand install source detection to mise, uv tool, pipx, and asdf (#1605, #1607)
  • Add progress bar to cache clean and show removal summary (#1616)
  • Make yaml-to-toml CONFIG argument optional (#1593)
  • prek uninstall removes legacy scripts too (#1622)

Bug fixes

  • Fix underflow when formatting summary output (#1626)
  • Match files/exclude filter against relative path of nested project (#1624)
  • Select musllinux wheel tag for uv on musl-based distros (#1628)

Documentation

  • Clarify prek list description (#1604)

Contributors

0.3.2

Released on 2026-02-06.

Highlights

  • prek.toml is here!

    You can now use prek.toml as an alternative to .pre-commit-config.yaml for configuring prek. prek.toml mirrors the structure of .pre-commit-config.yaml, but TOML is less error-prone. Your existing .pre-commit-config.yaml will continue to work, but for new users and new projects, prek.toml may make more sense. If you want to switch, run prek util yaml-to-toml to convert YAML configs to prek.toml. See configuration docs for details.

    For example, this config:

    repos:
      - repo: https://github.com/pre-commit/pre-commit-hooks
        rev: v6.0.0
        hooks:
          - id: check-yaml

... (truncated)

Commits
  • c741c8c Bump version to 0.3.3 (#1655)
  • 7c52973 Update dependency uv to v0.10.2 (#1639)
  • 34d30bc docs: add prek usage reference for homeassistant Powercalc project
  • 97c3e0d Update Rust crate async-compression to v0.4.39
  • 903e324 Update Rust crate clap to v4.5.58
  • 6412d77 Update Rust crate clap_complete to v4.5.66 (#1652)
  • 04b4a72 Update Rust crate libc to v0.2.182
  • e9e1850 Update Rust crate lazy-regex to v3.6.0 (#1654)
  • e024d65 Update Rust crate memchr to v2.8.0
  • cd79359 Update Rust crate indicatif to v0.18.4 (#1644)
  • Additional commits viewable in compare view

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.3.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.6.3

Release notes

Sourced from fumadocs-core's releases.

fumadocs-core@16.6.3

No release notes provided.

fumadocs-core@16.6.2

No release notes provided.

fumadocs-core@16.6.1

Patch Changes

  • 00c9a0f: Remove default rerank value from mixedbread search

fumadocs-core@16.6.0

Minor Changes

  • 9241992: Support Markdown in search results

    This deprecates the old contentWithHighlights field in search results, the highlights are marked with Markdown instead (e.g. Hello <mark>World</mark>).

Patch Changes

  • 64a0057: [Remark Feedback] skip MDX elements by default to avoid interfering with component logic

fumadocs-core@16.5.4

Patch Changes

  • 1ad8a38: Support server-side Mixedbread search API, deprecate client-side adapter
  • 3e8efb0: [remark-structure] hotfix filter MDX elements

fumadocs-core@16.5.3

Patch Changes

  • be957f1: use mdast-util-to-markdown for accurate stringification

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

... (truncated)

Commits

Updates fumadocs-mdx from 14.2.6 to 14.2.7

Commits

Updates fumadocs-ui from 16.4.7 to 16.6.3

Release notes

Sourced from fumadocs-ui's releases.

fumadocs-ui@16.6.3

Patch Changes

  • 1c26656: Extend grid of docs layout to 5 columns
    • fumadocs-core@16.6.3

fumadocs-ui@16.6.2

Patch Changes

  • cfc5590: Implement active on sidebar link items
    • fumadocs-core@16.6.2

fumadocs-ui@16.6.1

Patch Changes

  • 20cd4d6: Support ID & @fumadocsHref tag in type tables
  • Updated dependencies [00c9a0f]
    • fumadocs-core@16.6.1

fumadocs-ui@16.6.0

Minor Changes

  • 9241992: Support Markdown in search results

    This deprecates the old contentWithHighlights field in search results, the highlights are marked with Markdown instead (e.g. Hello <mark>World</mark>).

Patch Changes

  • Updated dependencies [9241992]
  • Updated dependencies [64a0057]
    • fumadocs-core@16.6.0

fumadocs-ui@16.5.4

Patch Changes

  • Updated dependencies [1ad8a38]
  • Updated dependencies [3e8efb0]
    • fumadocs-core@16.5.4

fumadocs-ui@16.5.3

Patch Changes

  • Updated dependencies [be957f1]
    • fumadocs-core@16.5.3

fumadocs-ui@16.5.0

Minor Changes

  • 9ba1250: Support Universal Shiki configuration

... (truncated)

Commits

Updates isbot from 5.1.33 to 5.1.35

Changelog

Sourced from isbot's changelog.

5.1.35

  • [Pattern] Pattern updates

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.14

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 @tailwindcss/vite from 4.1.18 to 4.2.0

Release notes

Sourced from @​tailwindcss/vite's releases.

v4.2.0

Added

  • Add mauve, olive, mist, and taupe color palettes to the default theme (#19627)
  • Add @tailwindcss/webpack package to run Tailwind CSS as a webpack plugin (#19610)
  • Add pbs-* and pbe-* utilities for padding-block-start and padding-block-end (#19601)
  • Add mbs-* and mbe-* utilities for margin-block-start and margin-block-end (#19601)
  • Add scroll-pbs-* and scroll-pbe-* utilities for scroll-padding-block-start and scroll-padding-block-end (#19601)
  • Add scroll-mbs-* and scroll-mbe-* utilities for scroll-margin-block-start and scroll-margin-block-end (#19601)
  • Add border-bs-* and border-be-* utilities for border-block-start and border-block-end (#19601)
  • Add inline-*, min-inline-*, max-inline-* utilities for inline-size, min-inline-size, and max-inline-size (#19612)
  • Add block-*, min-block-*, max-block-* utilities for block-size, min-block-size, and max-block-size (#19612)
  • Add inset-s-*, inset-e-*, inset-bs-*, inset-be-* utilities for inset-inline-start, inset-inline-end, inset-block-start, and inset-block-end (#19613)
  • Add font-features-* utility for font-feature-settings (#19623)

Fixed

  • Prevent double @supports wrapper for color-mix values (#19450)
  • Allow whitespace around @source inline() argument (#19461)
  • Emit comment when source maps are saved to files when using @tailwindcss/cli (#19447)
  • Detect utilities containing capital letters followed by numbers (#19465)
  • Fix class extraction for Rails' strict locals (#19525)
  • Align @utility name validation with Oxide scanner rules (#19524)
  • Fix infinite loop when using @variant inside @custom-variant (#19633)
  • Allow multiples of .25 in aspect-* fractions (e.g. aspect-8.5/11) (#19688)
  • Ensure changes to external files listed via @source trigger a full page reload when using @tailwindcss/vite (#19670)
  • Improve performance of Oxide scanner in bigger projects by reducing file system walks (#19632)
  • Ensure import aliases in Astro v5 work without crashing when using @tailwindcss/vite (#19677)
  • Allow escape characters in @utility names to improve support with formatters such as Biome (#19626)
  • Fix incorrect canonicalization results when canonicalizing multiple times (#19675)
  • Add .jj to default ignored content directories (#19687)

Deprecated

  • Deprecate start-* and end-* utilities in favor of inline-s-* and inline-e-* utilities (#19613)
Changelog

Sourced from @​tailwindcss/vite's changelog.

[4.2.0] - 2026-02-18

Added

  • Add mauve, olive, mist, and taupe color palettes to the default theme (#19627)
  • Add @tailwindcss/webpack package to run Tailwind CSS as a webpack plugin (#19610)
  • Add pbs-* and pbe-* utilities for padding-block-start and padding-block-end (#19601)
  • Add mbs-* and mbe-* utilities for margin-block-start and margin-block-end (#19601)
  • Add scroll-pbs-* and scroll-pbe-* utilities for scroll-padding-block-start and scroll-padding-block-end (#19601)
  • Add scroll-mbs-* and scroll-mbe-* utilities for scroll-margin-block-start and scroll-margin-block-end (#19601)
  • Add border-bs-* and border-be-* utilities for border-block-start and border-block-end (#19601)
  • Add inline-*, min-inline-*, max-inline-* utilities for inline-size, min-inline-size, and max-inline-size (#19612)
  • Add block-*, min-block-*, max-block-* utilities for block-size, min-block-size, and max-block-size (#19612)
  • Add inset-s-*, inset-e-*, inset-bs-*, inset-be-* utilities for inset-inline-start, inset-inline-end, inset-block-start, and inset-block-end (#19613)
  • Add font-features-* utility for font-feature-settings (#19623)

Fixed

  • Prevent double @supports wrapper for color-mix values (#19450)
  • Allow whitespace around @source inline() argument (#19461)
  • Emit comment when source maps are saved to files when using @tailwindcss/cli (#19447)
  • Detect utilities containing capital letters followed by numbers (#19465)
  • Fix class extraction for Rails' strict locals (#19525)
  • Align @utility name validation with Oxide scanner rules (#19524)
  • Fix infinite loop when using @variant inside @custom-variant (#19633)
  • Allow multiples of .25 in aspect-* fractions (e.g. aspect-8.5/11) (#19688)
  • Ensure changes to external files listed via @source trigger a full page reload when using @tailwindcss/vite (#19670)
  • Improve performance of Oxide scanner in bigger projects by reducing file system walks (#19632)
  • Ensure import aliases in Astro v5 work without crashing when using @tailwindcss/vite (#19677)
  • Allow escape characters in @utility names to improve support with formatters such as Biome (#19626)
  • Fix incorrect canonicalization results when canonicalizing multiple times (#19675)
  • Add .jj to default ignored content directories (#19687)

Deprecated

  • Deprecate start-* and end-* utilities in favor of inline-s-* and inline-e-* utilities (#19613)
Commits
  • 1b16411 4.2.0 (#19695)
  • d9fff9f docs: update package README CI badge to main (#19692)
  • bc6e4b8 Fallback to config.createResolver for client and ssr environments in `@...
  • f212b0f fix: restore full page reload for watched external files on Vite 7.1+ (#19670)
  • 8ed67bf Fix Tailwind CSS package README GitHub links (#19644)
  • e3e85b3 [tailwindcss-vite] Add Register dependency messages logline (#19611)
  • See full diff in compare view

Updates @types/react from 19.2.8 to 19.2.14

Commits

Updates tailwindcss from 4.1.18 to 4.2.0

Release notes

Sourced from tailwindcss's releases.

v4.2.0

Added

  • Add mauve, olive, mist, and taupe color palettes to the default theme (#19627)
  • Add @tailwindcss/webpack package to run Tailwind CSS as a webpack plugin (#19610)
  • Add pbs-* and pbe-* utilities for padding-block-start and padding-block-end (

Bumps the infrastructure group with 29 updates:

| Package | From | To |
| --- | --- | --- |
| [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome) | `2.3.11` | `2.4.2` |
| [@j178/prek](https://github.com/j178/prek) | `0.2.29` | `0.3.3` |
| [@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.3.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.6.3` |
| [fumadocs-mdx](https://github.com/fuma-nama/fumadocs) | `14.2.6` | `14.2.7` |
| [fumadocs-ui](https://github.com/fuma-nama/fumadocs) | `16.4.7` | `16.6.3` |
| [isbot](https://github.com/omrilotan/isbot) | `5.1.33` | `5.1.35` |
| [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.14` |
| [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` |
| [@tailwindcss/vite](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/@tailwindcss-vite) | `4.1.18` | `4.2.0` |
| [tailwindcss](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/tailwindcss) | `4.1.18` | `4.2.0` |
| [vite-tsconfig-paths](https://github.com/aleclarson/vite-tsconfig-paths) | `6.0.4` | `6.1.1` |
| [@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.574.0` |
| [marked](https://github.com/markedjs/marked) | `17.0.1` | `17.0.3` |
| [@tsconfig/svelte](https://github.com/tsconfig/bases/tree/HEAD/bases) | `5.0.6` | `5.0.8` |
| [@types/prismjs](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/prismjs) | `1.26.5` | `1.26.6` |
| [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.33.0` |
| [oxlint](https://github.com/oxc-project/oxc/tree/HEAD/npm/oxlint) | `1.39.0` | `1.48.0` |
| [svelte](https://github.com/sveltejs/svelte/tree/HEAD/packages/svelte) | `5.46.4` | `5.53.0` |
| [svelte-check](https://github.com/sveltejs/language-tools) | `4.3.5` | `4.4.1` |


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

Updates `@j178/prek` from 0.2.29 to 0.3.3
- [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.3)

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.3.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.6.3
- [Release notes](https://github.com/fuma-nama/fumadocs/releases)
- [Commits](https://github.com/fuma-nama/fumadocs/commits/fumadocs-core@16.6.3)

Updates `fumadocs-mdx` from 14.2.6 to 14.2.7
- [Release notes](https://github.com/fuma-nama/fumadocs/releases)
- [Commits](https://github.com/fuma-nama/fumadocs/commits)

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

Updates `isbot` from 5.1.33 to 5.1.35
- [Changelog](https://github.com/omrilotan/isbot/blob/main/CHANGELOG.md)
- [Commits](https://github.com/omrilotan/isbot/commits)

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.14
- [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 `@tailwindcss/vite` from 4.1.18 to 4.2.0
- [Release notes](https://github.com/tailwindlabs/tailwindcss/releases)
- [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/main/CHANGELOG.md)
- [Commits](https://github.com/tailwindlabs/tailwindcss/commits/v4.2.0/packages/@tailwindcss-vite)

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

Updates `tailwindcss` from 4.1.18 to 4.2.0
- [Release notes](https://github.com/tailwindlabs/tailwindcss/releases)
- [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/main/CHANGELOG.md)
- [Commits](https://github.com/tailwindlabs/tailwindcss/commits/v4.2.0/packages/tailwindcss)

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

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.574.0
- [Release notes](https://github.com/lucide-icons/lucide/releases)
- [Commits](https://github.com/lucide-icons/lucide/commits/0.574.0/packages/lucide-svelte)

Updates `marked` from 17.0.1 to 17.0.3
- [Release notes](https://github.com/markedjs/marked/releases)
- [Commits](markedjs/marked@v17.0.1...v17.0.3)

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

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

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.33.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.33.0/npm/oxfmt)

Updates `oxlint` from 1.39.0 to 1.48.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.48.0/npm/oxlint)

Updates `svelte` from 5.46.4 to 5.53.0
- [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.53.0/packages/svelte)

Updates `svelte-check` from 4.3.5 to 4.4.1
- [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.4.1)
chore(deps): bump the infrastructure group in /src-tauri with 6 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), [dirs](https://github.com/soc/dirs-rs) and [embed-resource](https://github.com/nabijaczleweli/rust-embed-resource) to permit the latest version.

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

Updates `env_logger` to 0.11.9
- [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.9)

Updates `reqwest` to 0.13.2
- [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.2)

Updates `zip` to 8.1.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...v8.1.0)

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

Updates `embed-resource` to 3.0.6
- [Release notes](https://github.com/nabijaczleweli/rust-embed-resource/releases)
- [Commits](nabijaczleweli/rust-embed-resource@v2.4.0...v3.0.6)

---
updated-dependencies:
- dependency-name: "@biomejs/biome"
  dependency-version: 2.4.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: infrastructure
- dependency-name: "@j178/prek"
  dependency-version: 0.3.3
  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.3.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.6.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: infrastructure
- dependency-name: fumadocs-mdx
  dependency-version: 14.2.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: infrastructure
- dependency-name: fumadocs-ui
  dependency-version: 16.6.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: infrastructure
- dependency-name: isbot
  dependency-version: 5.1.35
  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.14
  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: "@tailwindcss/vite"
  dependency-version: 4.2.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: infrastructure
- dependency-name: "@types/react"
  dependency-version: 19.2.14
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: infrastructure
- dependency-name: tailwindcss
  dependency-version: 4.2.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: infrastructure
- dependency-name: vite-tsconfig-paths
  dependency-version: 6.1.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  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.574.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: infrastructure
- dependency-name: marked
  dependency-version: 17.0.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: infrastructure
- dependency-name: "@tsconfig/svelte"
  dependency-version: 5.0.8
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: infrastructure
- dependency-name: "@types/prismjs"
  dependency-version: 1.26.6
  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.33.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: infrastructure
- dependency-name: oxlint
  dependency-version: 1.48.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: infrastructure
- dependency-name: svelte
  dependency-version: 5.53.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: infrastructure
- dependency-name: svelte-check
  dependency-version: 4.4.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: infrastructure
- dependency-name: toml
  dependency-version: 1.0.3+spec-1.1.0
  dependency-type: direct:production
  dependency-group: infrastructure
- dependency-name: env_logger
  dependency-version: 0.11.9
  dependency-type: direct:production
  dependency-group: infrastructure
- dependency-name: reqwest
  dependency-version: 0.13.2
  dependency-type: direct:production
  dependency-group: infrastructure
- dependency-name: zip
  dependency-version: 8.1.0
  dependency-type: direct:production
  dependency-group: infrastructure
- dependency-name: dirs
  dependency-version: 6.0.0
  dependency-type: direct:production
  dependency-group: infrastructure
- dependency-name: embed-resource
  dependency-version: 3.0.6
  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 19, 2026
@vercel
Copy link
Copy Markdown

vercel Bot commented Feb 19, 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 19, 2026 11:04am

@github-actions
Copy link
Copy Markdown
Contributor

Workspace change through: 6a44474

0 changesets found

Planned changes to release
Package Bump Level Current Version Next Version

@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot Bot commented on behalf of github Feb 28, 2026

This pull request was built based on a group rule. Closing it will not ignore any of these versions in future pull requests.

To ignore these dependencies, configure ignore rules in dependabot.yml

@HsiangNianian HsiangNianian deleted the dependabot/infrastructure-4eb587b105 branch February 28, 2026 12:13
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