Skip to content

chore(deps-dev): bump @assistant-ui/react from 0.12.28 to 0.14.5#4690

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/assistant-ui/react-0.14.5
Open

chore(deps-dev): bump @assistant-ui/react from 0.12.28 to 0.14.5#4690
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/assistant-ui/react-0.14.5

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

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

Bumps @assistant-ui/react from 0.12.28 to 0.14.5.

Release notes

Sourced from @​assistant-ui/react's releases.

@​assistant-ui/react-langgraph@​0.14.0

Minor Changes

  • #3970 040d469 - chore: drop APIs deprecated in v0.11/v0.12 (@​Yonom)

    See the v0.14 migration guide for the full removal list and replacements.

    • useAssistantApi / useAssistantState / useAssistantEvent / AssistantIf removed (use useAui / useAuiState / useAuiEvent / AuiIf).
    • getExternalStoreMessage (singular) removed (use getExternalStoreMessages).
    • MessageState.submittedFeedback removed (use message.metadata.submittedFeedback).
    • ThreadRuntime.startRun(parentId) positional overload removed (pass { parentId }).
    • ThreadRuntime.unstable_loadExternalState removed (use importExternalState).
    • ThreadRuntime.unstable_resumeRun removed (use resumeRun).
    • ThreadRuntime.getModelConfig removed (use getModelContext).
    • AssistantRuntime.threadList / switchToNewThread / switchToThread / registerModelConfigProvider / reset removed (use threads / threads.switchToNewThread / threads.switchToThread / registerModelContextProvider / thread.reset).
    • ChatModelRunOptions.config removed (use context).
    • useLocalThreadRuntime alias removed (use useLocalRuntime).
    • unstable_useRemoteThreadListRuntime / unstable_useCloudThreadListAdapter / unstable_RemoteThreadListAdapter / unstable_InMemoryThreadListAdapter aliases removed (drop the unstable_ prefix).
    • react-langgraph onSwitchToThread removed (use load).
    • toAISDKTools / getEnabledTools removed (use toToolsJSONSchema from assistant-stream).

Patch Changes

  • Updated dependencies [040d469]:
    • @​assistant-ui/core@​0.2.0

@​assistant-ui/react-syntax-highlighter@​0.14.0

Patch Changes

  • Updated dependencies [040d469]:
    • @​assistant-ui/react@​0.14.0
    • @​assistant-ui/react-markdown@​0.14.0

@​assistant-ui/react@​0.14.0

Minor Changes

  • #3970 040d469 - chore: drop APIs deprecated in v0.11/v0.12 (@​Yonom)

    See the v0.14 migration guide for the full removal list and replacements.

    • useAssistantApi / useAssistantState / useAssistantEvent / AssistantIf removed (use useAui / useAuiState / useAuiEvent / AuiIf).
    • getExternalStoreMessage (singular) removed (use getExternalStoreMessages).
    • MessageState.submittedFeedback removed (use message.metadata.submittedFeedback).
    • ThreadRuntime.startRun(parentId) positional overload removed (pass { parentId }).
    • ThreadRuntime.unstable_loadExternalState removed (use importExternalState).
    • ThreadRuntime.unstable_resumeRun removed (use resumeRun).
    • ThreadRuntime.getModelConfig removed (use getModelContext).
    • AssistantRuntime.threadList / switchToNewThread / switchToThread / registerModelConfigProvider / reset removed (use threads / threads.switchToNewThread / threads.switchToThread / registerModelContextProvider / thread.reset).
    • ChatModelRunOptions.config removed (use context).
    • useLocalThreadRuntime alias removed (use useLocalRuntime).

... (truncated)

Changelog

Sourced from @​assistant-ui/react's changelog.

0.14.5

Patch Changes

  • Accept the MCP-UI 2026-01-26 method names in the MCP App bridge (e.g. ui/notifications/size-changed, ui/request-display-mode, ui/open-link, ui/message). Widgets built with the current xmcp host-bridge emit these names; previously the host silently ignored them, leaving features like auto-resize broken (iframe never received a height change from onSizeChange).

0.14.4

Patch Changes

  • #4033 552ffb0 - feat(react): export getMcpAppFromToolPart so hosts can detect MCP-app tool parts (@​Yonom)

  • Updated dependencies []:

    • safe-content-frame@0.0.19

0.14.3

Patch Changes

  • #4031 30f0357 - feat(react): clamp MCP app auto-resize height to a configurable max (default 800px) (@​Yonom)

0.14.2

Patch Changes

  • #4024 19d4d94 - feat: add native MCP Apps renderer — McpAppRenderer composes into Tools to render MCP UI resources inline in chat over a JSON-RPC postMessage bridge on SafeContentFrame. Adds an mcp field to ToolCallMessagePart and forwards callProviderMetadata.mcp.app through the AI SDK message converter. (@​Yonom)

  • #4022 4c3eaa1 - fix(composer): apply WAI-ARIA combobox attributes to the textarea while a trigger popover is open (@​okisdev)

    Unstable_TriggerPopover rendered the listbox half of the WAI-ARIA editable combobox pattern, but the focused element (the textarea) lacked the corresponding combobox attributes. screen readers had no way to announce that an autocomplete was open or which item was highlighted.

    ComposerPrimitive.Input now reads the active popover descriptor from TriggerPopoverRoot and applies aria-controls, aria-expanded, aria-haspopup="listbox", and aria-activedescendant to the textarea while a popover is open. attributes are removed when the popover closes. consumers using ComposerPrimitive.Input outside a TriggerPopoverRoot are unaffected.

  • #4020 03694bd - fix(composer): select highlighted item on Tab in trigger popover (@​serhiizghama)

    ComposerPrimitive.Unstable_TriggerPopover only accepted the highlighted entry on Enter. Tab fell through to the underlying textarea, moving focus out of the composer or inserting a tab character. This diverged from the autocomplete convention used in CLIs, IDEs, command palettes, GitHub, Slack, Discord, and Notion, where Tab accepts the highlighted suggestion.

    Tab now mirrors Enter and selects the highlighted item or category. Shift+Tab still passes through so native focus traversal keeps working.

  • Updated dependencies [19d4d94]:

    • @​assistant-ui/core@​0.2.2

0.14.1

Patch Changes

  • #3984 35d0146 - feat(composer): expose canSend state and isSendDisabled adapter input (@​okisdev)

    ComposerState.canSend (read-only) is now derivable via useAuiState((s) => s.composer.canSend) and <AuiIf condition={(s) => s.composer.canSend}/>. it reflects whether the composer is in a state where send is permitted; cross-thread gating (isRunning, capabilities.queue) continues to be layered on top by useComposerSend.

... (truncated)

Commits
Attestation changes

This version has no provenance attestation, while the previous version (0.12.28) was attested. Review the package versions before updating.


Dependabot compatibility score

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 this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [@assistant-ui/react](https://github.com/assistant-ui/assistant-ui/tree/HEAD/packages/react) from 0.12.28 to 0.14.5.
- [Release notes](https://github.com/assistant-ui/assistant-ui/releases)
- [Changelog](https://github.com/assistant-ui/assistant-ui/blob/main/packages/react/CHANGELOG.md)
- [Commits](https://github.com/assistant-ui/assistant-ui/commits/HEAD/packages/react)

---
updated-dependencies:
- dependency-name: "@assistant-ui/react"
  dependency-version: 0.14.5
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

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 15, 2026
@dependabot dependabot Bot requested a review from a team as a code owner May 15, 2026 17:14
@dependabot dependabot Bot added javascript Pull requests that update Javascript code dependencies Pull requests that update a dependency file labels May 15, 2026
@changeset-bot
Copy link
Copy Markdown

changeset-bot Bot commented May 15, 2026

⚠️ No Changeset found

Latest commit: 5286b1a

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

@github-actions github-actions Bot added 👨🏻‍🍳 cookbooks 🚧 chore maintaines work, (update deps, workflos ...) labels May 15, 2026
@github-actions
Copy link
Copy Markdown
Contributor

Coverage Report

Status Category Percentage Covered / Total
🔵 Lines 55.01% 2141 / 3892
🔵 Statements 55.27% 2566 / 4642
🔵 Functions 43.58% 816 / 1872
🔵 Branches 41.95% 965 / 2300
File CoverageNo changed files found.
Generated in workflow #13777 for commit 5286b1a by the Vitest Coverage Report Action

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

🚧 chore maintaines work, (update deps, workflos ...) 👨🏻‍🍳 cookbooks 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