Skip to content

Bump the npm-minor group with 6 updates#54

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/npm-minor-33fb99ccad
Open

Bump the npm-minor group with 6 updates#54
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/npm-minor-33fb99ccad

Conversation

@dependabot
Copy link
Contributor

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

Bumps the npm-minor group with 6 updates:

Package From To
@biomejs/biome 2.3.14 2.4.2
@tanstack/react-router 1.159.6 1.160.2
@tanstack/router-devtools 1.159.6 1.160.2
@tanstack/router-cli 1.159.6 1.160.1
@tanstack/router-vite-plugin 1.159.6 1.160.2
orval 8.3.0 8.4.0

Updates @biomejs/biome from 2.3.14 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 @tanstack/react-router from 1.159.6 to 1.160.2

Release notes

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

v1.160.2

Version 1.160.2 - 2/16/26, 7:27 PM

Changes

Fix

  • script hydration (#6681) (27a563e) by Manuel Schiller

Other

  • (5d667aa) by Manuel Schiller

Packages

  • @​tanstack/react-router@​1.160.2
  • @​tanstack/react-router-ssr-query@​1.160.2
  • @​tanstack/zod-adapter@​1.160.2
  • @​tanstack/valibot-adapter@​1.160.2
  • @​tanstack/arktype-adapter@​1.160.2
  • @​tanstack/router-devtools@​1.160.2
  • @​tanstack/react-router-devtools@​1.160.2
  • @​tanstack/router-plugin@​1.160.2
  • @​tanstack/router-vite-plugin@​1.160.2
  • @​tanstack/react-start@​1.160.2
  • @​tanstack/react-start-client@​1.160.2
  • @​tanstack/react-start-server@​1.160.2
  • @​tanstack/start-plugin-core@​1.160.2
  • @​tanstack/start-static-server-functions@​1.160.2
  • @​tanstack/solid-start@​1.160.2
  • @​tanstack/vue-start@​1.160.2

v1.160.1

Version 1.160.1 - 2/16/26, 6:12 PM

Changes

Fix

  • prevent var name clash in generated route for escaped strings (#6680) (227dfaf) by Manuel Schiller

Chore

  • agents: encourage using nx and pnpm instead of direct execution, add instruction for sandboxed execution (#6671) (bab64df) by @​Sheraff

Docs

  • Fixed filenames (#6675) (cf5a269) by Stefan Ollinger
  • eslint: update installation to use unified tabbed markup (027dc05) by SeanCassiere
  • router: restructure docs to use the unified markdown syntax (#6665) (e8c5dd0) by Sean Cassiere

... (truncated)

Commits
  • 08a2d09 release: v1.160.2
  • 27a563e fix: script hydration (#6681)
  • 02d88bf release: v1.160.0
  • 6ddb586 feat(router-core, react-router, solid-router, vue-router): isDangerousProtoco...
  • c5d328a release: v1.159.14
  • 067951f fix(react-router): remove async/defer attributes during hydration to prevent ...
  • f3e3bd4 release: v1.159.10
  • fb139e8 fix: preserve data script content during client hydration (#6653)
  • 1dde024 release: v1.159.9
  • 2148b1b fix: resolve pending state when throwing notFound in beforeLoad (#6654)
  • See full diff in compare view

Updates @tanstack/router-devtools from 1.159.6 to 1.160.2

Release notes

Sourced from @​tanstack/router-devtools's releases.

v1.160.2

Version 1.160.2 - 2/16/26, 7:27 PM

Changes

Fix

  • script hydration (#6681) (27a563e) by Manuel Schiller

Other

  • (5d667aa) by Manuel Schiller

Packages

  • @​tanstack/react-router@​1.160.2
  • @​tanstack/react-router-ssr-query@​1.160.2
  • @​tanstack/zod-adapter@​1.160.2
  • @​tanstack/valibot-adapter@​1.160.2
  • @​tanstack/arktype-adapter@​1.160.2
  • @​tanstack/router-devtools@​1.160.2
  • @​tanstack/react-router-devtools@​1.160.2
  • @​tanstack/router-plugin@​1.160.2
  • @​tanstack/router-vite-plugin@​1.160.2
  • @​tanstack/react-start@​1.160.2
  • @​tanstack/react-start-client@​1.160.2
  • @​tanstack/react-start-server@​1.160.2
  • @​tanstack/start-plugin-core@​1.160.2
  • @​tanstack/start-static-server-functions@​1.160.2
  • @​tanstack/solid-start@​1.160.2
  • @​tanstack/vue-start@​1.160.2

v1.160.1

Version 1.160.1 - 2/16/26, 6:12 PM

Changes

Fix

  • prevent var name clash in generated route for escaped strings (#6680) (227dfaf) by Manuel Schiller

Chore

  • agents: encourage using nx and pnpm instead of direct execution, add instruction for sandboxed execution (#6671) (bab64df) by @​Sheraff

Docs

  • Fixed filenames (#6675) (cf5a269) by Stefan Ollinger
  • eslint: update installation to use unified tabbed markup (027dc05) by SeanCassiere
  • router: restructure docs to use the unified markdown syntax (#6665) (e8c5dd0) by Sean Cassiere

... (truncated)

Commits

Updates @tanstack/router-cli from 1.159.6 to 1.160.1

Release notes

Sourced from @​tanstack/router-cli's releases.

v1.160.1

Version 1.160.1 - 2/16/26, 6:12 PM

Changes

Fix

  • prevent var name clash in generated route for escaped strings (#6680) (227dfaf) by Manuel Schiller

Chore

  • agents: encourage using nx and pnpm instead of direct execution, add instruction for sandboxed execution (#6671) (bab64df) by @​Sheraff

Docs

  • Fixed filenames (#6675) (cf5a269) by Stefan Ollinger
  • eslint: update installation to use unified tabbed markup (027dc05) by SeanCassiere
  • router: restructure docs to use the unified markdown syntax (#6665) (e8c5dd0) by Sean Cassiere

Packages

  • @​tanstack/router-generator@​1.160.1
  • @​tanstack/router-cli@​1.160.1
  • @​tanstack/router-plugin@​1.160.1
  • @​tanstack/router-vite-plugin@​1.160.1
  • @​tanstack/start-plugin-core@​1.160.1
  • @​tanstack/solid-start@​1.160.1
  • @​tanstack/vue-start@​1.160.1
  • @​tanstack/react-start@​1.160.1
  • @​tanstack/start-static-server-functions@​1.160.1

v1.160.0

Version 1.160.0 - 2/15/26, 7:06 AM

Changes

Feat

  • router-core, react-router, solid-router, vue-router: isDangerousProtocol uses customizable allowlist (#6542) (6ddb586) by @​Sheraff

Packages

  • @​tanstack/router-core@​1.160.0
  • @​tanstack/solid-router@​1.160.0
  • @​tanstack/react-router@​1.160.0
  • @​tanstack/vue-router@​1.160.0
  • @​tanstack/solid-router-ssr-query@​1.160.0
  • @​tanstack/react-router-ssr-query@​1.160.0
  • @​tanstack/vue-router-ssr-query@​1.160.0
  • @​tanstack/router-ssr-query-core@​1.160.0

... (truncated)

Commits

Updates @tanstack/router-vite-plugin from 1.159.6 to 1.160.2

Release notes

Sourced from @​tanstack/router-vite-plugin's releases.

v1.160.2

Version 1.160.2 - 2/16/26, 7:27 PM

Changes

Fix

  • script hydration (#6681) (27a563e) by Manuel Schiller

Other

  • (5d667aa) by Manuel Schiller

Packages

  • @​tanstack/react-router@​1.160.2
  • @​tanstack/react-router-ssr-query@​1.160.2
  • @​tanstack/zod-adapter@​1.160.2
  • @​tanstack/valibot-adapter@​1.160.2
  • @​tanstack/arktype-adapter@​1.160.2
  • @​tanstack/router-devtools@​1.160.2
  • @​tanstack/react-router-devtools@​1.160.2
  • @​tanstack/router-plugin@​1.160.2
  • @​tanstack/router-vite-plugin@​1.160.2
  • @​tanstack/react-start@​1.160.2
  • @​tanstack/react-start-client@​1.160.2
  • @​tanstack/react-start-server@​1.160.2
  • @​tanstack/start-plugin-core@​1.160.2
  • @​tanstack/start-static-server-functions@​1.160.2
  • @​tanstack/solid-start@​1.160.2
  • @​tanstack/vue-start@​1.160.2

v1.160.1

Version 1.160.1 - 2/16/26, 6:12 PM

Changes

Fix

  • prevent var name clash in generated route for escaped strings (#6680) (227dfaf) by Manuel Schiller

Chore

  • agents: encourage using nx and pnpm instead of direct execution, add instruction for sandboxed execution (#6671) (bab64df) by @​Sheraff

Docs

  • Fixed filenames (#6675) (cf5a269) by Stefan Ollinger
  • eslint: update installation to use unified tabbed markup (027dc05) by SeanCassiere
  • router: restructure docs to use the unified markdown syntax (#6665) (e8c5dd0) by Sean Cassiere

... (truncated)

Commits

Updates orval from 8.3.0 to 8.4.0

Release notes

Sourced from orval's releases.

Release v8.4.0

What's Changed

New Contributors

Full Changelog: orval-labs/orval@v8.3.0...v8.4.0

Commits
  • 5e80698 chore(release): bump version to v8.4.0 (#2969)
  • 3c66608 docs: add x-enum-descriptions documentation to enums guide (#2968)
  • 6a67a50 fix(zod): fix split-mode schema generation output (#2964)
  • 7934b87 fix(core): handle $ref responses without content property (#2967)
  • c2b50ed feat(zod): add support for stringFormat (#2965)
  • 00804bc fix(mock): msw mixed json-xml responses (#2960)
  • 9219bfc chore(deps): bump qs from 6.14.1 to 6.14.2 (#2959)
  • e99eb58 chore(deps): bump markdown-it from 14.1.0 to 14.1.1 (#2958)
  • 647d2cb chore(deps): bump jsonpath from 1.1.1 to 1.2.1 (#2956)
  • c49763f chore(deps): Axios and ModelContext SDK updates (#2957)
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the npm-minor group with 6 updates:

| Package | From | To |
| --- | --- | --- |
| [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome) | `2.3.14` | `2.4.2` |
| [@tanstack/react-router](https://github.com/TanStack/router/tree/HEAD/packages/react-router) | `1.159.6` | `1.160.2` |
| [@tanstack/router-devtools](https://github.com/TanStack/router/tree/HEAD/packages/router-devtools) | `1.159.6` | `1.160.2` |
| [@tanstack/router-cli](https://github.com/TanStack/router/tree/HEAD/packages/router-cli) | `1.159.6` | `1.160.1` |
| [@tanstack/router-vite-plugin](https://github.com/TanStack/router/tree/HEAD/packages/router-vite-plugin) | `1.159.6` | `1.160.2` |
| [orval](https://github.com/orval-labs/orval) | `8.3.0` | `8.4.0` |


Updates `@biomejs/biome` from 2.3.14 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 `@tanstack/react-router` from 1.159.6 to 1.160.2
- [Release notes](https://github.com/TanStack/router/releases)
- [Commits](https://github.com/TanStack/router/commits/v1.160.2/packages/react-router)

Updates `@tanstack/router-devtools` from 1.159.6 to 1.160.2
- [Release notes](https://github.com/TanStack/router/releases)
- [Commits](https://github.com/TanStack/router/commits/v1.160.2/packages/router-devtools)

Updates `@tanstack/router-cli` from 1.159.6 to 1.160.1
- [Release notes](https://github.com/TanStack/router/releases)
- [Commits](https://github.com/TanStack/router/commits/v1.160.1/packages/router-cli)

Updates `@tanstack/router-vite-plugin` from 1.159.6 to 1.160.2
- [Release notes](https://github.com/TanStack/router/releases)
- [Commits](https://github.com/TanStack/router/commits/v1.160.2/packages/router-vite-plugin)

Updates `orval` from 8.3.0 to 8.4.0
- [Release notes](https://github.com/orval-labs/orval/releases)
- [Commits](orval-labs/orval@v8.3.0...v8.4.0)

---
updated-dependencies:
- dependency-name: "@biomejs/biome"
  dependency-version: 2.4.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-minor
- dependency-name: "@tanstack/react-router"
  dependency-version: 1.160.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-minor
- dependency-name: "@tanstack/router-devtools"
  dependency-version: 1.160.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-minor
- dependency-name: "@tanstack/router-cli"
  dependency-version: 1.160.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-minor
- dependency-name: "@tanstack/router-vite-plugin"
  dependency-version: 1.160.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-minor
- dependency-name: orval
  dependency-version: 8.4.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added admin Project maintenance, dependency updates, or housekeeping devops CI/CD, deployment, infrastructure, or tooling work labels Feb 17, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

admin Project maintenance, dependency updates, or housekeeping devops CI/CD, deployment, infrastructure, or tooling work

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants