Skip to content

chore(deps): bump the production-dependencies group across 1 directory with 5 updates#208

Closed
dependabot[bot] wants to merge 1 commit into
stagefrom
dependabot/npm_and_yarn/production-dependencies-d08a798a06
Closed

chore(deps): bump the production-dependencies group across 1 directory with 5 updates#208
dependabot[bot] wants to merge 1 commit into
stagefrom
dependabot/npm_and_yarn/production-dependencies-d08a798a06

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github May 25, 2026

Copy link
Copy Markdown
Contributor

Bumps the production-dependencies group with 5 updates in the / directory:

Package From To
@tanstack/ai 0.16.0 0.22.0
@tanstack/ai-gemini 0.10.10 0.11.0
@tanstack/ai-react 0.8.2 0.11.8
@tanstack/react-router 1.170.2 1.170.8
@tanstack/react-start 1.168.3 1.168.13

Updates @tanstack/ai from 0.16.0 to 0.22.0

Release notes

Sourced from @​tanstack/ai's releases.

@​tanstack/ai@​0.22.0

Minor Changes

  • Route chat({ outputSchema, tools }) through the provider's native single-pass call where supported (modern OpenAI Chat Completions + Responses, Claude 4.5+, Gemini 3.x, Grok 4.x family). Closes #605. (#609)

    Historically, chat({ outputSchema, tools }) ran the agent loop with tools and then issued a separate finalization call against the structured-output adapter for the typed answer — because most providers couldn't combine tools with a schema-constrained response in one call. That has changed for most modern providers, making the second round-trip pure overhead.

    New per-adapter capability: TextAdapter.supportsCombinedToolsAndSchema?(modelOptions?). Adapters that opt in receive a JSON Schema on TextOptions.outputSchema in chatStream and wire it into the upstream request alongside tools. The engine harvests the final-turn JSON from the agent loop's accumulated text — no separate finalization call, no 'structuredOutput' middleware phase.

    Per-adapter status:

    • OpenAI (Chat Completions + Responses): opted in for all models. response_format: json_schema / text.format: json_schema attached when outputSchema is set.
    • Anthropic: opted in for Claude 4.5+ (Opus / Sonnet / Haiku 4.5, 4.6, 4.7). Wires output_config.format on the beta Messages request. Pre-4.5 Claude models keep the forced-tool finalization workaround. Gated by exported ANTHROPIC_COMBINED_TOOLS_AND_SCHEMA_MODELS.
    • Gemini: opted in for Gemini 3.x (3-pro, 3-flash, 3.1-pro-preview, 3.1-flash-lite). Wires responseSchema + responseMimeType: 'application/json' into the regular generateContentStream call. Gemini 2.x keeps the legacy path. Gated by exported GEMINI_COMBINED_TOOLS_AND_SCHEMA_MODELS.
    • Grok (xAI): opted in for the Grok 4 family (grok-4, grok-4-1-fast-*, grok-4-fast-*, grok-4-20*, grok-4-3, grok-code-fast-1). Inherits the OpenAI Chat Completions wiring from openai-base; the override gates the capability claim by model. Grok 2 / 3 keep the legacy path. Gated by exported GROK_COMBINED_TOOLS_AND_SCHEMA_MODELS.
    • Groq: explicitly opts out — the Groq API rejects response_format + tools + stream with HTTP 400 ("Streaming and tool use are not currently supported with Structured Outputs").
    • OpenRouter, Ollama: unchanged; still take the legacy finalization path. OpenRouter's per-request capability lookup (depends on resolved upstream model) is tracked as a follow-up.

    Backward compatibility:

    • 'structuredOutput' middleware phase still fires for fallback-path adapters. It does NOT fire for adapters that handle the combination natively — middleware sees the run through 'beforeModel' / 'modelStream' as usual.
    • onStructuredOutputConfig keeps its existing surface but only fires on the fallback path.
    • No call-site changes required.

Patch Changes

  • Updated dependencies []:
    • @​tanstack/ai-event-client@​0.3.11

@​tanstack/ai@​0.21.3

Patch Changes

  • Populate server-executed tool results on the matching tool-call part and mark successful tool calls as complete. (#596)

  • Updated dependencies [e144a53]:

    • @​tanstack/ai-event-client@​0.3.10

@​tanstack/ai@​0.21.2

Patch Changes

  • Refresh package README content and npm metadata for better discoverability. (#626)

  • Updated dependencies [ebeb22e]:

    • @​tanstack/ai-event-client@​0.3.9

@​tanstack/ai@​0.21.1

Patch Changes

  • Move @standard-schema/spec from devDependencies to dependencies. Closes #602. (#615)

... (truncated)

Changelog

Sourced from @​tanstack/ai's changelog.

0.22.0

Minor Changes

  • Route chat({ outputSchema, tools }) through the provider's native single-pass call where supported (modern OpenAI Chat Completions + Responses, Claude 4.5+, Gemini 3.x, Grok 4.x family). Closes #605. (#609)

    Historically, chat({ outputSchema, tools }) ran the agent loop with tools and then issued a separate finalization call against the structured-output adapter for the typed answer — because most providers couldn't combine tools with a schema-constrained response in one call. That has changed for most modern providers, making the second round-trip pure overhead.

    New per-adapter capability: TextAdapter.supportsCombinedToolsAndSchema?(modelOptions?). Adapters that opt in receive a JSON Schema on TextOptions.outputSchema in chatStream and wire it into the upstream request alongside tools. The engine harvests the final-turn JSON from the agent loop's accumulated text — no separate finalization call, no 'structuredOutput' middleware phase.

    Per-adapter status:

    • OpenAI (Chat Completions + Responses): opted in for all models. response_format: json_schema / text.format: json_schema attached when outputSchema is set.
    • Anthropic: opted in for Claude 4.5+ (Opus / Sonnet / Haiku 4.5, 4.6, 4.7). Wires output_config.format on the beta Messages request. Pre-4.5 Claude models keep the forced-tool finalization workaround. Gated by exported ANTHROPIC_COMBINED_TOOLS_AND_SCHEMA_MODELS.
    • Gemini: opted in for Gemini 3.x (3-pro, 3-flash, 3.1-pro-preview, 3.1-flash-lite). Wires responseSchema + responseMimeType: 'application/json' into the regular generateContentStream call. Gemini 2.x keeps the legacy path. Gated by exported GEMINI_COMBINED_TOOLS_AND_SCHEMA_MODELS.
    • Grok (xAI): opted in for the Grok 4 family (grok-4, grok-4-1-fast-*, grok-4-fast-*, grok-4-20*, grok-4-3, grok-code-fast-1). Inherits the OpenAI Chat Completions wiring from openai-base; the override gates the capability claim by model. Grok 2 / 3 keep the legacy path. Gated by exported GROK_COMBINED_TOOLS_AND_SCHEMA_MODELS.
    • Groq: explicitly opts out — the Groq API rejects response_format + tools + stream with HTTP 400 ("Streaming and tool use are not currently supported with Structured Outputs").
    • OpenRouter, Ollama: unchanged; still take the legacy finalization path. OpenRouter's per-request capability lookup (depends on resolved upstream model) is tracked as a follow-up.

    Backward compatibility:

    • 'structuredOutput' middleware phase still fires for fallback-path adapters. It does NOT fire for adapters that handle the combination natively — middleware sees the run through 'beforeModel' / 'modelStream' as usual.
    • onStructuredOutputConfig keeps its existing surface but only fires on the fallback path.
    • No call-site changes required.

Patch Changes

  • Updated dependencies []:
    • @​tanstack/ai-event-client@​0.3.11

0.21.3

Patch Changes

  • Populate server-executed tool results on the matching tool-call part and mark successful tool calls as complete. (#596)

  • Updated dependencies [e144a53]:

    • @​tanstack/ai-event-client@​0.3.10

0.21.2

Patch Changes

  • Refresh package README content and npm metadata for better discoverability. (#626)

  • Updated dependencies [ebeb22e]:

    • @​tanstack/ai-event-client@​0.3.9

0.21.1

Patch Changes

... (truncated)

Commits
  • bdca880 ci: Version Packages (#637)
  • 02f7d04 feat(ai): stream structured output and tools in a single chat call where supp...
  • 3796438 docs: fix outdated adapter/tool APIs and add typed-options guide (#635)
  • 27d2c54 ci: Version Packages (#629)
  • e144a53 fix: complete tool calls with server results (#596)
  • 3827ae0 ci: Version Packages (#627)
  • ebeb22e docs: refresh README and package metadata (#626)
  • ebdad7f feat(ai-openai): add gpt-image-2 to image model meta (#625)
  • 61ff259 ci: Version Packages (#616)
  • 573f12e fix(ai): move @​standard-schema/spec to dependencies (closes #602) (#615)
  • Additional commits viewable in compare view

Updates @tanstack/ai-gemini from 0.10.10 to 0.11.0

Release notes

Sourced from @​tanstack/ai-gemini's releases.

@​tanstack/ai-gemini@​0.11.0

Minor Changes

  • Route chat({ outputSchema, tools }) through the provider's native single-pass call where supported (modern OpenAI Chat Completions + Responses, Claude 4.5+, Gemini 3.x, Grok 4.x family). Closes #605. (#609)

    Historically, chat({ outputSchema, tools }) ran the agent loop with tools and then issued a separate finalization call against the structured-output adapter for the typed answer — because most providers couldn't combine tools with a schema-constrained response in one call. That has changed for most modern providers, making the second round-trip pure overhead.

    New per-adapter capability: TextAdapter.supportsCombinedToolsAndSchema?(modelOptions?). Adapters that opt in receive a JSON Schema on TextOptions.outputSchema in chatStream and wire it into the upstream request alongside tools. The engine harvests the final-turn JSON from the agent loop's accumulated text — no separate finalization call, no 'structuredOutput' middleware phase.

    Per-adapter status:

    • OpenAI (Chat Completions + Responses): opted in for all models. response_format: json_schema / text.format: json_schema attached when outputSchema is set.
    • Anthropic: opted in for Claude 4.5+ (Opus / Sonnet / Haiku 4.5, 4.6, 4.7). Wires output_config.format on the beta Messages request. Pre-4.5 Claude models keep the forced-tool finalization workaround. Gated by exported ANTHROPIC_COMBINED_TOOLS_AND_SCHEMA_MODELS.
    • Gemini: opted in for Gemini 3.x (3-pro, 3-flash, 3.1-pro-preview, 3.1-flash-lite). Wires responseSchema + responseMimeType: 'application/json' into the regular generateContentStream call. Gemini 2.x keeps the legacy path. Gated by exported GEMINI_COMBINED_TOOLS_AND_SCHEMA_MODELS.
    • Grok (xAI): opted in for the Grok 4 family (grok-4, grok-4-1-fast-*, grok-4-fast-*, grok-4-20*, grok-4-3, grok-code-fast-1). Inherits the OpenAI Chat Completions wiring from openai-base; the override gates the capability claim by model. Grok 2 / 3 keep the legacy path. Gated by exported GROK_COMBINED_TOOLS_AND_SCHEMA_MODELS.
    • Groq: explicitly opts out — the Groq API rejects response_format + tools + stream with HTTP 400 ("Streaming and tool use are not currently supported with Structured Outputs").
    • OpenRouter, Ollama: unchanged; still take the legacy finalization path. OpenRouter's per-request capability lookup (depends on resolved upstream model) is tracked as a follow-up.

    Backward compatibility:

    • 'structuredOutput' middleware phase still fires for fallback-path adapters. It does NOT fire for adapters that handle the combination natively — middleware sees the run through 'beforeModel' / 'modelStream' as usual.
    • onStructuredOutputConfig keeps its existing surface but only fires on the fallback path.
    • No call-site changes required.

Patch Changes

Changelog

Sourced from @​tanstack/ai-gemini's changelog.

0.11.0

Minor Changes

  • Route chat({ outputSchema, tools }) through the provider's native single-pass call where supported (modern OpenAI Chat Completions + Responses, Claude 4.5+, Gemini 3.x, Grok 4.x family). Closes #605. (#609)

    Historically, chat({ outputSchema, tools }) ran the agent loop with tools and then issued a separate finalization call against the structured-output adapter for the typed answer — because most providers couldn't combine tools with a schema-constrained response in one call. That has changed for most modern providers, making the second round-trip pure overhead.

    New per-adapter capability: TextAdapter.supportsCombinedToolsAndSchema?(modelOptions?). Adapters that opt in receive a JSON Schema on TextOptions.outputSchema in chatStream and wire it into the upstream request alongside tools. The engine harvests the final-turn JSON from the agent loop's accumulated text — no separate finalization call, no 'structuredOutput' middleware phase.

    Per-adapter status:

    • OpenAI (Chat Completions + Responses): opted in for all models. response_format: json_schema / text.format: json_schema attached when outputSchema is set.
    • Anthropic: opted in for Claude 4.5+ (Opus / Sonnet / Haiku 4.5, 4.6, 4.7). Wires output_config.format on the beta Messages request. Pre-4.5 Claude models keep the forced-tool finalization workaround. Gated by exported ANTHROPIC_COMBINED_TOOLS_AND_SCHEMA_MODELS.
    • Gemini: opted in for Gemini 3.x (3-pro, 3-flash, 3.1-pro-preview, 3.1-flash-lite). Wires responseSchema + responseMimeType: 'application/json' into the regular generateContentStream call. Gemini 2.x keeps the legacy path. Gated by exported GEMINI_COMBINED_TOOLS_AND_SCHEMA_MODELS.
    • Grok (xAI): opted in for the Grok 4 family (grok-4, grok-4-1-fast-*, grok-4-fast-*, grok-4-20*, grok-4-3, grok-code-fast-1). Inherits the OpenAI Chat Completions wiring from openai-base; the override gates the capability claim by model. Grok 2 / 3 keep the legacy path. Gated by exported GROK_COMBINED_TOOLS_AND_SCHEMA_MODELS.
    • Groq: explicitly opts out — the Groq API rejects response_format + tools + stream with HTTP 400 ("Streaming and tool use are not currently supported with Structured Outputs").
    • OpenRouter, Ollama: unchanged; still take the legacy finalization path. OpenRouter's per-request capability lookup (depends on resolved upstream model) is tracked as a follow-up.

    Backward compatibility:

    • 'structuredOutput' middleware phase still fires for fallback-path adapters. It does NOT fire for adapters that handle the combination natively — middleware sees the run through 'beforeModel' / 'modelStream' as usual.
    • onStructuredOutputConfig keeps its existing surface but only fires on the fallback path.
    • No call-site changes required.

Patch Changes

Commits
  • bdca880 ci: Version Packages (#637)
  • 02f7d04 feat(ai): stream structured output and tools in a single chat call where supp...
  • See full diff in compare view

Updates @tanstack/ai-react from 0.8.2 to 0.11.8

Release notes

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

@​tanstack/ai-react@​0.11.8

Patch Changes

  • Updated dependencies [02f7d04]:
    • @​tanstack/ai@​0.22.0
    • @​tanstack/ai-client@​0.11.8

@​tanstack/ai-react@​0.11.7

Patch Changes

  • Updated dependencies [e144a53]:
    • @​tanstack/ai@​0.21.3
    • @​tanstack/ai-client@​0.11.7

@​tanstack/ai-react@​0.11.6

Patch Changes

  • Refresh package README content and npm metadata for better discoverability. (#626)

  • Updated dependencies [ebeb22e]:

    • @​tanstack/ai@​0.21.2
    • @​tanstack/ai-client@​0.11.6

@​tanstack/ai-react@​0.11.5

Patch Changes

  • Updated dependencies [573f12e]:
    • @​tanstack/ai@​0.21.1
    • @​tanstack/ai-client@​0.11.5

@​tanstack/ai-react@​0.11.4

Patch Changes

  • Expose the connection adapter primitives needed to build custom (#597) transports from every framework hook package. @tanstack/ai-client now re-exports RunAgentInputContext at its entry point, and @tanstack/ai-react, @tanstack/ai-vue, @tanstack/ai-solid, @tanstack/ai-svelte, and @tanstack/ai-preact now re-export rpcStream, ConnectConnectionAdapter, SubscribeConnectionAdapter, and RunAgentInputContext alongside the existing stream, fetchServerSentEvents, and fetchHttpStream re-exports.

    Previously, authors of WebSocket / persistent or RPC-backed adapters had to import these symbols from @tanstack/ai-client even though they were already pulling useChat from a framework package. No runtime change.

  • Updated dependencies [ec1393d, a03d12b, 188fe11]:

    • @​tanstack/ai@​0.21.0
    • @​tanstack/ai-client@​0.11.4
Changelog

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

0.11.8

Patch Changes

  • Updated dependencies [02f7d04]:
    • @​tanstack/ai@​0.22.0
    • @​tanstack/ai-client@​0.11.8

0.11.7

Patch Changes

  • Updated dependencies [e144a53]:
    • @​tanstack/ai@​0.21.3
    • @​tanstack/ai-client@​0.11.7

0.11.6

Patch Changes

  • Refresh package README content and npm metadata for better discoverability. (#626)

  • Updated dependencies [ebeb22e]:

    • @​tanstack/ai@​0.21.2
    • @​tanstack/ai-client@​0.11.6

0.11.5

Patch Changes

  • Updated dependencies [573f12e]:
    • @​tanstack/ai@​0.21.1
    • @​tanstack/ai-client@​0.11.5

0.11.4

Patch Changes

  • Expose the connection adapter primitives needed to build custom (#597) transports from every framework hook package. @tanstack/ai-client now re-exports RunAgentInputContext at its entry point, and @tanstack/ai-react, @tanstack/ai-vue, @tanstack/ai-solid, @tanstack/ai-svelte, and @tanstack/ai-preact now re-export rpcStream, ConnectConnectionAdapter, SubscribeConnectionAdapter, and RunAgentInputContext alongside the existing stream, fetchServerSentEvents, and fetchHttpStream re-exports.

    Previously, authors of WebSocket / persistent or RPC-backed adapters had to import these symbols from @tanstack/ai-client even though they were already pulling useChat from a framework package. No

... (truncated)

Commits

Updates @tanstack/react-router from 1.170.2 to 1.170.8

Release notes

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

@​tanstack/react-router@​1.170.8

Patch Changes

  • Add support for Rsbuild client output formats, including module output by default and IIFE output for classic script environments. (#7477)

    Client entry scripts and preloads are now represented as root route manifest assets, script preloads follow the manifest script format, and script asset cross-origin configuration uses the script key. The transformAssets script callback context now exposes only kind: 'script' and url, keeping script format handling internal to manifest rendering.

  • Updated dependencies [51a97a1]:

    • @​tanstack/router-core@​1.171.6

@​tanstack/react-router@​1.170.7

Patch Changes

  • Updated dependencies [5268ba4]:
    • @​tanstack/router-core@​1.171.5
Changelog

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

1.170.8

Patch Changes

  • Add support for Rsbuild client output formats, including module output by default and IIFE output for classic script environments. (#7477)

    Client entry scripts and preloads are now represented as root route manifest assets, script preloads follow the manifest script format, and script asset cross-origin configuration uses the script key. The transformAssets script callback context now exposes only kind: 'script' and url, keeping script format handling internal to manifest rendering.

  • Updated dependencies [51a97a1]:

    • @​tanstack/router-core@​1.171.6

1.170.7

Patch Changes

  • Updated dependencies [5268ba4]:
    • @​tanstack/router-core@​1.171.5

1.170.6

Patch Changes

  • Fix hash navigation being overridden by stale scroll restoration entries. (#7447)

  • Updated dependencies [0300f87, 0300f87]:

    • @​tanstack/router-core@​1.171.4

1.170.5

Patch Changes

  • Updated dependencies [5fa9e55]:
    • @​tanstack/router-core@​1.171.3

1.170.4

Patch Changes

  • Updated dependencies [b60eb36]:
    • @​tanstack/router-core@​1.171.2

1.170.3

Patch Changes

  • Updated dependencies [d9cf933]:
    • @​tanstack/router-core@​1.171.1
Commits

Updates @tanstack/react-start from 1.168.3 to 1.168.13

Release notes

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

@​tanstack/react-start@​1.168.13

Patch Changes

  • Fix serialization adapter module resolution in TanStack Start. Vite dev now uses clean runtime-specific virtual module IDs instead of browser requests containing encoded null-byte virtual IDs, which avoids reverse proxy failures. When no serialization adapters are configured, Vite and Rsbuild now resolve #tanstack-start-plugin-adapters through the package empty-adapter fallback. (#7484)

  • Publish matching TanStack Start dev server packages so fresh installs do not pair a Start plugin that no longer provides tanstack-start-injected-head-scripts:v with an older Start server runtime that still imports it. (#7487)

  • Updated dependencies [a82cec6, d8be4f8]:

    • @​tanstack/start-plugin-core@​1.171.6
    • @​tanstack/start-client-core@​1.170.4
    • @​tanstack/start-server-core@​1.169.4
    • @​tanstack/react-start-rsc@​0.1.13
    • @​tanstack/react-start-client@​1.168.4
    • @​tanstack/react-start-server@​1.167.9

@​tanstack/react-start@​1.168.12

Patch Changes

  • Add Vite bundled dev mode support for TanStack Start. Start now recognizes Vite's experimental.bundledDev opt-in, uses the bundled dev client entry in the dev manifest, keeps server requests pointed at the latest client build output, and preserves import-protection behavior for bundled client dev. (#7482)

  • Updated dependencies [90adda9]:

    • @​tanstack/start-plugin-core@​1.171.5
    • @​tanstack/react-start-rsc@​0.1.12

@​tanstack/react-start@​1.168.11

Patch Changes

  • Add support for Rsbuild client output formats, including module output by default and IIFE output for classic script environments. (#7477)

    Client entry scripts and preloads are now represented as root route manifest assets, script preloads follow the manifest script format, and script asset cross-origin configuration uses the script key. The transformAssets script callback context now exposes only kind: 'script' and url, keeping script format handling internal to manifest rendering.

  • Fix Rsbuild server function metadata replay when Rspack restores modules from its persistent cache. (#7477)

    Server function metadata is now stored on Rspack module build info and replayed from cached modules before resolver modules are rebuilt, preventing warm restarts from losing server function registrations.

  • Updated dependencies [51a97a1, 51a97a1]:

    • @​tanstack/react-router@​1.170.8
    • @​tanstack/start-plugin-core@​1.171.4
    • @​tanstack/start-server-core@​1.169.3
    • @​tanstack/react-start-client@​1.168.3
    • @​tanstack/react-start-rsc@​0.1.11
    • @​tanstack/react-start-server@​1.167.8
    • @​tanstack/start-client-core@​1.170.3

@​tanstack/react-start@​1.168.10

Patch Changes

  • Explicitly re-export public API names from @tanstack/start-client-core (createServerFn, createMiddleware, createStart, createCsrfMiddleware, createIsomorphicFn, createClientOnlyFn, createServerOnlyFn) alongside the existing export *. The explicit named re-exports are registered at link time (via Vite SSR's defineExport at fileStartIndex), so the namespace has these getters before any import body runs — survives the cold-start SSR cycle through user middleware where export * would otherwise produce a partial facade (createMiddleware is not a function). Workaround for vitejs/vite#22491 / #22493. (#7466)

  • Updated dependencies []:

... (truncated)

Changelog

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

1.168.13

Patch Changes

  • Fix serialization adapter module resolution in TanStack Start. Vite dev now uses clean runtime-specific virtual module IDs instead of browser requests containing encoded null-byte virtual IDs, which avoids reverse proxy failures. When no serialization adapters are configured, Vite and Rsbuild now resolve #tanstack-start-plugin-adapters through the package empty-adapter fallback. (#7484)

  • Publish matching TanStack Start dev server packages so fresh installs do not pair a Start plugin that no longer provides tanstack-start-injected-head-scripts:v with an older Start server runtime that still imports it. (#7487)

  • Updated dependencies [a82cec6, d8be4f8]:

    • @​tanstack/start-plugin-core@​1.171.6
    • @​tanstack/start-client-core@​1.170.4
    • @​tanstack/start-server-core@​1.169.4
    • @​tanstack/react-start-rsc@​0.1.13
    • @​tanstack/react-start-client@​1.168.4
    • @​tanstack/react-start-server@​1.167.9

1.168.12

Patch Changes

  • Add Vite bundled dev mode support for TanStack Start. Start now recognizes Vite's experimental.bundledDev opt-in, uses the bundled dev client entry in the dev manifest, keeps server requests pointed at the latest client build output, and preserves import-protection behavior for bundled client dev. (#7482)

  • Updated dependencies [90adda9]:

    • @​tanstack/start-plugin-core@​1.171.5
    • @​tanstack/react-start-rsc@​0.1.12

1.168.11

Patch Changes

  • Add support for Rsbuild client output formats, including module output by default and IIFE output for classic script environments. (#7477)

    Client entry scripts and preloads are now represented as root route manifest assets, script preloads follow the manifest script format, and script asset cross-origin configuration uses the script key. The transformAssets script callback context now exposes only kind: 'script' and url, keeping script format handling internal to manifest rendering.

  • Fix Rsbuild server function metadata replay when Rspack restores modules from its persistent cache. (#7477)

    Server function metadata is now stored on Rspack module build info and replayed from cached modules before resolver modules are rebuilt, preventing warm restarts from losing server function registrations.

  • Updated dependencies [51a97a1, 51a97a1]:

    • @​tanstack/react-router@​1.170.8
    • @​tanstack/start-plugin-core@​1.171.4
    • @​tanstack/start-server-core@​1.169.3
    • @​tanstack/react-start-client@​1.168.3
    • @​tanstack/react-start-rsc@​0.1.11
    • @​tanstack/react-start-server@​1.167.8
    • @​tanstack/start-client-core@​1.170.3

1.168.10

Patch Changes

... (truncated)

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

…y with 5 updates

Bumps the production-dependencies group with 5 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@tanstack/ai](https://github.com/TanStack/ai/tree/HEAD/packages/typescript/ai) | `0.16.0` | `0.22.0` |
| [@tanstack/ai-gemini](https://github.com/TanStack/ai/tree/HEAD/packages/typescript/ai-gemini) | `0.10.10` | `0.11.0` |
| [@tanstack/ai-react](https://github.com/TanStack/ai/tree/HEAD/packages/typescript/ai-react) | `0.8.2` | `0.11.8` |
| [@tanstack/react-router](https://github.com/TanStack/router/tree/HEAD/packages/react-router) | `1.170.2` | `1.170.8` |
| [@tanstack/react-start](https://github.com/TanStack/router/tree/HEAD/packages/react-start) | `1.168.3` | `1.168.13` |



Updates `@tanstack/ai` from 0.16.0 to 0.22.0
- [Release notes](https://github.com/TanStack/ai/releases)
- [Changelog](https://github.com/TanStack/ai/blob/main/packages/typescript/ai/CHANGELOG.md)
- [Commits](https://github.com/TanStack/ai/commits/@tanstack/ai@0.22.0/packages/typescript/ai)

Updates `@tanstack/ai-gemini` from 0.10.10 to 0.11.0
- [Release notes](https://github.com/TanStack/ai/releases)
- [Changelog](https://github.com/TanStack/ai/blob/main/packages/typescript/ai-gemini/CHANGELOG.md)
- [Commits](https://github.com/TanStack/ai/commits/@tanstack/ai-gemini@0.11.0/packages/typescript/ai-gemini)

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

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

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

---
updated-dependencies:
- dependency-name: "@tanstack/ai"
  dependency-version: 0.22.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@tanstack/ai-gemini"
  dependency-version: 0.11.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@tanstack/ai-react"
  dependency-version: 0.11.8
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@tanstack/react-router"
  dependency-version: 1.170.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@tanstack/react-start"
  dependency-version: 1.168.13
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
...

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 May 25, 2026
@dependabot
dependabot Bot requested a review from husamql3 as a code owner May 25, 2026 20:42
@dependabot @github

dependabot Bot commented on behalf of github Jun 2, 2026

Copy link
Copy Markdown
Contributor Author

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

@dependabot dependabot Bot closed this Jun 2, 2026
@dependabot
dependabot Bot deleted the dependabot/npm_and_yarn/production-dependencies-d08a798a06 branch June 2, 2026 19:22
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