Skip to content

chore(deps): bump the minor-and-patch group with 26 updates#71

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/minor-and-patch-ead85bdf6c
Open

chore(deps): bump the minor-and-patch group with 26 updates#71
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/minor-and-patch-ead85bdf6c

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

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

Package From To
@ai-sdk/anthropic 3.0.81 3.0.83
@ai-sdk/react 3.0.199 3.0.204
@assistant-ui/react 0.14.16 0.14.18
@assistant-ui/react-ai-sdk 1.3.33 1.3.35
@assistant-ui/react-markdown 0.14.2 0.14.3
@dnd-kit/abstract 0.4.0 0.5.0
@dnd-kit/helpers 0.4.0 0.5.0
@dnd-kit/react 0.4.0 0.5.0
@openrouter/ai-sdk-provider 2.9.0 2.9.1
@tanstack/react-router 1.170.15 1.170.16
@tanstack/react-start 1.168.25 1.168.26
ai 6.0.197 6.0.202
better-auth 1.6.14 1.6.17
fuse.js 7.4.1 7.4.2
imapflow 1.3.6 1.4.0
jotai 2.20.0 2.20.1
radix-ui 1.4.3 1.5.0
@rsbuild/core 2.0.11 2.0.12
@storybook/addon-docs 10.4.2 10.4.4
@storybook/react-vite 10.4.2 10.4.4
@tailwindcss/typography 0.5.19 0.5.20
@tanstack/devtools-vite 0.6.1 0.7.0
@types/node 25.9.1 25.9.3
@types/react 19.2.16 19.2.17
knip 6.15.0 6.16.1
storybook 10.4.2 10.4.4

Updates @ai-sdk/anthropic from 3.0.81 to 3.0.83

Commits

Updates @ai-sdk/react from 3.0.199 to 3.0.204

Commits

Updates @assistant-ui/react from 0.14.16 to 0.14.18

Release notes

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

@​assistant-ui/react@​0.14.18

Patch Changes

  • #4352 14aa2ac - feat: unstable_useComposerInputHistory (@​okisdev)

    terminal-style input history for the thread composer: ArrowUp on an empty draft recalls previously sent user messages (newest first, derived live from thread state), ArrowDown steps back and finally restores the in-progress draft. spread the returned { onKeyDown } bundle onto ComposerPrimitive.Input. yields to open trigger popovers, IME composition, modifiers, selections, and consumer handlers that already prevented the event; inert on edit composers.

  • #4340 ab8e5bc - fix: exclude reasoning parts from copied message text (@​serhiizghama)

    getCopyText filtered parts with "text" in part, which also matched reasoning parts (they carry a text field), leaking the model's chain-of-thought into the clipboard. Both copy paths now delegate to the canonical getThreadMessageText, so copy returns only type: "text" content — consistent with the rest of the runtime.

  • #4359 59d252f - feat: branch switching for the ExternalThread client (@​okisdev)

    ExternalThread accepts an optional branches adapter (ExternalThreadBranchAdapter in @assistant-ui/core, re-exported from @assistant-ui/react): getBranches(messageId) returns ordered sibling branch ids and switchToBranch(branchId) makes a sibling visible by swapping the messages array. messages with more than one sibling get real branchNumber/branchCount, which is what shows the branch picker; capabilities.switchToBranch is set for parity with the legacy external store. without the adapter, behavior is unchanged.

  • #4329 2b96cb5 - fix: emit the GroupedParts streaming indicator for empty running messages, so the assistant slot shows a loading affordance immediately after sending instead of staying blank (@​okisdev)

  • #4329 2b96cb5 - fix: compensate scrollbar gutter in useScrollLock so collapsible animations don't shift centered content horizontally on classic scrollbars (@​okisdev)

  • #4350 42fd04f - feat: public, tunable useSmooth (@​okisdev)

    useSmooth and a new SmoothOptions type are now exported from @assistant-ui/react (previously internal-only with a hard-coded reveal rate). the smooth prop on MessagePartPrimitive.Text and MarkdownTextPrimitive widens to boolean | SmoothOptions, with drainMs (backlog drain target, default 250), maxCharIntervalMs (slowest reveal interval, default 5), and maxCharsPerFrame (per-frame cap, default unlimited). the hook also now preserves the part type for reasoning parts instead of always returning type: "text". react-markdown's @assistant-ui/react peer floor moves to the release that ships SmoothOptions.

  • #4325 5a4f20e - chore: update @​assistant-ui/tap dependency ranges to ^0.7.0 (@​Yonom)

  • #4329 2b96cb5 - fix: clear pending viewport bottom-scroll intent on pointer interaction, preventing collapsible expand/collapse from yanking the thread to the bottom (@​okisdev)

  • Updated dependencies [ab8e5bc, 59d252f, feecac3, 3e58253, 12b016b, 3e58253, 5a4f20e, f10b8ae, 1fb5862]:

    • @​assistant-ui/core@​0.2.14
    • @​assistant-ui/store@​0.2.16
    • @​assistant-ui/tap@​0.7.1
Changelog

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

0.14.18

Patch Changes

  • #4352 14aa2ac - feat: unstable_useComposerInputHistory (@​okisdev)

    terminal-style input history for the thread composer: ArrowUp on an empty draft recalls previously sent user messages (newest first, derived live from thread state), ArrowDown steps back and finally restores the in-progress draft. spread the returned { onKeyDown } bundle onto ComposerPrimitive.Input. yields to open trigger popovers, IME composition, modifiers, selections, and consumer handlers that already prevented the event; inert on edit composers.

  • #4340 ab8e5bc - fix: exclude reasoning parts from copied message text (@​serhiizghama)

    getCopyText filtered parts with "text" in part, which also matched reasoning parts (they carry a text field), leaking the model's chain-of-thought into the clipboard. Both copy paths now delegate to the canonical getThreadMessageText, so copy returns only type: "text" content — consistent with the rest of the runtime.

  • #4359 59d252f - feat: branch switching for the ExternalThread client (@​okisdev)

    ExternalThread accepts an optional branches adapter (ExternalThreadBranchAdapter in @assistant-ui/core, re-exported from @assistant-ui/react): getBranches(messageId) returns ordered sibling branch ids and switchToBranch(branchId) makes a sibling visible by swapping the messages array. messages with more than one sibling get real branchNumber/branchCount, which is what shows the branch picker; capabilities.switchToBranch is set for parity with the legacy external store. without the adapter, behavior is unchanged.

  • #4329 2b96cb5 - fix: emit the GroupedParts streaming indicator for empty running messages, so the assistant slot shows a loading affordance immediately after sending instead of staying blank (@​okisdev)

  • #4329 2b96cb5 - fix: compensate scrollbar gutter in useScrollLock so collapsible animations don't shift centered content horizontally on classic scrollbars (@​okisdev)

  • #4350 42fd04f - feat: public, tunable useSmooth (@​okisdev)

    useSmooth and a new SmoothOptions type are now exported from @assistant-ui/react (previously internal-only with a hard-coded reveal rate). the smooth prop on MessagePartPrimitive.Text and MarkdownTextPrimitive widens to boolean | SmoothOptions, with drainMs (backlog drain target, default 250), maxCharIntervalMs (slowest reveal interval, default 5), and maxCharsPerFrame (per-frame cap, default unlimited). the hook also now preserves the part type for reasoning parts instead of always returning type: "text". react-markdown's @assistant-ui/react peer floor moves to the release that ships SmoothOptions.

  • #4325 5a4f20e - chore: update @​assistant-ui/tap dependency ranges to ^0.7.0 (@​Yonom)

  • #4329 2b96cb5 - fix: clear pending viewport bottom-scroll intent on pointer interaction, preventing collapsible expand/collapse from yanking the thread to the bottom (@​okisdev)

  • Updated dependencies [ab8e5bc, 59d252f, feecac3, 3e58253, 12b016b, 3e58253, 5a4f20e, f10b8ae, 1fb5862]:

    • @​assistant-ui/core@​0.2.14
    • @​assistant-ui/store@​0.2.16
    • @​assistant-ui/tap@​0.7.1

0.14.17

Patch Changes

  • #4315 60ef0e9 - feat: add runtime support for deleting messages (@​Yonom)

  • #4318 1b6a0d6 - feat(tap): resources carry all hook arguments; elements are { hook, args } (@​Yonom)

    A ResourceElement is now { hook, args } (was { type, props }): the underlying hook plus the full tuple of arguments to call it with. This lets a resource take multiple positional arguments, exactly like a hook, and makes hosting just hook(...args):

    const usePair = (a: number, b: string) => ({ a, b });
    const Pair = resource(usePair);
    const element = Pair(1, "hi"); // { hook: usePair, args: [1, "hi"] }

    The single-object case is unchanged ergonomically (Counter({ initialValue: 0 }) still works; its args is just [{ initialValue: 0 }]), so existing resources and call sites are unaffected. resource()'s overloads collapse into one variadic signature, and the fnSymbol / callResourceFn indirection is gone (the element holds the hook directly; renderResourceFiber calls fiber.hook(...args)).

... (truncated)

Commits

Updates @assistant-ui/react-ai-sdk from 1.3.33 to 1.3.35

Release notes

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

@​assistant-ui/react-ai-sdk@​1.3.35

Patch Changes

Changelog

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

1.3.35

Patch Changes

1.3.34

Patch Changes

  • #4320 0e923b4 - fix: declare assistant-stream as a regular dependency so it is externalized instead of bundled into dist (the bundled copy broke consumers on its transitive secure-json-parse import) (@​Yonom)

  • #4315 60ef0e9 - feat: add runtime support for deleting messages (@​Yonom)

  • Updated dependencies [60ef0e9, 1b6a0d6, 1b6a0d6, 1b6a0d6]:

    • @​assistant-ui/core@​0.2.13
    • @​assistant-ui/store@​0.2.15
Commits
  • bf78b8e chore: update versions (#4322)
  • d51fe1c fix(generative-ui): hold back nodes whose $type is still streaming instead ...
  • b0693e3 chore: update versions (#4319)
  • 0e923b4 fix(react-ai-sdk): externalize assistant-stream as a regular dependency (#4320)
  • 60ef0e9 feat: add message delete runtime support (#4315)
  • See full diff in compare view

Updates @assistant-ui/react-markdown from 0.14.2 to 0.14.3

Release notes

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

@​assistant-ui/react-markdown@​0.14.3

Patch Changes

  • #4348 5ca6558 - feat: opt-in defer prop on the markdown text primitives (@​okisdev)

    StreamdownTextPrimitive and MarkdownTextPrimitive accept a defer flag that routes the streamed text through useDeferredValue, so re-parsing the growing message runs at a lower priority and typing/scrolling stay responsive while a long message streams in. intermediate streaming states may be skipped under load; the final text always renders. default off; the shadcn kit's markdown-text turns it on.

  • #4350 42fd04f - feat: public, tunable useSmooth (@​okisdev)

    useSmooth and a new SmoothOptions type are now exported from @assistant-ui/react (previously internal-only with a hard-coded reveal rate). the smooth prop on MessagePartPrimitive.Text and MarkdownTextPrimitive widens to boolean | SmoothOptions, with drainMs (backlog drain target, default 250), maxCharIntervalMs (slowest reveal interval, default 5), and maxCharsPerFrame (per-frame cap, default unlimited). the hook also now preserves the part type for reasoning parts instead of always returning type: "text". react-markdown's @assistant-ui/react peer floor moves to the release that ships SmoothOptions.

Changelog

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

0.14.3

Patch Changes

  • #4348 5ca6558 - feat: opt-in defer prop on the markdown text primitives (@​okisdev)

    StreamdownTextPrimitive and MarkdownTextPrimitive accept a defer flag that routes the streamed text through useDeferredValue, so re-parsing the growing message runs at a lower priority and typing/scrolling stay responsive while a long message streams in. intermediate streaming states may be skipped under load; the final text always renders. default off; the shadcn kit's markdown-text turns it on.

  • #4350 42fd04f - feat: public, tunable useSmooth (@​okisdev)

    useSmooth and a new SmoothOptions type are now exported from @assistant-ui/react (previously internal-only with a hard-coded reveal rate). the smooth prop on MessagePartPrimitive.Text and MarkdownTextPrimitive widens to boolean | SmoothOptions, with drainMs (backlog drain target, default 250), maxCharIntervalMs (slowest reveal interval, default 5), and maxCharsPerFrame (per-frame cap, default unlimited). the hook also now preserves the part type for reasoning parts instead of always returning type: "text". react-markdown's @assistant-ui/react peer floor moves to the release that ships SmoothOptions.

Commits

Updates @dnd-kit/abstract from 0.4.0 to 0.5.0

Release notes

Sourced from @​dnd-kit/abstract's releases.

@​dnd-kit/abstract@​0.5.0

Patch Changes

  • #2067 e4d1a7e Thanks @​Philipp91! - Supply correct Options type in return type of plugin configurator()

  • Updated dependencies []:

    • @​dnd-kit/geometry@​0.5.0
    • @​dnd-kit/state@​0.5.0
Commits
  • cc98bdd Merge pull request #2022 from clauderic/changeset-release/main
  • f2b2135 Version Packages
  • 32d2c66 Merge pull request #2067 from Philipp91/patch-1
  • 8691737 Merge pull request #2074 from timagixe/issues/2065
  • c04d797 Merge pull request #2079 from silence717/fix/parse-transform-undefined
  • 051fec0 Merge pull request #2063 from albertonoys/fix/docs-navigation-links
  • e4792f3 fix(dom): guard parseScale/parseTranslate against undefined transform values
  • e4d1a7e Supply correct Options type in return type of plugin configurator()
  • 90ddfcd fix(helpers): support numeric group IDs in grouped move
  • 737d3e5 fix(docs): fix malformed navigation links in plugins and sensors section
  • Additional commits viewable in compare view

Updates @dnd-kit/helpers from 0.4.0 to 0.5.0

Release notes

Sourced from @​dnd-kit/helpers's releases.

@​dnd-kit/helpers@​0.5.0

Patch Changes

  • #2074 90ddfcd Thanks @​timagixe! - Fix grouped record sorting with numeric group IDs

  • #2027 a7ee830 Thanks @​sourabh945! - fix a check for the 'id' in items that causing TypeError in SortableContext add the gaurdrail for chekcing the item is not null.

  • Updated dependencies [e4d1a7e]:

    • @​dnd-kit/abstract@​0.5.0
Commits
  • cc98bdd Merge pull request #2022 from clauderic/changeset-release/main
  • f2b2135 Version Packages
  • 32d2c66 Merge pull request #2067 from Philipp91/patch-1
  • 8691737 Merge pull request #2074 from timagixe/issues/2065
  • c04d797 Merge pull request #2079 from silence717/fix/parse-transform-undefined
  • 051fec0 Merge pull request #2063 from albertonoys/fix/docs-navigation-links
  • e4792f3 fix(dom): guard parseScale/parseTranslate against undefined transform values
  • e4d1a7e Supply correct Options type in return type of plugin configurator()
  • 90ddfcd fix(helpers): support numeric group IDs in grouped move
  • 737d3e5 fix(docs): fix malformed navigation links in plugins and sensors section
  • Additional commits viewable in compare view

Updates @dnd-kit/react from 0.4.0 to 0.5.0

Release notes

Sourced from @​dnd-kit/react's releases.

@​dnd-kit/react@​0.5.0

Minor Changes

  • #2058 2dd8d0e Thanks @​timagixe! - Allow useSortable, createSortable and Sortable to disable dragging and dropping independently with a disabled object while preserving the existing boolean behavior.

Patch Changes

  • #2021 de5a0f4 Thanks @​lixiaoyan! - Fixed useDraggable and useSortable reassigning the underlying entity's sensors on every render when sensors was passed as an inline array. The sensors prop is now compared with deepEqual (matching the existing behavior of modifiers, plugins, and DragDropProvider), preventing unnecessary mutations to the plugin registry that could disrupt in-progress sensor activation.

  • #2043 a6bd445 Thanks @​clauderic! - Include sourcemap files in published packages. The build emits .map files alongside each entry point and writes //# sourceMappingURL=... comments into the bundles, but the files field in package.json did not list the maps, so they were excluded from the npm tarball. Bundlers attempting to load the referenced maps would fail with ENOENT, producing warnings (or build failures in strict CI setups).

  • Updated dependencies [e4d1a7e, e25b1b1, 00fd955, e4792f3, f23afe0, 2dd8d0e]:

    • @​dnd-kit/abstract@​0.5.0
    • @​dnd-kit/dom@​0.5.0
    • @​dnd-kit/state@​0.5.0
Commits
  • cc98bdd Merge pull request #2022 from clauderic/changeset-release/main
  • f2b2135 Version Packages
  • 32d2c66 Merge pull request #2067 from Philipp91/patch-1
  • 8691737 Merge pull request #2074 from timagixe/issues/2065
  • c04d797 Merge pull request #2079 from silence717/fix/parse-transform-undefined
  • 051fec0 Merge pull request #2063 from albertonoys/fix/docs-navigation-links
  • e4792f3 fix(dom): guard parseScale/parseTranslate against undefined transform values
  • e4d1a7e Supply correct Options type in return type of plugin configurator()
  • 90ddfcd fix(helpers): support numeric group IDs in grouped move
  • 737d3e5 fix(docs): fix malformed navigation links in plugins and sensors section
  • Additional commits viewable in compare view

Updates @openrouter/ai-sdk-provider from 2.9.0 to 2.9.1

Release notes

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

2.9.1

What's Changed

Full Changelog: OpenRouterTeam/ai-sdk-provider@2.9.0...2.9.1

Changelog

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

2.9.1

Patch Changes

  • #506 e9cff3a Thanks @​robert-j-y! - Send content: null instead of content: "" for assistant messages that contain only tool calls. Fixes AWS Bedrock Nova rejecting requests with "The text field in the ContentBlock object is blank."
Commits

Updates @tanstack/react-router from 1.170.15 to 1.170.16

Release notes

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

@​tanstack/react-router@​1.170.16

Patch Changes

  • #7595 52db703 - Perf improvement of useMatch and derived hooks when navigating away from previous match

  • #7575 4a93cff - useMatches can skip useRef for structural sharing during SSR

  • #7600 f046b06 - Reduce Match rerenders during navigations (PR #7596)

  • #7577 689d88e - Reduce bundle size by sharing structuralSharing selector logic

  • #7627 689c5ab - Silence AbortError in renderRouterToStream, this is normal operation

Changelog

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

1.170.16

Patch Changes

  • #7595 52db703 - Perf improvement of useMatch and derived hooks when navigating away from previous match

  • #7575 4a93cff - useMatches can skip useRef for structural sharing during SSR

  • #7600 f046b06 - Reduce Match rerenders during navigations (PR #7596)

  • #7577 689d88e - Reduce bundle size by sharing structuralSharing selector logic

  • #7627 689c5ab - Silence AbortError in renderRouterToStream, this is normal operation

Commits
  • f23ed0f ci: Version Packages (#7576)
  • 689c5ab chore(react-router): silence AbortError in renderRouterToStream (#7627)
  • a2b9d51 docs: fix duplicate "to" typos (#7370)
  • 56bd271 perf(react-router): add match selector compares (#7596)
  • 52db703 fix(react-router): avoid throwing in useMatch selector (#7595)
  • 689d88e refactor(react-router): Reduce bundle size by sharing hook structuralSharing ...
  • 4a93cff refactor(react-router): useMatches skips useRef during SSR (#7575)
  • See full diff in compare view

Updates @tanstack/react-start from 1.168.25 to 1.168.26

Release notes

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

@​tanstack/react-start@​1.168.26

Patch Changes

Changelog

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

1.168.26

Patch Changes

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

| Package | From | To |
| --- | --- | --- |
| [@ai-sdk/anthropic](https://github.com/vercel/ai/tree/HEAD/packages/anthropic) | `3.0.81` | `3.0.83` |
| [@ai-sdk/react](https://github.com/vercel/ai/tree/HEAD/packages/react) | `3.0.199` | `3.0.204` |
| [@assistant-ui/react](https://github.com/assistant-ui/assistant-ui/tree/HEAD/packages/react) | `0.14.16` | `0.14.18` |
| [@assistant-ui/react-ai-sdk](https://github.com/assistant-ui/assistant-ui/tree/HEAD/packages/react-ai-sdk) | `1.3.33` | `1.3.35` |
| [@assistant-ui/react-markdown](https://github.com/assistant-ui/assistant-ui/tree/HEAD/packages/react-markdown) | `0.14.2` | `0.14.3` |
| [@dnd-kit/abstract](https://github.com/clauderic/dnd-kit) | `0.4.0` | `0.5.0` |
| [@dnd-kit/helpers](https://github.com/clauderic/dnd-kit) | `0.4.0` | `0.5.0` |
| [@dnd-kit/react](https://github.com/clauderic/dnd-kit) | `0.4.0` | `0.5.0` |
| [@openrouter/ai-sdk-provider](https://github.com/OpenRouterTeam/ai-sdk-provider) | `2.9.0` | `2.9.1` |
| [@tanstack/react-router](https://github.com/TanStack/router/tree/HEAD/packages/react-router) | `1.170.15` | `1.170.16` |
| [@tanstack/react-start](https://github.com/TanStack/router/tree/HEAD/packages/react-start) | `1.168.25` | `1.168.26` |
| [ai](https://github.com/vercel/ai/tree/HEAD/packages/ai) | `6.0.197` | `6.0.202` |
| [better-auth](https://github.com/better-auth/better-auth/tree/HEAD/packages/better-auth) | `1.6.14` | `1.6.17` |
| [fuse.js](https://github.com/krisk/Fuse) | `7.4.1` | `7.4.2` |
| [imapflow](https://github.com/postalsys/imapflow) | `1.3.6` | `1.4.0` |
| [jotai](https://github.com/pmndrs/jotai) | `2.20.0` | `2.20.1` |
| [radix-ui](https://github.com/radix-ui/primitives/tree/HEAD/packages/react/radix-ui) | `1.4.3` | `1.5.0` |
| [@rsbuild/core](https://github.com/web-infra-dev/rsbuild/tree/HEAD/packages/core) | `2.0.11` | `2.0.12` |
| [@storybook/addon-docs](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/docs) | `10.4.2` | `10.4.4` |
| [@storybook/react-vite](https://github.com/storybookjs/storybook/tree/HEAD/code/frameworks/react-vite) | `10.4.2` | `10.4.4` |
| [@tailwindcss/typography](https://github.com/tailwindlabs/tailwindcss-typography) | `0.5.19` | `0.5.20` |
| [@tanstack/devtools-vite](https://github.com/TanStack/devtools/tree/HEAD/packages/devtools-vite) | `0.6.1` | `0.7.0` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `25.9.1` | `25.9.3` |
| [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `19.2.16` | `19.2.17` |
| [knip](https://github.com/webpro-nl/knip/tree/HEAD/packages/knip) | `6.15.0` | `6.16.1` |
| [storybook](https://github.com/storybookjs/storybook/tree/HEAD/code/core) | `10.4.2` | `10.4.4` |


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

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

Updates `@assistant-ui/react` from 0.14.16 to 0.14.18
- [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/@assistant-ui/react@0.14.18/packages/react)

Updates `@assistant-ui/react-ai-sdk` from 1.3.33 to 1.3.35
- [Release notes](https://github.com/assistant-ui/assistant-ui/releases)
- [Changelog](https://github.com/assistant-ui/assistant-ui/blob/main/packages/react-ai-sdk/CHANGELOG.md)
- [Commits](https://github.com/assistant-ui/assistant-ui/commits/@assistant-ui/react-ai-sdk@1.3.35/packages/react-ai-sdk)

Updates `@assistant-ui/react-markdown` from 0.14.2 to 0.14.3
- [Release notes](https://github.com/assistant-ui/assistant-ui/releases)
- [Changelog](https://github.com/assistant-ui/assistant-ui/blob/main/packages/react-markdown/CHANGELOG.md)
- [Commits](https://github.com/assistant-ui/assistant-ui/commits/@assistant-ui/react-markdown@0.14.3/packages/react-markdown)

Updates `@dnd-kit/abstract` from 0.4.0 to 0.5.0
- [Release notes](https://github.com/clauderic/dnd-kit/releases)
- [Commits](https://github.com/clauderic/dnd-kit/compare/@dnd-kit/abstract@0.4.0...@dnd-kit/abstract@0.5.0)

Updates `@dnd-kit/helpers` from 0.4.0 to 0.5.0
- [Release notes](https://github.com/clauderic/dnd-kit/releases)
- [Commits](https://github.com/clauderic/dnd-kit/compare/@dnd-kit/helpers@0.4.0...@dnd-kit/helpers@0.5.0)

Updates `@dnd-kit/react` from 0.4.0 to 0.5.0
- [Release notes](https://github.com/clauderic/dnd-kit/releases)
- [Commits](https://github.com/clauderic/dnd-kit/compare/@dnd-kit/react@0.4.0...@dnd-kit/react@0.5.0)

Updates `@openrouter/ai-sdk-provider` from 2.9.0 to 2.9.1
- [Release notes](https://github.com/OpenRouterTeam/ai-sdk-provider/releases)
- [Changelog](https://github.com/OpenRouterTeam/ai-sdk-provider/blob/main/CHANGELOG.md)
- [Commits](OpenRouterTeam/ai-sdk-provider@2.9.0...2.9.1)

Updates `@tanstack/react-router` from 1.170.15 to 1.170.16
- [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.16/packages/react-router)

Updates `@tanstack/react-start` from 1.168.25 to 1.168.26
- [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.26/packages/react-start)

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

Updates `better-auth` from 1.6.14 to 1.6.17
- [Release notes](https://github.com/better-auth/better-auth/releases)
- [Changelog](https://github.com/better-auth/better-auth/blob/main/packages/better-auth/CHANGELOG.md)
- [Commits](https://github.com/better-auth/better-auth/commits/v1.6.17/packages/better-auth)

Updates `fuse.js` from 7.4.1 to 7.4.2
- [Release notes](https://github.com/krisk/Fuse/releases)
- [Changelog](https://github.com/krisk/Fuse/blob/main/CHANGELOG.md)
- [Commits](krisk/Fuse@v7.4.1...v7.4.2)

Updates `imapflow` from 1.3.6 to 1.4.0
- [Release notes](https://github.com/postalsys/imapflow/releases)
- [Changelog](https://github.com/postalsys/imapflow/blob/master/CHANGELOG.md)
- [Commits](postalsys/imapflow@v1.3.6...v1.4.0)

Updates `jotai` from 2.20.0 to 2.20.1
- [Release notes](https://github.com/pmndrs/jotai/releases)
- [Commits](pmndrs/jotai@v2.20.0...v2.20.1)

Updates `radix-ui` from 1.4.3 to 1.5.0
- [Changelog](https://github.com/radix-ui/primitives/blob/main/packages/react/radix-ui/CHANGELOG.md)
- [Commits](https://github.com/radix-ui/primitives/commits/HEAD/packages/react/radix-ui)

Updates `@rsbuild/core` from 2.0.11 to 2.0.12
- [Release notes](https://github.com/web-infra-dev/rsbuild/releases)
- [Commits](https://github.com/web-infra-dev/rsbuild/commits/v2.0.12/packages/core)

Updates `@storybook/addon-docs` from 10.4.2 to 10.4.4
- [Release notes](https://github.com/storybookjs/storybook/releases)
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md)
- [Commits](https://github.com/storybookjs/storybook/commits/v10.4.4/code/addons/docs)

Updates `@storybook/react-vite` from 10.4.2 to 10.4.4
- [Release notes](https://github.com/storybookjs/storybook/releases)
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md)
- [Commits](https://github.com/storybookjs/storybook/commits/v10.4.4/code/frameworks/react-vite)

Updates `@tailwindcss/typography` from 0.5.19 to 0.5.20
- [Release notes](https://github.com/tailwindlabs/tailwindcss-typography/releases)
- [Changelog](https://github.com/tailwindlabs/tailwindcss-typography/blob/main/CHANGELOG.md)
- [Commits](tailwindlabs/tailwindcss-typography@v0.5.19...v0.5.20)

Updates `@tanstack/devtools-vite` from 0.6.1 to 0.7.0
- [Release notes](https://github.com/TanStack/devtools/releases)
- [Changelog](https://github.com/TanStack/devtools/blob/main/packages/devtools-vite/CHANGELOG.md)
- [Commits](https://github.com/TanStack/devtools/commits/@tanstack/devtools-vite@0.7.0/packages/devtools-vite)

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

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

Updates `knip` from 6.15.0 to 6.16.1
- [Release notes](https://github.com/webpro-nl/knip/releases)
- [Commits](https://github.com/webpro-nl/knip/commits/knip@6.16.1/packages/knip)

Updates `storybook` from 10.4.2 to 10.4.4
- [Release notes](https://github.com/storybookjs/storybook/releases)
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md)
- [Commits](https://github.com/storybookjs/storybook/commits/v10.4.4/code/core)

---
updated-dependencies:
- dependency-name: "@ai-sdk/anthropic"
  dependency-version: 3.0.83
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@ai-sdk/react"
  dependency-version: 3.0.204
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@assistant-ui/react"
  dependency-version: 0.14.18
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@assistant-ui/react-ai-sdk"
  dependency-version: 1.3.35
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@assistant-ui/react-markdown"
  dependency-version: 0.14.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@dnd-kit/abstract"
  dependency-version: 0.5.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@dnd-kit/helpers"
  dependency-version: 0.5.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@dnd-kit/react"
  dependency-version: 0.5.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@openrouter/ai-sdk-provider"
  dependency-version: 2.9.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@tanstack/react-router"
  dependency-version: 1.170.16
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@tanstack/react-start"
  dependency-version: 1.168.26
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: ai
  dependency-version: 6.0.202
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: better-auth
  dependency-version: 1.6.17
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: fuse.js
  dependency-version: 7.4.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: imapflow
  dependency-version: 1.4.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: jotai
  dependency-version: 2.20.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: radix-ui
  dependency-version: 1.5.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@rsbuild/core"
  dependency-version: 2.0.12
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@storybook/addon-docs"
  dependency-version: 10.4.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@storybook/react-vite"
  dependency-version: 10.4.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@tailwindcss/typography"
  dependency-version: 0.5.20
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@tanstack/devtools-vite"
  dependency-version: 0.7.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@types/node"
  dependency-version: 25.9.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@types/react"
  dependency-version: 19.2.17
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: knip
  dependency-version: 6.16.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: storybook
  dependency-version: 10.4.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot @github

dependabot Bot commented on behalf of github Jun 19, 2026

Copy link
Copy Markdown
Contributor Author

Labels

The following labels could not be found: npm. Please create it before Dependabot can add it to a pull request.

Please fix the above issues or remove invalid values from dependabot.yml.

@dependabot dependabot Bot added the dependencies Pull requests that update a dependency file label Jun 19, 2026
@kilo-code-bot

kilo-code-bot Bot commented Jun 19, 2026

Copy link
Copy Markdown
Contributor

Code Review Summary

Status: No Issues Found | Recommendation: Merge

Overview

This is a routine Dependabot dependency update affecting 26 packages across minor and patch versions. All version bumps follow semantic versioning best practices.

Key Updates

Category Packages Change
AI SDK @ai-sdk/anthropic, @ai-sdk/react, ai Patch updates
Assistant UI @assistant-ui/react, @assistant-ui/react-ai-sdk Patch/minor updates
Auth better-auth Patch update (1.6.14 to 1.6.17)
Drag and Drop @dnd-kit/* Minor update (0.4.0 to 0.5.0)
TanStack @tanstack/react-router, @tanstack/react-start Patch updates
Types @types/react, @types/node Patch updates
Dev Tools @tanstack/devtools-vite, storybook, knip Minor/patch updates
Other fuse.js, jotai, radix-ui, imapflow Patch/minor updates

Analysis

  • All updates are minor or patch versions - no breaking changes expected
  • All packages are from reputable sources (official SDKs, well-maintained libraries)
  • Lockfile (pnpm-lock.yaml) is properly synchronized with package.json changes
  • No breaking change indicators in the version bumps

Notes

  • The @dnd-kit/* packages have a minor bump (0.4.0 to 0.5.0) - this is pre-1.0 versioning but appears to be a feature addition
  • @tanstack/devtools-vite update (0.6.1 to 0.7.0) is a minor version but is dev-only

Files Reviewed (2 files)

  • package.json - 26 dependency version bumps
  • pnpm-lock.yaml - Synchronized lockfile updates

Automated code review by Kilo


Reviewed by kimi-k2.5-0127 · 598,097 tokens

@dependabot @github

dependabot Bot commented on behalf of github Jun 26, 2026

Copy link
Copy Markdown
Contributor Author

Dependabot tried to update this pull request, but something went wrong. We're looking into it, but in the meantime you can retry the update by commenting @dependabot recreate.

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

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants