Skip to content

chore(deps): bump the webui-dependencies group across 1 directory with 24 updates#514

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/WebUI/webui-dependencies-068885b681
Open

chore(deps): bump the webui-dependencies group across 1 directory with 24 updates#514
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/WebUI/webui-dependencies-068885b681

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jun 29, 2026

Copy link
Copy Markdown
Contributor

Bumps the webui-dependencies group with 21 updates in the /WebUI directory:

Package From To
@ai-sdk/mcp 1.0.52 2.0.3
@ai-sdk/openai 3.0.74 4.0.2
@ai-sdk/openai-compatible 2.0.51 3.0.1
@ai-sdk/vue 3.0.208 4.0.4
@langchain/classic 1.0.36 1.0.38
ai 6.0.208 7.0.4
driver.js 1.4.0 1.6.0
langchain 1.5.0 1.5.2
partysocket 1.2.0 1.3.0
reka-ui 2.10.0 2.10.1
three 0.183.2 0.185.0
vue 3.5.38 3.5.39
@types/node 24.13.2 26.0.1
autoprefixer 10.5.0 10.5.2
electron 42.4.1 42.5.0
electron-builder 26.15.5 26.15.6
eslint 10.5.0 10.6.0
eslint-plugin-oxlint 1.70.0 1.71.0
prettier 3.8.4 3.9.1
vite 8.0.16 8.1.0
vite-plugin-electron 1.0.4 1.1.0

Updates @ai-sdk/mcp from 1.0.52 to 2.0.3

Release notes

Sourced from @​ai-sdk/mcp's releases.

@​ai-sdk/mcp@​2.0.3

Patch Changes

  • 68a739a: feat(mcp): allow MCP client to use server completions
  • Updated dependencies [6a436e3]
    • @​ai-sdk/provider-utils@​5.0.1

@​ai-sdk/mcp@​2.0.2

Patch Changes

  • ba6d510: chore: fix deprecated use of zod .passthrough()

@​ai-sdk/mcp@​1.0.55

Patch Changes

  • 3d0bd52: feat(mcp): allow MCP client to use server completions
  • Updated dependencies [b30e43a]
    • @​ai-sdk/provider-utils@​4.0.33
Changelog

Sourced from @​ai-sdk/mcp's changelog.

2.0.3

Patch Changes

  • 68a739a: feat(mcp): allow MCP client to use server completions
  • Updated dependencies [6a436e3]
    • @​ai-sdk/provider-utils@​5.0.1

2.0.2

Patch Changes

  • ba6d510: chore: fix deprecated use of zod .passthrough()

2.0.1

Patch Changes

  • 241a8c5: Add Streamable HTTP session hooks, cached initialize metadata, and detach-on-close support for reattaching to MCP sessions.

2.0.0

Major Changes

  • 23fa161: fix(mcp): setting redirect: error for MCP transport
  • ef992f8: Remove CommonJS exports from all packages. All packages are now ESM-only ("type": "module"). Consumers using require() must switch to ESM import syntax.
  • 8359612: Start v7 pre-release

Patch Changes

  • b79094c: Add resource_link content type to CallToolResultSchema and PromptMessageSchema per MCP spec. Fixes hard rejection when MCP servers return resource_link content parts with zod ≥ 4.4.x.

  • 78e0023: fix(mcp): await addClientAuthentication in token exchange and refresh

  • b567a6c: dependency updates

  • e33ad0b: fix(mcp): add optional hook to validate authorization servers

  • e3ea484: fix(mcp): bypass outputSchema validation when tool returns isError

  • 93afb28: feat(mcp): expose server instructions to be accessible through client

  • a00d1d3: feat(mcp): allow custom fetch for HTTP and SSE transports

  • a98bf66: feat(mcp): surface 'serverInfo' exposed from the MCP server

  • 2a150f8: fix(mcp): lock first sse endpoint received via event

  • 2655da8: fix(mcp): use negotiated protocol version in transport request headers

  • 9f0e36c: trigger release for all packages after provenance setup

  • f7bc0b4: feat(mcp): expose statusCode, url, and responseBody on MCPClientError for HTTP transport failures

    MCPClientError now carries structured HTTP context when it originates from the streamable HTTP transport. This lets downstream consumers (e.g. agent frameworks that need to decide whether to fall back from streamable HTTP to legacy SSE transport per the MCP spec) branch on the actual response status without parsing the error message string.

    Fields are optional — they remain undefined for stdio transport errors and for

... (truncated)

Commits

Updates @ai-sdk/openai from 3.0.74 to 4.0.2

Release notes

Sourced from @​ai-sdk/openai's releases.

@​ai-sdk/openai@​4.0.2

Patch Changes

  • Updated dependencies [6a436e3]
    • @​ai-sdk/provider-utils@​5.0.1

@​ai-sdk/openai@​4.0.1

Patch Changes

  • 9507724: feat(openai): add support for web_search_call.results include option

@​ai-sdk/openai@​3.0.77

Patch Changes

  • Updated dependencies [b30e43a]
    • @​ai-sdk/provider-utils@​4.0.33
Changelog

Sourced from @​ai-sdk/openai's changelog.

4.0.2

Patch Changes

  • Updated dependencies [6a436e3]
    • @​ai-sdk/provider-utils@​5.0.1

4.0.1

Patch Changes

  • 9507724: feat(openai): add support for web_search_call.results include option

4.0.0

Major Changes

  • 34bd95d: feat(ai): add support for uploading provider skills using the provider references abstraction

  • ef992f8: Remove CommonJS exports from all packages. All packages are now ESM-only ("type": "module"). Consumers using require() must switch to ESM import syntax.

  • c29a26f: feat(provider): add support for provider references and uploading files as supported per provider

  • 3887c70: feat(provider): add new top-level reasoning parameter to spec and support it in generateText and streamText

  • 61753c3: ### @ai-sdk/openai: remove redundant name argument from openai.tools.customTool()

    openai.tools.customTool() no longer accepts a name field. the tool name is now derived from the sdk tool key (the object key in the tools object).

    migration: remove the name property from customTool() calls. the object key is now used as the tool name sent to the openai api.

    before:

    tools: {
      write_sql: openai.tools.customTool({
        name: 'write_sql',
        description: '...',
      }),
    }

    after:

    tools: {
      write_sql: openai.tools.customTool({
        description: '...',
      }),
    }

    @ai-sdk/provider-utils: createToolNameMapping() no longer accepts the resolveProviderToolName parameter

... (truncated)

Commits

Updates @ai-sdk/openai-compatible from 2.0.51 to 3.0.1

Release notes

Sourced from @​ai-sdk/openai-compatible's releases.

@​ai-sdk/openai-compatible@​3.0.1

Patch Changes

  • Updated dependencies [6a436e3]
    • @​ai-sdk/provider-utils@​5.0.1

@​ai-sdk/openai-compatible@​2.0.54

Patch Changes

  • Updated dependencies [b30e43a]
    • @​ai-sdk/provider-utils@​4.0.33
Changelog

Sourced from @​ai-sdk/openai-compatible's changelog.

3.0.1

Patch Changes

  • Updated dependencies [6a436e3]
    • @​ai-sdk/provider-utils@​5.0.1

3.0.0

Major Changes

  • ef992f8: Remove CommonJS exports from all packages. All packages are now ESM-only ("type": "module"). Consumers using require() must switch to ESM import syntax.

  • c29a26f: feat(provider): add support for provider references and uploading files as supported per provider

  • 8359612: Start v7 pre-release

  • 04e9009: chore: make provider implementations code patterns more consistent, including renaming certain exported symbols

    For all externally exported symbols that were renamed, the old names continue to work via deprecated aliases.

Patch Changes

  • ab81968: fix(openai-compatible): buffer tool call deltas until function.name arrives

  • 38fc777: Add AI Gateway hint to provider READMEs

  • 74d520f: feat: migrate providers to support new top-level reasoning parameter

  • e59c955: feat(vertex): add grok models to vertex provider

  • 816ff67: fix(openai-compatible): honor camelCase providerOptions key in chat and completion models

  • 9f1e1ba: fix: accept empty string role in streaming delta chunks from OpenAI-compatible providers

  • 45b3d76: fix(security): prevent streaming tool calls from finalizing on parsable partial JSON

    Streaming tool call arguments were finalized using isParsableJson() as a heuristic for completion. If partial accumulated JSON happened to be valid JSON before all chunks arrived, the tool call would be executed with incomplete arguments. Tool call finalization now only occurs in flush() after the stream is fully consumed.

  • 9f0e36c: trigger release for all packages after provenance setup

  • 58a2ad7: fix: more precise default message for tool execution denial

  • 8f3e1da: chore(openai-compat): update v3 specs to v4

  • f7295cb: revert incorrect fix vercel/ai#13172

  • 008271d: feat(openai-compatible): emit warning when using kebab-case instead of camelCase

  • 7fc6bd6: Raise minimum supported Node.js version to 22. Supported versions: 22, 24, and 26.

  • f807e45: Extract shared StreamingToolCallTracker class into @ai-sdk/provider-utils to deduplicate streaming tool call handling across OpenAI-compatible providers. Also adds missing generateId() fallback for toolCallId in Alibaba's doGenerate path and ensures all providers finalize unfinished tool calls during stream flush.

  • 0c4c275: trigger initial canary release

  • 6fd51c0: fix(provider): preserve error type prefix in getErrorMessage

  • cd9c311: fix(openai, openai-compatible): only send null content for assistant messages with tool calls

  • 9bd6512: feat(provider): change file part data property to be tagged with a type and remove the image part type

  • 258c093: chore: ensure consistent import handling and avoid import duplicates or cycles

  • b8396f0: trigger initial beta release

  • bfb756d: patch - send content: null instead of empty string for tool-only assistant messages

  • 90e2d8a: chore: fix unused vars not being flagged by our lint tooling

  • b3976a2: Add workflow serialization support to all provider models.

    @ai-sdk/provider-utils: New serializeModel() helper that extracts only serializable properties from a model instance, filtering out functions and objects containing functions. Third-party provider authors can use this to add workflow support to their own models.

    All providers: headers is now optional in provider config types. This is non-breaking — existing code that passes headers continues to work. Custom provider implementations that construct model configs manually can now omit headers, which is useful when models are deserialized from a workflow step boundary where auth is provided separately.

... (truncated)

Commits

Updates @ai-sdk/vue from 3.0.208 to 4.0.4

Release notes

Sourced from @​ai-sdk/vue's releases.

@​ai-sdk/vue@​4.0.4

Patch Changes

  • Updated dependencies [6a436e3]
    • @​ai-sdk/provider-utils@​5.0.1
    • ai@7.0.4

@​ai-sdk/vue@​4.0.3

Patch Changes

  • ai@7.0.3

@​ai-sdk/vue@​3.0.214

Patch Changes

  • Updated dependencies [b30e43a]
    • @​ai-sdk/provider-utils@​4.0.33
    • ai@6.0.214
Changelog

Sourced from @​ai-sdk/vue's changelog.

4.0.4

Patch Changes

  • Updated dependencies [6a436e3]
    • @​ai-sdk/provider-utils@​5.0.1
    • ai@7.0.4

4.0.3

Patch Changes

  • ai@7.0.3

4.0.2

Patch Changes

  • ai@7.0.2

4.0.1

Patch Changes

  • ai@7.0.1

4.0.0

Major Changes

  • ef992f8: Remove CommonJS exports from all packages. All packages are now ESM-only ("type": "module"). Consumers using require() must switch to ESM import syntax.
  • 8359612: Start v7 pre-release

Patch Changes

  • b567a6c: dependency updates
  • 9f0e36c: trigger release for all packages after provenance setup
  • 7fc6bd6: Raise minimum supported Node.js version to 22. Supported versions: 22, 24, and 26.
  • 0c4c275: trigger initial canary release
  • 258c093: chore: ensure consistent import handling and avoid import duplicates or cycles
  • b8396f0: trigger initial beta release
  • e2525c8: fix(vue): forward args in useChat methods
  • d984051: Add useChat composable for @ai-sdk/vue, providing a reactive wrapper around Chat with auto-recreation when the init object changes.

4.0.0-beta.187

Patch Changes

  • ai@7.0.0-beta.187

... (truncated)

Commits

Updates @langchain/classic from 1.0.36 to 1.0.38

Release notes

Sourced from @​langchain/classic's releases.

@​langchain/classic@​1.0.38

Patch Changes

  • Updated dependencies [3205b35]:
    • @​langchain/openai@​1.5.3

@​langchain/classic@​1.0.37

Patch Changes

Commits
  • f1d64ff chore: version packages (#11101)
  • 72ffc4b fix(aws): add Bedrock stream idle timeout (#11098)
  • 3205b35 fix(langchain, openai): decouple strict tools from strict structured output r...
  • 1ee0df0 chore: version packages (#11097)
  • f017708 fix(core): better 429 error handling (#10674)
  • 05936ab fix(openai): omit empty reasoning item id in Responses API input (#11045)
  • 798cb70 fix(openai): route standard url file blocks to native input_file in Responses...
  • 80c790b fix(openai): stream built-in tool progress events (#11090)
  • d2e6afc fix(groq): require @​langchain/core >= 1.1.30 in peer dependency (#11072)
  • c66870e feat(weaviate): add X-Weaviate-Client-Integration telemetry header (#11088)
  • Additional commits viewable in compare view

Updates @langchain/core from 1.2.0 to 1.2.1

Release notes

Sourced from @​langchain/core's releases.

@​langchain/core@​1.2.1

Patch Changes

  • #10674 f017708 Thanks @​christian-bromann! - fix: classify provider 429s before retrying

  • #11092 7918bbd Thanks @​aolsenjazz! - fix(core): only treat arrays of content blocks as ToolMessage content

    Fix tool outputs that are arrays of plain objects being forwarded as malformed message content. An array is now only treated as message content blocks when every element is an object with a type; otherwise it is JSON-stringified.

Commits
  • 1ee0df0 chore: version packages (#11097)
  • f017708 fix(core): better 429 error handling (#10674)
  • 05936ab fix(openai): omit empty reasoning item id in Responses API input (#11045)
  • 798cb70 fix(openai): route standard url file blocks to native input_file in Responses...
  • 80c790b fix(openai): stream built-in tool progress events (#11090)
  • d2e6afc fix(groq): require @​langchain/core >= 1.1.30 in peer dependency (#11072)
  • c66870e feat(weaviate): add X-Weaviate-Client-Integration telemetry header (#11088)
  • baa57ba fix(anthropic): omit default disabled thinking from requests (#11073)
  • 04edb8d docs(ibm): fix "Recieved" typo in tool_choice error message (#11066)
  • 2b7f368 chore(deps): bump uuid from 14.0.0 to 14.0.1 (#11094)
  • Additional commits viewable in compare view

Updates @langchain/openai from 1.5.1 to 1.5.3

Release notes

Sourced from @​langchain/openai's releases.

@​langchain/openai@​1.5.3

Patch Changes

@​langchain/openai@​1.5.2

Patch Changes

  • #11045 05936ab Thanks @​jackjin1997! - fix(openai): omit empty id and content on reasoning items in Responses API input

    Reasoning blocks reassembled from streaming chunks (e.g. via streamEvents) never carry an id, since OpenAI's streaming protocol only includes it in non-streaming responses. When such a message was replayed as Responses API input on the next turn, the reasoning item was emitted with id: "", which OpenAI rejects with 400 Invalid 'input[n].id': ''. The id field is now omitted when absent.

    A second error surfaced immediately after that fix: the same converter set a populated content array on the reasoning input item, which the Responses API also rejects (400 Invalid 'input[n].content': array too long. Expected an array with maximum length 0). Reasoning input items only carry summary, so content is no longer forwarded. Thanks to @​csrujanreddy for catching the second issue and verifying both fixes against the live API.

  • #11065 798cb70 Thanks @​rxits! - fix(openai): route standard url file blocks to native input_file in Responses API

  • #11090 80c790b Thanks @​nikhilpakhloo! - fix(openai): stream built-in tool progress events

Commits
  • f1d64ff chore: version packages (#11101)
  • 72ffc4b fix(aws): add Bedrock stream idle timeout (#11098)
  • 3205b35 fix(langchain, openai): decouple strict tools from strict structured output r...
  • 1ee0df0 chore: version packages (#11097)
  • f017708 fix(core): better 429 error handling (#10674)
  • 05936ab fix(openai): omit empty reasoning item id in Responses API input (#11045)
  • 798cb70 fix(openai): route standard url file blocks to native input_file in Responses...
  • 80c790b fix(openai): stream built-in tool progress events (#11090)
  • d2e6afc fix(groq): require @​langchain/core >= 1.1.30 in peer dependency (#11072)
  • c66870e feat(weaviate): add X-Weaviate-Client-Integration telemetry header (#11088)
  • Additional commits viewable in compare view

Updates ai from 6.0.208 to 7.0.4

Release notes

Sourced from ai's releases.

ai@7.0.4

Patch Changes

  • Updated dependencies [6a436e3]
    • @​ai-sdk/provider-utils@​5.0.1
    • @​ai-sdk/gateway@​4.0.4

ai@7.0.3

Patch Changes

  • Updated dependencies [728eaa0]
    • @​ai-sdk/gateway@​4.0.3

ai@6.0.214

Patch Changes

  • Updated dependencies [b30e43a]
    • @​ai-sdk/provider-utils@​4.0.33
    • @​ai-sdk/gateway@​3.0.139
Changelog

Sourced from ai's changelog.

7.0.4

Patch Changes

  • Updated dependencies [6a436e3]
    • @​ai-sdk/provider-utils@​5.0.1
    • @​ai-sdk/gateway@​4.0.4

7.0.3

Patch Changes

  • Updated dependencies [728eaa0]
    • @​ai-sdk/gateway@​4.0.3

7.0.2

Patch Changes

  • Updated dependencies [9dce0a7]
    • @​ai-sdk/gateway@​4.0.2

7.0.1

Patch Changes

  • Updated dependencies [b2791b3]
  • Updated dependencies [330f6e2]
    • @​ai-sdk/gateway@​4.0.1

7.0.0

Major Changes

  • 986c6fd: feat(ai): change type of experimental_context from unknown to generic

  • b0c2869: chore(ai): remove deprecated media type part from ToolResultOutput

  • 1949571: feat(ai): make experimental_telemetry stable

  • 6542d93: feat(ai): change naming nomenclature for *TelemetryIntegration to *Telemetry

  • 31f69de: fix(ai): carry prepareStep message overrides forward across steps

  • 7c71ac6: fix(ai): limit response messages in StepResult to messages created in that step

  • cf93359: feat(ai): remove/refactor event data sent via callbacks

  • 776b617: feat(provider): adding new 'custom' content type

  • 34bd95d: feat(ai): add support for uploading provider skills using the provider references abstraction

  • 1f7db50: fix(ai): remove experimental_customProvider

  • 3debdb7: feat(ai): rename stepCountIs to isStepCount

  • fcc6869: refactor(ai/core): rename ModelCallStreamPart to LanguageModelStreamPart and align stream model call naming (streamLanguageModelCall, experimental_streamLanguageModelCall).

    This updates experimental low-level stream primitives to use "language model call" terminology consistently.

  • ef992f8: Remove CommonJS exports from all packages. All packages are now ESM-only ("type": "module"). Consumers using require() must switch to ESM import syntax.

... (truncated)

Commits

Updates driver.js from 1.4.0 to 1.6.0

Release notes

Sourced from driver.js's releases.

1.6.0

Added

  • animationDuration config to control how long the highlight transition takes. (#104)
  • allowScroll config to lock body scroll while a tour is active.
  • onDoneClick hook, fired when the done button on the final step is clicked. (#500)
  • data property on a step for passing arbitrary data, accessible from hooks for custom per-step logic. (#539)

Changed

Fixed

  • Document event listener leak in onDriverClick that left handlers attached after the tour was destroyed. (#452)
  • Dropped the CSS :has() selector for broader browser compatibility. (#586)
  • Positioned highlighted elements and their children (e.g. dropdown menus) no longer get clipped. (#454, #563)
  • removeChild DOMException when re-rendering a popover whose wrapper was already detached from the DOM. (#572)
  • Close button on a single-element highlight() popover did nothing when clicked. It now closes the popover by default, respecting allowClose and any custom onCloseClick. (#444)

1.5.0

  • Add done-btn class to next button (closes #610)
  • Pass final state to onDestroyed hook (closes #553)
  • Keep tour open on arrow-left at step 1 (closes #564)
  • Remove button text-shadow ghost text (closes #605)
  • Fire onNextClick on overlay nextStep (closes #576)
  • Add getNextStep to the driver API (closes #420)
  • Remove unicode characters from buttons
Commits
  • 565757b 1.6.0
  • 98d2c52 Fix close button not working on highlight
  • 0dfcdac Fix positioned highlighted elements get clipped #454 #563
  • 2633c2f Add test harness for multi-driver usage feature
  • 39f3377 Fix broken build and wrong x link
  • 4d9de02 feat: add 'data' property to DriveStep for custom logic support
  • 4637157 Add changelog page and refine docs styling
  • e1b0039 Style footer buttons via class so custom buttons can opt out
  • abc923b Make docs depend on unversioned package
  • 4062ddf Fix document event listener leak in onDriverClick (#452)
  • Additional commits viewable in compare view

Updates langchain from 1.5.0 to 1.5.2

Release notes

Sourced from langchain's releases.

langchain@1.5.2

Patch Changes

langchain@1.5.1

Patch Changes

  • #11087 534b43a Thanks @​christian-bromann! - fix(langchain): keep tool call streams pending across any tool interrupt

    A raw interrupt() raised from inside a tool surfaced as a tool-error and rejected the call's un-awaited output promise, producing an unhandled rejection that crashed HITL runs. The tool-call stream transformer now treats any serialized graph interrupt as control flow (the call stays pending and resumes), not just humanInTheLoopMiddleware interrupts.

Commits
  • f1d64ff chore: version packages (#11101)
  • 72ffc4b fix(aws): add Bedrock stream idle timeout (#11098)
  • 3205b35 fix(langchain, openai): decouple strict tools from strict structured output r...
  • 1ee0df0 chore: version packages (#11097)
  • f017708 fix(core): better 429 error handling (#10674)
  • 05936ab fix(openai): omit empty reasoning item id in Responses API input (#11045)
  • 798cb70 fix(openai): route standard url file blocks to native input_file in Responses...
  • 80c790b fix(openai): stream built-in tool progress events (#11090)
  • d2e6afc fix(groq): require @​langchain/core >= 1.1.30 in peer dependency (#11072)
  • c66870e feat(weaviate): add X-Weaviate-Client-Integration telemetry header (#11088)
  • Additional commits viewable in compare view

Updates partysocket from 1.2.0 to 1.3.0

Release notes

Sourced from partysocket's releases.

partysocket@1.3.0

Minor Changes

  • #409 6b97742 Thanks @​threepointone! - Add shouldReconnectOnClose, allowing callers to stop automatic reconnects for terminal close events while preserving the existing reconnect-by-default behavior.
Changelog

Sourced from partysocket's changelog.

1.3.0

Minor Changes

  • #409 6b97742 Thanks @​threepointone! - Add shouldReconnectOnClose, allowing callers to stop automatic reconnects for terminal close events while preserving the existing reconnect-by-default behavior.
Commits

Updates reka-ui from 2.10.0 to 2.10.1

Release notes

Sourced from reka-ui's releases.

v2.10.1

   🐞 Bug Fixes

…h 24 updates

Bumps the webui-dependencies group with 21 updates in the /WebUI directory:

| Package | From | To |
| --- | --- | --- |
| [@ai-sdk/mcp](https://github.com/vercel/ai/tree/HEAD/packages/mcp) | `1.0.52` | `2.0.3` |
| [@ai-sdk/openai](https://github.com/vercel/ai/tree/HEAD/packages/openai) | `3.0.74` | `4.0.2` |
| [@ai-sdk/openai-compatible](https://github.com/vercel/ai/tree/HEAD/packages/openai-compatible) | `2.0.51` | `3.0.1` |
| [@ai-sdk/vue](https://github.com/vercel/ai/tree/HEAD/packages/vue) | `3.0.208` | `4.0.4` |
| [@langchain/classic](https://github.com/langchain-ai/langchainjs) | `1.0.36` | `1.0.38` |
| [ai](https://github.com/vercel/ai/tree/HEAD/packages/ai) | `6.0.208` | `7.0.4` |
| [driver.js](https://github.com/nilbuild/driver.js) | `1.4.0` | `1.6.0` |
| [langchain](https://github.com/langchain-ai/langchainjs) | `1.5.0` | `1.5.2` |
| [partysocket](https://github.com/cloudflare/partykit/tree/HEAD/packages/partysocket) | `1.2.0` | `1.3.0` |
| [reka-ui](https://github.com/unovue/reka-ui) | `2.10.0` | `2.10.1` |
| [three](https://github.com/mrdoob/three.js) | `0.183.2` | `0.185.0` |
| [vue](https://github.com/vuejs/core) | `3.5.38` | `3.5.39` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `24.13.2` | `26.0.1` |
| [autoprefixer](https://github.com/postcss/autoprefixer) | `10.5.0` | `10.5.2` |
| [electron](https://github.com/electron/electron) | `42.4.1` | `42.5.0` |
| [electron-builder](https://github.com/electron-userland/electron-builder/tree/HEAD/packages/electron-builder) | `26.15.5` | `26.15.6` |
| [eslint](https://github.com/eslint/eslint) | `10.5.0` | `10.6.0` |
| [eslint-plugin-oxlint](https://github.com/oxc-project/eslint-plugin-oxlint) | `1.70.0` | `1.71.0` |
| [prettier](https://github.com/prettier/prettier) | `3.8.4` | `3.9.1` |
| [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `8.0.16` | `8.1.0` |
| [vite-plugin-electron](https://github.com/electron-vite/vite-plugin-electron) | `1.0.4` | `1.1.0` |



Updates `@ai-sdk/mcp` from 1.0.52 to 2.0.3
- [Release notes](https://github.com/vercel/ai/releases)
- [Changelog](https://github.com/vercel/ai/blob/main/packages/mcp/CHANGELOG.md)
- [Commits](https://github.com/vercel/ai/commits/@ai-sdk/mcp@2.0.3/packages/mcp)

Updates `@ai-sdk/openai` from 3.0.74 to 4.0.2
- [Release notes](https://github.com/vercel/ai/releases)
- [Changelog](https://github.com/vercel/ai/blob/main/packages/openai/CHANGELOG.md)
- [Commits](https://github.com/vercel/ai/commits/@ai-sdk/openai@4.0.2/packages/openai)

Updates `@ai-sdk/openai-compatible` from 2.0.51 to 3.0.1
- [Release notes](https://github.com/vercel/ai/releases)
- [Changelog](https://github.com/vercel/ai/blob/main/packages/openai-compatible/CHANGELOG.md)
- [Commits](https://github.com/vercel/ai/commits/@ai-sdk/openai-compatible@3.0.1/packages/openai-compatible)

Updates `@ai-sdk/vue` from 3.0.208 to 4.0.4
- [Release notes](https://github.com/vercel/ai/releases)
- [Changelog](https://github.com/vercel/ai/blob/main/packages/vue/CHANGELOG.md)
- [Commits](https://github.com/vercel/ai/commits/@ai-sdk/vue@4.0.4/packages/vue)

Updates `@langchain/classic` from 1.0.36 to 1.0.38
- [Release notes](https://github.com/langchain-ai/langchainjs/releases)
- [Commits](https://github.com/langchain-ai/langchainjs/compare/@langchain/classic@1.0.36...@langchain/classic@1.0.38)

Updates `@langchain/core` from 1.2.0 to 1.2.1
- [Release notes](https://github.com/langchain-ai/langchainjs/releases)
- [Commits](https://github.com/langchain-ai/langchainjs/compare/@langchain/core@1.2.0...@langchain/core@1.2.1)

Updates `@langchain/openai` from 1.5.1 to 1.5.3
- [Release notes](https://github.com/langchain-ai/langchainjs/releases)
- [Commits](https://github.com/langchain-ai/langchainjs/compare/@langchain/openai@1.5.1...@langchain/openai@1.5.3)

Updates `ai` from 6.0.208 to 7.0.4
- [Release notes](https://github.com/vercel/ai/releases)
- [Changelog](https://github.com/vercel/ai/blob/main/packages/ai/CHANGELOG.md)
- [Commits](https://github.com/vercel/ai/commits/ai@7.0.4/packages/ai)

Updates `driver.js` from 1.4.0 to 1.6.0
- [Release notes](https://github.com/nilbuild/driver.js/releases)
- [Commits](nilbuild/driver.js@1.4.0...1.6.0)

Updates `langchain` from 1.5.0 to 1.5.2
- [Release notes](https://github.com/langchain-ai/langchainjs/releases)
- [Commits](https://github.com/langchain-ai/langchainjs/compare/langchain@1.5.0...langchain@1.5.2)

Updates `partysocket` from 1.2.0 to 1.3.0
- [Release notes](https://github.com/cloudflare/partykit/releases)
- [Changelog](https://github.com/cloudflare/partykit/blob/main/packages/partysocket/CHANGELOG.md)
- [Commits](https://github.com/cloudflare/partykit/commits/partysocket@1.3.0/packages/partysocket)

Updates `reka-ui` from 2.10.0 to 2.10.1
- [Release notes](https://github.com/unovue/reka-ui/releases)
- [Commits](unovue/reka-ui@v2.10.0...v2.10.1)

Updates `three` from 0.183.2 to 0.185.0
- [Release notes](https://github.com/mrdoob/three.js/releases)
- [Commits](https://github.com/mrdoob/three.js/commits)

Updates `vue` from 3.5.38 to 3.5.39
- [Release notes](https://github.com/vuejs/core/releases)
- [Changelog](https://github.com/vuejs/core/blob/main/CHANGELOG.md)
- [Commits](vuejs/core@v3.5.38...v3.5.39)

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

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

Updates `electron` from 42.4.1 to 42.5.0
- [Release notes](https://github.com/electron/electron/releases)
- [Commits](electron/electron@v42.4.1...v42.5.0)

Updates `electron-builder` from 26.15.5 to 26.15.6
- [Release notes](https://github.com/electron-userland/electron-builder/releases)
- [Changelog](https://github.com/electron-userland/electron-builder/blob/electron-builder@26.15.6/packages/electron-builder/CHANGELOG.md)
- [Commits](https://github.com/electron-userland/electron-builder/commits/electron-builder@26.15.6/packages/electron-builder)

Updates `electron-builder-squirrel-windows` from 26.15.5 to 26.15.6
- [Release notes](https://github.com/electron-userland/electron-builder/releases)
- [Changelog](https://github.com/electron-userland/electron-builder/blob/electron-builder@26.15.6/packages/electron-builder-squirrel-windows/CHANGELOG.md)
- [Commits](https://github.com/electron-userland/electron-builder/commits/electron-builder@26.15.6/packages/electron-builder-squirrel-windows)

Updates `eslint` from 10.5.0 to 10.6.0
- [Release notes](https://github.com/eslint/eslint/releases)
- [Commits](eslint/eslint@v10.5.0...v10.6.0)

Updates `eslint-plugin-oxlint` from 1.70.0 to 1.71.0
- [Release notes](https://github.com/oxc-project/eslint-plugin-oxlint/releases)
- [Commits](oxc-project/eslint-plugin-oxlint@v1.70.0...v1.71.0)

Updates `prettier` from 3.8.4 to 3.9.1
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/prettier@3.8.4...3.9.1)

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

Updates `vite-plugin-electron` from 1.0.4 to 1.1.0
- [Release notes](https://github.com/electron-vite/vite-plugin-electron/releases)
- [Changelog](https://github.com/electron-vite/vite-plugin-electron/blob/main/CHANGELOG-v0.md)
- [Commits](electron-vite/vite-plugin-electron@v1.0.4...v1.1.0)

---
updated-dependencies:
- dependency-name: "@ai-sdk/mcp"
  dependency-version: 2.0.3
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: webui-dependencies
- dependency-name: "@ai-sdk/openai"
  dependency-version: 4.0.2
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: webui-dependencies
- dependency-name: "@ai-sdk/openai-compatible"
  dependency-version: 3.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: webui-dependencies
- dependency-name: "@ai-sdk/vue"
  dependency-version: 4.0.4
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: webui-dependencies
- dependency-name: "@langchain/classic"
  dependency-version: 1.0.38
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: webui-dependencies
- dependency-name: "@langchain/core"
  dependency-version: 1.2.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: webui-dependencies
- dependency-name: "@langchain/openai"
  dependency-version: 1.5.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: webui-dependencies
- dependency-name: ai
  dependency-version: 7.0.4
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: webui-dependencies
- dependency-name: driver.js
  dependency-version: 1.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: webui-dependencies
- dependency-name: langchain
  dependency-version: 1.5.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: webui-dependencies
- dependency-name: partysocket
  dependency-version: 1.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: webui-dependencies
- dependency-name: reka-ui
  dependency-version: 2.10.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: webui-dependencies
- dependency-name: three
  dependency-version: 0.185.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: webui-dependencies
- dependency-name: vue
  dependency-version: 3.5.39
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: webui-dependencies
- dependency-name: "@types/node"
  dependency-version: 26.0.1
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: webui-dependencies
- dependency-name: autoprefixer
  dependency-version: 10.5.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: webui-dependencies
- dependency-name: electron
  dependency-version: 42.5.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: webui-dependencies
- dependency-name: electron-builder
  dependency-version: 26.15.6
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: webui-dependencies
- dependency-name: electron-builder-squirrel-windows
  dependency-version: 26.15.6
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: webui-dependencies
- dependency-name: eslint
  dependency-version: 10.6.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: webui-dependencies
- dependency-name: eslint-plugin-oxlint
  dependency-version: 1.71.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: webui-dependencies
- dependency-name: prettier
  dependency-version: 3.9.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: webui-dependencies
- dependency-name: vite
  dependency-version: 8.1.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: webui-dependencies
- dependency-name: vite-plugin-electron
  dependency-version: 1.1.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: webui-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 Jun 29, 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