Menu

#20 chore(deps): bump the minor-and-patch group across 1 directory with 29 updates

closed
nobody
2026-07-16
2026-07-03
Anonymous
No

Originally created by: dependabot[bot]

Bumps the minor-and-patch group with 29 updates in the / directory:

Package From To
@ai-sdk/anthropic 3.0.81 3.0.92
@ai-sdk/openai 3.0.68 3.0.80
@base-ui/react 1.5.0 1.6.0
@codemirror/language 6.12.3 6.12.4
@openrouter/ai-sdk-provider 2.9.0 2.10.0
@shikijs/core 4.2.0 4.3.0
@shikijs/engine-javascript 4.2.0 4.3.0
@shikijs/langs 4.2.0 4.3.0
@shikijs/themes 4.2.0 4.3.0
@shikijs/types 4.2.0 4.3.0
@tailwindcss/vite 4.3.0 4.3.2
@tanstack/react-query 5.101.0 5.101.2
@tanstack/react-virtual 3.14.2 3.14.5
@tauri-apps/api 2.11.0 2.11.1
ai 6.0.198 6.0.218
dompurify 3.4.10 3.4.11
motion 12.40.0 12.42.0
ollama-ai-provider-v2 3.5.1 3.6.0
posthog-js 1.386.8 1.395.0
recharts 3.8.0 3.9.0
shadcn 4.11.0 4.12.0
tailwindcss 4.3.0 4.3.2
@biomejs/biome 2.4.16 2.5.1
@tauri-apps/cli 2.11.2 2.11.4
@vitejs/plugin-react 6.0.2 6.0.3
globals 17.6.0 17.7.0
vite 7.3.5 7.3.6
astro 6.4.7 6.4.8
sharp 0.35.1 0.35.3

Updates @ai-sdk/anthropic from 3.0.81 to 3.0.92

Changelog

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

3.0.92

Patch Changes

  • Updated dependencies [ea1e95b]
    • @​ai-sdk/provider-utils@​4.0.35

3.0.91

Patch Changes

  • 95bc6fd: feat (provider/anthropic): add claude-sonnet-5 model id
  • Updated dependencies [fa850e6]
    • @​ai-sdk/provider@​3.0.13
    • @​ai-sdk/provider-utils@​4.0.34

3.0.90

Patch Changes

  • 28ff5a7: fix(anthropic): correctly map delta type when code execution tools are used

3.0.89

Patch Changes

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

3.0.88

Patch Changes

  • Updated dependencies [f19334d]
    • @​ai-sdk/provider@​3.0.12
    • @​ai-sdk/provider-utils@​4.0.32

3.0.87

Patch Changes

  • 1b40ac7: Publish all packages under the @ai-v6 dist tag.
  • Updated dependencies [1b40ac7]
    • @​ai-sdk/provider-utils@​4.0.31
    • @​ai-sdk/provider@​3.0.11

3.0.86

Patch Changes

... (truncated)

Commits


Updates @ai-sdk/openai from 3.0.68 to 3.0.80

Changelog

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

3.0.80

Patch Changes

  • Updated dependencies [ea1e95b]
    • @​ai-sdk/provider-utils@​4.0.35

3.0.79

Patch Changes

  • Updated dependencies [fa850e6]
    • @​ai-sdk/provider@​3.0.13
    • @​ai-sdk/provider-utils@​4.0.34

3.0.78

Patch Changes

  • 64a701d: Return a helpful error when the Responses stream parser receives Chat Completions chunks.

3.0.77

Patch Changes

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

3.0.76

Patch Changes

  • 2ee1700: feat(openai): add support for web_search_call.results include option
  • Updated dependencies [f19334d]
    • @​ai-sdk/provider@​3.0.12
    • @​ai-sdk/provider-utils@​4.0.32

3.0.75

Patch Changes

  • 1b40ac7: Publish all packages under the @ai-v6 dist tag.
  • Updated dependencies [1b40ac7]
    • @​ai-sdk/provider-utils@​4.0.31
    • @​ai-sdk/provider@​3.0.11

3.0.74

Patch Changes

... (truncated)

Commits


Updates @base-ui/react from 1.5.0 to 1.6.0

Release notes

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

v1.6.0

General changes

Accordion

Alert Dialog

Autocomplete

Avatar

Checkbox

Checkbox Group

Collapsible

Combobox

... (truncated)

Changelog

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

v1.6.0

Jun 18, 2026

General changes

Accordion

Alert Dialog

Autocomplete

Avatar

Checkbox

Checkbox Group

Collapsible

Combobox

... (truncated)

Commits


Updates @codemirror/language from 6.12.3 to 6.12.4

Commits


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

Release notes

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

2.9.1

What's Changed

Full Changelog: https://github.com/OpenRouterTeam/ai-sdk-provider/compare/2.9.0...2.9.1

Changelog

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

2.10.0

Minor Changes

  • #513](https://github.com/href="https://redirect.github.com/OpenRouterTeam/ai-sdk-provider/pull/513">/issues/513) 384f3c8 Thanks @​Robinnnnn! - Switch image generation to dedicated /api/v1/images endpoint

    Migrates OpenRouterImageModel from the legacy chat completions path (/chat/completions with modalities: ["image", "text"]) to OpenRouter's dedicated image generation endpoint (/images).

    Request changes:

    • Sends { model, prompt, n, size, aspect_ratio, seed, input_references } directly instead of wrapping in a chat messages array
    • files are mapped to input_references (array of { type: "image_url", image_url: { url } }) instead of inline message content parts
    • aspectRatio maps to aspect_ratio (was image_config.aspect_ratio)
    • size and n are now passed through (previously emitted warnings)

    Response changes:

    • Parses { created, data: [{ b64_json }], usage } instead of { choices: [{ message: { images } }] }
    • maxImagesPerCall updated from 1 to 10 (the new endpoint supports batch generation)

2.9.1

Patch Changes

Commits


Updates @shikijs/core from 4.2.0 to 4.3.0

Release notes

Sourced from @​shikijs/core's releases.

v4.3.0

   🚀 Features

    View changes on GitHub
Commits


Updates @shikijs/engine-javascript from 4.2.0 to 4.3.0

Release notes

Sourced from @​shikijs/engine-javascript's releases.

v4.3.0

   🚀 Features

    View changes on GitHub
Commits


Updates @shikijs/langs from 4.2.0 to 4.3.0

Release notes

Sourced from @​shikijs/langs's releases.

v4.3.0

   🚀 Features

    View changes on GitHub
Commits


Updates @shikijs/themes from 4.2.0 to 4.3.0

Release notes

Sourced from @​shikijs/themes's releases.

v4.3.0

   🚀 Features

    View changes on GitHub
Commits


Updates @shikijs/types from 4.2.0 to 4.3.0

Release notes

Sourced from @​shikijs/types's releases.

v4.3.0

   🚀 Features

    View changes on GitHub
Commits


Updates @tailwindcss/vite from 4.3.0 to 4.3.2

Release notes

Sourced from @​tailwindcss/vite's releases.

v4.3.2

Fixed

v4.3.1

Added

Fixed

Changed

... (truncated)

Changelog

Sourced from @​tailwindcss/vite's changelog.

[4.3.2] - 2026-06-26

Fixed

[4.3.1] - 2026-06-12

Added

Fixed

Changed

... (truncated)

Commits


Updates @tanstack/react-query from 5.101.0 to 5.101.2

Release notes

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

@​tanstack/react-query-devtools@​5.101.2

Patch Changes

@​tanstack/react-query-next-experimental@​5.101.2

Patch Changes

  • Updated dependencies []:
    • @​tanstack/react-query@​5.101.2

@​tanstack/react-query-persist-client@​5.101.2

Patch Changes

  • Updated dependencies []:
    • @​tanstack/query-persist-client-core@​5.101.2
    • @​tanstack/react-query@​5.101.2

@​tanstack/react-query@​5.101.2

Patch Changes

  • Updated dependencies []:
    • @​tanstack/query-core@​5.101.2

@​tanstack/react-query-devtools@​5.101.1

Patch Changes

  • Updated dependencies []:
    • @​tanstack/query-devtools@​5.101.1
    • @​tanstack/react-query@​5.101.1

@​tanstack/react-query-next-experimental@​5.101.1

Patch Changes

  • Updated dependencies []:
    • @​tanstack/react-query@​5.101.1

@​tanstack/react-query-persist-client@​5.101.1

Patch Changes

  • Updated dependencies []:
    • @​tanstack/query-persist-client-core@​5.101.1
    • @​tanstack/react-query@​5.101.1

@​tanstack/react-query@​5.101.1

Patch Changes

... (truncated)

Changelog

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

5.101.2

Patch Changes

  • Updated dependencies []:
    • @​tanstack/query-core@​5.101.2

5.101.1

Patch Changes

  • Updated dependencies [9eff92e]:
    • @​tanstack/query-core@​5.101.1
Commits


Updates @tanstack/react-virtual from 3.14.2 to 3.14.5

Release notes

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

@​tanstack/react-virtual@​3.14.5

Patch Changes

@​tanstack/react-virtual@​3.14.4

Patch Changes

@​tanstack/react-virtual@​3.14.3

Patch Changes

Changelog

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

3.14.5

Patch Changes

3.14.4

Patch Changes

3.14.3

Patch Changes

Commits


Updates @tauri-apps/api from 2.11.0 to 2.11.1

Release notes

Sourced from @​tauri-apps/api's releases.

@​tauri-apps/api v2.11.1

No known vulnerabilities found

[2.11.1]

Enhancements

> @tauri-apps/api@2.11.1 npm-publish /home/runner...

_Description has been truncated_

Related

Tickets: #142

Discussion

  • Anonymous

    Anonymous - 2026-07-16

    Originally posted by: dependabot[bot]

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

     
  • Anonymous

    Anonymous - 2026-07-16

    Ticket changed by: dependabot[bot]

    • status: open --> closed
     

Log in to post a comment.