Skip to content

Conversation

@dependabot
Copy link
Contributor

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

Bumps the minor-and-patch group with 9 updates:

Package From To
turbo 2.8.1 2.8.3
@funstack/router 0.0.4 0.0.6
@types/react 19.2.10 19.2.13
@vitejs/plugin-react 5.1.2 5.1.3
@vitejs/plugin-rsc 0.5.17 0.5.19
srvx 0.10.1 0.11.2
@playwright/test 1.58.1 1.58.2
tsdown 0.20.1 0.20.3
@types/node 25.1.0 25.2.2

Updates turbo from 2.8.1 to 2.8.3

Release notes

Sourced from turbo's releases.

Turborepo v2.8.3

What's Changed

Changelog

Full Changelog: vercel/turborepo@v2.8.2...v2.8.3

Turborepo v2.8.3-canary.11

What's Changed

Changelog

Full Changelog: vercel/turborepo@v2.8.3-canary.10...v2.8.3-canary.11

Turborepo v2.8.3-canary.10

What's Changed

Changelog

Full Changelog: vercel/turborepo@v2.8.3-canary.9...v2.8.3-canary.10

Turborepo v2.8.3-canary.9

What's Changed

create-turbo

eslint

Changelog

... (truncated)

Commits

Updates @funstack/router from 0.0.4 to 0.0.6

Release notes

Sourced from @​funstack/router's releases.

0.0.6

What's Changed

Breaking Changes

  • Remove useLocationSSR hook to prevent hydration mismatches. The hook was a footgun that easily caused hydration mismatches because the router context state and the actual DOM could diverge during hydration. Use a client-side effect approach (useLayoutEffect + Navigation API) instead. (#79)

Fixes

  • Improve hydration behavior by setting localEntryInternal as soon as the value is available.

Full Changelog: uhyo/funstack-router@0.0.5...0.0.6

0.0.5

What's Changed

Features

  • Wrap navigation state updates in startTransition and expose isPending. (#70)
  • Render pathless routes during SSR. (#71)
  • Add useLocationSSR hook for SSR-compatible location access. (#74)

Fixes

  • Skip pathless routes with loaders during SSR. (#73)
  • Follow the initialEntry while hydration.

Internal

  • Move from useSyncExternalStore to useState + useEffect for navigation state management. (#69)
  • Hoist constants out of Router component and remove redundant hydration sync. (#77)

Full Changelog: uhyo/funstack-router@0.0.4...0.0.5

Commits
  • b2a1888 chore: bump version to 0.0.6
  • 1347035 fix!: remove useLocationSSR hook to prevent hydration mismatches (#79)
  • 08819ad fix: improve hydration behavior by setting localEntryInternal as soon as va...
  • 4f85920 chore: bump version to 0.0.5
  • 4cb082e fix: follow the initialEntry while hydration
  • 4a4ef2c refactor: hoist constants out of Router component and remove redundant hydrat...
  • b930e48 feat: add useLocationSSR hook and make docs Layout an SSR app shell (#74)
  • 6a7f407 fix: skip pathless routes with loaders during SSR (#73)
  • 6bea708 feat: render pathless routes during SSR (#71)
  • ce4ea54 feat: wrap navigation state updates in startTransition and expose isPending (...
  • Additional commits viewable in compare view

Updates @types/react from 19.2.10 to 19.2.13

Commits

Updates @vitejs/plugin-react from 5.1.2 to 5.1.3

Changelog

Sourced from @​vitejs/plugin-react's changelog.

5.1.3 (2026-02-02)

Commits

Updates @vitejs/plugin-rsc from 0.5.17 to 0.5.19

Release notes

Sourced from @​vitejs/plugin-rsc's releases.

plugin-rsc@0.5.19

Please refer to CHANGELOG.md for details.

plugin-rsc@0.5.18

Please refer to CHANGELOG.md for details.

Changelog

Sourced from @​vitejs/plugin-rsc's changelog.

0.5.19 (2026-02-05)

Bug Fixes

  • plugin-rsc: avoid stripping rolldown runtime during scan build (#1096) (0cf67ac)

Miscellaneous Chores

  • plugin-rsc: fix typo in server action transform module (#1095) (ac101ea)

0.5.18 (2026-02-03)

Bug Fixes

  • deps: update all non-major dependencies (#1090) (99e480c)
  • plugin-rsc: cjs to esm interop helper doesn't handle native/external cjs import properly (#1092) (a57f2dd)

Performance Improvements

Miscellaneous Chores

  • deps: update dependency @​types/react to ^19.2.10 (#1088) (4a858ea)

Code Refactoring

  • plugin-rsc: convert hooks to nested handler form (#1093) (f7ea163)
Commits
  • 06a9d0a release: plugin-rsc@0.5.19
  • 0cf67ac fix(plugin-rsc): avoid stripping rolldown runtime during scan build (#1096)
  • ac101ea chore(plugin-rsc): fix typo in server action transform module (#1095)
  • 5e0c982 release: plugin-rsc@0.5.18
  • 9b3bdde perf(plugin-rsc): add hook filters (#1094)
  • f7ea163 refactor(plugin-rsc): convert hooks to nested handler form (#1093)
  • a57f2dd fix(plugin-rsc): cjs to esm interop helper doesn't handle native/external cjs...
  • 99e480c fix(deps): update all non-major dependencies (#1090)
  • 4a858ea chore(deps): update dependency @​types/react to ^19.2.10 (#1088)
  • See full diff in compare view

Updates srvx from 0.10.1 to 0.11.2

Release notes

Sourced from srvx's releases.

v0.11.2

compare changes

💅 Refactors

  • tracing: Rename tracing channel h3.fetch to h3.request (#176)

❤️ Contributors

v0.11.1

compare changes

🚀 Enhancements

  • cli: Allow overriding meta (0cad0a7)

🩹 Fixes

  • cli: Enable graceful shutdown only for prod (e57ada8)
  • cli: Log versions in main process (674ca46)

💅 Refactors

  • Improve graceful shutdown behavior (54e7074)
  • cli: Improve serve mode (92a06a5)
  • cli: Bundle srvx meta (7420599)

v0.11.0

⭐ Highlights

srvx fetch|curl

srvx CLI can now fetch ANY server handler (even express!) without listening on a port.

$ npx srvx curl -v /

srvx automatically searches for server entry (server.ts|js) and loads it. If it is a Node.js server, HTTP listener will be automatically mocked and handler will be converted to Web format. Both input and output streams are streamed to and from the console.

You can also fetch any external URL with the new CLI. It will add Accept: text/markdown header by default to allow better content negotiation in CLI, suitable for coding agents. (example: npx srvx curl v3.nitro.build/docs/quick-start)

[!TIP] Use npx srvx --help or check cli docs for more info.

... (truncated)

Changelog

Sourced from srvx's changelog.

v0.11.2

compare changes

💅 Refactors

  • tracing: Rename tracing channel h3.fetch to h3.request (#176)

🏡 Chore

  • Apply automated updates (54acbbf)
  • Avoid adding version to docs (e644208)

❤️ Contributors

v0.11.1

compare changes

🚀 Enhancements

  • cli: Allow overriding meta (0cad0a7)

🩹 Fixes

  • cli: Enable graceful shutdown only for prod (e57ada8)
  • cli: Log versions in main process (674ca46)

💅 Refactors

  • Improve graceful shutdown behavior (54e7074)
  • cli: Improve serve mode (92a06a5)
  • cli: Bundle srvx meta (7420599)

🏡 Chore

❤️ Contributors

v0.11.0

... (truncated)

Commits
  • dbeeb01 chore(release): v0.11.2
  • b425701 refactor(tracing): rename tracing channel h3.fetch to h3.request (#176)
  • e644208 chore: avoid adding version to docs
  • 54acbbf chore: apply automated updates
  • fa485db chore(release): v0.11.1
  • 3c87afc chore: update undocs
  • 674ca46 fix(cli): log versions in main process
  • 359a728 chore: apply automated updates
  • 7420599 refactor(cli): bundle srvx meta
  • 92a06a5 refactor(cli): improve serve mode
  • Additional commits viewable in compare view

Updates @playwright/test from 1.58.1 to 1.58.2

Release notes

Sourced from @​playwright/test's releases.

v1.58.2

Highlights

#39121 fix(trace viewer): make paths via stdin work #39129 fix: do not force swiftshader on chromium mac

Browser Versions

  • Chromium 145.0.7632.6
  • Mozilla Firefox 146.0.1
  • WebKit 26.0
Commits

Updates tsdown from 0.20.1 to 0.20.3

Release notes

Sourced from tsdown's releases.

v0.20.3

   🐞 Bug Fixes

    View changes on GitHub

v0.20.2

   🚀 Features

   🐞 Bug Fixes

    View changes on GitHub
Commits

Updates @types/node from 25.1.0 to 25.2.2

Commits

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 minor-and-patch group with 9 updates:

| Package | From | To |
| --- | --- | --- |
| [turbo](https://github.com/vercel/turborepo) | `2.8.1` | `2.8.3` |
| [@funstack/router](https://github.com/uhyo/funstack-router/tree/HEAD/packages/router) | `0.0.4` | `0.0.6` |
| [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `19.2.10` | `19.2.13` |
| [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/tree/HEAD/packages/plugin-react) | `5.1.2` | `5.1.3` |
| [@vitejs/plugin-rsc](https://github.com/vitejs/vite-plugin-react/tree/HEAD/packages/plugin-rsc) | `0.5.17` | `0.5.19` |
| [srvx](https://github.com/h3js/srvx) | `0.10.1` | `0.11.2` |
| [@playwright/test](https://github.com/microsoft/playwright) | `1.58.1` | `1.58.2` |
| [tsdown](https://github.com/rolldown/tsdown) | `0.20.1` | `0.20.3` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `25.1.0` | `25.2.2` |


Updates `turbo` from 2.8.1 to 2.8.3
- [Release notes](https://github.com/vercel/turborepo/releases)
- [Changelog](https://github.com/vercel/turborepo/blob/main/RELEASE.md)
- [Commits](vercel/turborepo@v2.8.1...v2.8.3)

Updates `@funstack/router` from 0.0.4 to 0.0.6
- [Release notes](https://github.com/uhyo/funstack-router/releases)
- [Commits](https://github.com/uhyo/funstack-router/commits/0.0.6/packages/router)

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

Updates `@vitejs/plugin-react` from 5.1.2 to 5.1.3
- [Release notes](https://github.com/vitejs/vite-plugin-react/releases)
- [Changelog](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite-plugin-react/commits/plugin-react@5.1.3/packages/plugin-react)

Updates `@vitejs/plugin-rsc` from 0.5.17 to 0.5.19
- [Release notes](https://github.com/vitejs/vite-plugin-react/releases)
- [Changelog](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-rsc/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite-plugin-react/commits/plugin-rsc@0.5.19/packages/plugin-rsc)

Updates `srvx` from 0.10.1 to 0.11.2
- [Release notes](https://github.com/h3js/srvx/releases)
- [Changelog](https://github.com/h3js/srvx/blob/main/CHANGELOG.md)
- [Commits](h3js/srvx@v0.10.1...v0.11.2)

Updates `@playwright/test` from 1.58.1 to 1.58.2
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.58.1...v1.58.2)

Updates `tsdown` from 0.20.1 to 0.20.3
- [Release notes](https://github.com/rolldown/tsdown/releases)
- [Commits](rolldown/tsdown@v0.20.1...v0.20.3)

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

---
updated-dependencies:
- dependency-name: turbo
  dependency-version: 2.8.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@funstack/router"
  dependency-version: 0.0.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@types/react"
  dependency-version: 19.2.13
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@vitejs/plugin-react"
  dependency-version: 5.1.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@vitejs/plugin-rsc"
  dependency-version: 0.5.19
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: srvx
  dependency-version: 0.11.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@playwright/test"
  dependency-version: 1.58.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: tsdown
  dependency-version: 0.20.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@types/node"
  dependency-version: 25.2.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
...

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 8, 2026
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