Skip to content

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

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/production-dependencies-7695f4e486
Open

chore(deps): bump the production-dependencies group across 1 directory with 25 updates#145
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/production-dependencies-7695f4e486

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

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

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

Package From To
@ai-sdk/anthropic 3.0.71 3.0.81
@ai-sdk/deepseek 2.0.29 2.0.35
@ai-sdk/google 3.0.64 3.0.80
@ai-sdk/groq 3.0.35 3.0.39
@ai-sdk/mcp 1.0.36 1.0.45
@ai-sdk/mistral 3.0.30 3.0.37
@ai-sdk/openai 3.0.53 3.0.67
@ast-grep/napi 0.42.1 0.43.0
@aws-sdk/client-s3 3.1038.0 3.1057.0
@aws-sdk/s3-request-presigner 3.1038.0 3.1057.0
@deepgram/sdk 5.1.0 5.3.0
@e2b/code-interpreter 2.4.0 2.5.0
@fal-ai/client 1.10.0 1.10.1
@tavily/core 0.7.2 0.7.3
ai 6.0.168 6.0.193
better-sqlite3 12.9.0 12.10.0
bullmq 5.76.2 5.77.6
compromise 14.15.0 14.15.1
ioredis 5.10.1 5.11.0
motion 12.38.0 12.40.0
mysql2 3.22.3 3.22.4
pg 8.20.0 8.21.0
react 19.2.5 19.2.6
react-dom 19.2.5 19.2.6
tailwind-merge 3.5.0 3.6.0

Updates @ai-sdk/anthropic from 3.0.71 to 3.0.81

Release notes

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

@​ai-sdk/anthropic@​3.0.81

Patch Changes

  • 4084fcd: feat(provider/anthropic): add support for claude-opus-4-8

@​ai-sdk/anthropic@​3.0.80

Patch Changes

  • 263d3e6: fix(provider/anthropic): fix remaining errors with Anthropic code_execution tool dynamic calls from latest web_fetch or web_search
Changelog

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

3.0.81

Patch Changes

  • 4084fcd: feat(provider/anthropic): add support for claude-opus-4-8

3.0.80

Patch Changes

  • 263d3e6: fix(provider/anthropic): fix remaining errors with Anthropic code_execution tool dynamic calls from latest web_fetch or web_search

3.0.79

Patch Changes

  • d61a788: Handle errors from anthropic websearch tool

3.0.78

Patch Changes

  • 6e28d25: fix(anthropic): propagate toModelOutput providerOption to anthropic tool results

3.0.77

Patch Changes

  • d53314d: feat(anthropic): add the new advisor tool

3.0.76

Patch Changes

  • Updated dependencies [f591416]
    • @​ai-sdk/provider-utils@​4.0.27

3.0.75

Patch Changes

  • 3f06680: Remove stale effort-2025-11-24 beta header — the extended thinking effort parameter is GA and no longer requires the beta flag. Vertex AI's strict validator was actively rejecting requests with this header.

3.0.74

Patch Changes

  • Updated dependencies [7beadf0]
    • @​ai-sdk/provider-utils@​4.0.26

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for @​ai-sdk/anthropic since your current version.


Updates @ai-sdk/deepseek from 2.0.29 to 2.0.35

Changelog

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

2.0.35

Patch Changes

  • c70e921: Accept thinking.type: 'adaptive' and the full reasoningEffort enum (low, medium, high, xhigh, max) for the DeepSeek provider.

2.0.34

Patch Changes

  • Updated dependencies [f591416]
    • @​ai-sdk/provider-utils@​4.0.27

2.0.33

Patch Changes

  • ee294d0: feat(provider/deepseek): add DeepSeek V4 reasoning effort support

2.0.32

Patch Changes

  • Updated dependencies [7beadf0]
    • @​ai-sdk/provider-utils@​4.0.26

2.0.31

Patch Changes

  • a727da4: chore: ensure consistent import handling and avoid import duplicates or cycles
  • Updated dependencies [a727da4]
    • @​ai-sdk/provider-utils@​4.0.25
    • @​ai-sdk/provider@​3.0.10

2.0.30

Patch Changes

  • 082db44: fix(provider/deepseek): preserve reasoning_content for deepseek-v4 in multi-turn requests
  • a7f3c72: trigger release for all packages after provenance setup
  • Updated dependencies [a7f3c72]
    • @​ai-sdk/provider@​3.0.9
    • @​ai-sdk/provider-utils@​4.0.24
Commits
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for @​ai-sdk/deepseek since your current version.


Updates @ai-sdk/google from 3.0.64 to 3.0.80

Release notes

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

@​ai-sdk/google@​3.0.80

Patch Changes

  • f62ffe0: fix(google): auto-inject skip_thought_signature_validator for Gemini 3 tool-call replays without a signature

    Gemini 3 models reject requests when an assistant functionCall part lacks a thoughtSignature with HTTP 400 "Function call is missing a thought_signature in functionCall parts." This is easy to hit when application code persists/serializes messages and drops providerOptions.google.thoughtSignature (custom DB schemas, useChat server routes that rebuild messages, synthetic tool-call injection).

    The provider now detects this case (Gemini 3 model + missing signature under google, googleVertex, and vertex namespaces) and injects the documented skip_thought_signature_validator sentinel into the outbound functionCall, plus surfaces a one-shot warning per request listing the affected tool names so the developer can find and fix the upstream serialization. Non-Gemini-3 models are unaffected, and real signatures take precedence when present.

Changelog

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

3.0.80

Patch Changes

  • f62ffe0: fix(google): auto-inject skip_thought_signature_validator for Gemini 3 tool-call replays without a signature

    Gemini 3 models reject requests when an assistant functionCall part lacks a thoughtSignature with HTTP 400 "Function call is missing a thought_signature in functionCall parts." This is easy to hit when application code persists/serializes messages and drops providerOptions.google.thoughtSignature (custom DB schemas, useChat server routes that rebuild messages, synthetic tool-call injection).

    The provider now detects this case (Gemini 3 model + missing signature under google, googleVertex, and vertex namespaces) and injects the documented skip_thought_signature_validator sentinel into the outbound functionCall, plus surfaces a one-shot warning per request listing the affected tool names so the developer can find and fix the upstream serialization. Non-Gemini-3 models are unaffected, and real signatures take precedence when present.

3.0.79

Patch Changes

  • cfa0cb2: feat(provider/google): support Google search grounding when using generateImage with Gemini

3.0.78

Patch Changes

  • cf63828: fix(google): read serviceTier from usageMetadata.serviceTier in both generate and stream paths

    The previous implementation read serviceTier from the x-gemini-service-tier response header, which is only populated on non-streaming responses. Gemini streaming includes the value in usageMetadata.serviceTier on every chunk, so providerMetadata.google.serviceTier was always null for streams. Read from usageMetadata for both paths instead.

3.0.77

Patch Changes

  • 0f9f9bf: feat(google): read serviceTier from x-gemini-service-tier response header in Gemini API and use PayGo for Vertex

3.0.76

Patch Changes

  • f259bd1: fix(google): fix streaming tool call args
  • 756fec1: feat(provider/google): add gemini-3.5-flash

3.0.75

Patch Changes

  • ab15576: feat(google): update Interactions API implementation to cater for upstream breaking changes coming May 26

3.0.74

Patch Changes

... (truncated)

Commits
  • 661127c Version Packages (#15622)
  • f62ffe0 fix(google): auto-inject skip_thought_signature_validator on Gemini 3 tool-ca...
  • fc83fa3 Version Packages (#15532)
  • cfa0cb2 Backport: feat(provider/google): support Google search grounding when using `...
  • 93ad540 Version Packages (#15489)
  • cf63828 Backport: fix(google): read serviceTier from usageMetadata in stream + genera...
  • a15eda9 Version Packages (#15473)
  • 0f9f9bf Backport: fix(google): read serviceTier from x-gemini-service-tier response h...
  • b9241af Backport: feat(provider/google): add support for managed agents in the Intera...
  • e33b836 Version Packages (#15440)
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for @​ai-sdk/google since your current version.


Updates @ai-sdk/groq from 3.0.35 to 3.0.39

Changelog

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

3.0.39

Patch Changes

  • Updated dependencies [f591416]
    • @​ai-sdk/provider-utils@​4.0.27

3.0.38

Patch Changes

  • Updated dependencies [7beadf0]
    • @​ai-sdk/provider-utils@​4.0.26

3.0.37

Patch Changes

  • a727da4: chore: ensure consistent import handling and avoid import duplicates or cycles
  • Updated dependencies [a727da4]
    • @​ai-sdk/provider-utils@​4.0.25
    • @​ai-sdk/provider@​3.0.10

3.0.36

Patch Changes

  • a7f3c72: trigger release for all packages after provenance setup
  • Updated dependencies [a7f3c72]
    • @​ai-sdk/provider@​3.0.9
    • @​ai-sdk/provider-utils@​4.0.24
Commits
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for @​ai-sdk/groq since your current version.


Updates @ai-sdk/mcp from 1.0.36 to 1.0.45

Release notes

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

@​ai-sdk/mcp@​1.0.45

Patch Changes

  • ec5fceb: fix(mcp): respond to ping requests with an empty result per JSON-RPC spec (closes #6282)

@​ai-sdk/mcp@​1.0.44

Patch Changes

  • 77775a4: 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 non-response failures (network errors, aborts).

Changelog

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

1.0.45

Patch Changes

  • ec5fceb: fix(mcp): respond to ping requests with an empty result per JSON-RPC spec (closes #6282)

1.0.44

Patch Changes

  • 77775a4: 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 non-response failures (network errors, aborts).

1.0.43

Patch Changes

  • e2b923f: fix(mcp): deduplicate auth refresh on http transport

1.0.42

Patch Changes

  • 725f2ed: feat(mcp): expose server instructions to be accessible through client
  • 7281592: fix(mcp): use negotiated protocol version in transport request headers

1.0.41

Patch Changes

  • f591416: feat(ai): add toolMetadata for tool specific metdata
  • Updated dependencies [f591416]
    • @​ai-sdk/provider-utils@​4.0.27

1.0.40

Patch Changes

  • 221a984: 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.
  • 0084974: feat(mcp): deprecate name and use clientName for MCPClient

1.0.39

... (truncated)

Commits
  • 94d0237 Version Packages (#15716)
  • ec5fceb Backport: fix(mcp): respond to ping requests with an empty result (#15715)
  • 097c1cd Version Packages (#15612)
  • 77775a4 Backport: feat(mcp): expose statusCode, url, responseBody on MCPClientError (...
  • 0075589 Version Packages (#15529)
  • e2b923f Backport: fix(mcp): deduplicate auth refresh on http transport (#15528)
  • 5e287d0 Backport: chore: add readme for @​ai-sdk/mcp (#15450)
  • 8ccd431 Version Packages (#15168)
  • 725f2ed Backport: feat(mcp): expose server instructions to be accessible through clie...
  • 7281592 Backport: fix(mcp): use negotiated protocol version in transport request head...
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for @​ai-sdk/mcp since your current version.


Updates @ai-sdk/mistral from 3.0.30 to 3.0.37

Changelog

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

3.0.37

Patch Changes

  • 4f70a87: fix(mistral): forward stopSequences as Mistral's native stop parameter

3.0.36

Patch Changes

  • Updated dependencies [f591416]
    • @​ai-sdk/provider-utils@​4.0.27

3.0.35

Patch Changes

  • c4321f0: Add support for mistral-medium-3.5

3.0.34

Patch Changes

  • 93b4b92: Map cached token counts from Mistral API usage response. Previously all prompt tokens were reported as noCacheTokens, ignoring the num_cached_tokens, prompt_tokens_details.cached_tokens, and prompt_token_details.cached_tokens fields returned by Mistral.

3.0.33

Patch Changes

  • Updated dependencies [7beadf0]
    • @​ai-sdk/provider-utils@​4.0.26

3.0.32

Patch Changes

  • a727da4: chore: ensure consistent import handling and avoid import duplicates or cycles
  • Updated dependencies [a727da4]
    • @​ai-sdk/provider-utils@​4.0.25
    • @​ai-sdk/provider@​3.0.10

3.0.31

Patch Changes

  • a7f3c72: trigger release for all packages after provenance setup
  • Updated dependencies [a7f3c72]
    • @​ai-sdk/provider@​3.0.9
    • @​ai-sdk/provider-utils@​4.0.24
Commits
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for @​ai-sdk/mistral since your current version.


Updates @ai-sdk/openai from 3.0.53 to 3.0.67

Release notes

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

@​ai-sdk/openai@​3.0.67

Patch Changes

  • c679fec: feat(provider/azure):web search tool in the Azure OpenAI Responses API.

@​ai-sdk/openai@​3.0.66

Patch Changes

  • c82ab42: feat(openai): forward web_search_call.action.queries from Responses API
Changelog

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

3.0.67

Patch Changes

  • c679fec: feat(provider/azure):web search tool in the Azure OpenAI Responses API.

3.0.66

Patch Changes

  • c82ab42: feat(openai): forward web_search_call.action.queries from Responses API

3.0.65

Patch Changes

  • eb52378: fix(openai): skip passing reasoning items when using previous response id

3.0.64

Patch Changes

  • b7ed8bd: feat(openai): add opt-in pass-through for unsupported file media types

3.0.63

Patch Changes

  • Updated dependencies [f591416]
    • @​ai-sdk/provider-utils@​4.0.27

3.0.62

Patch Changes

  • 65edcca: feat: add allowedTools provider option for OpenAI Responses

3.0.61

Patch Changes

  • b93f9b4: feat(provider/openai): forward imageDetail providerOptions on tool-result image content

3.0.60

Patch Changes

  • 6dcd8e6: feat(openai): add GPT-5.5 chat model IDs

3.0.59

... (truncated)

Commits
  • d4893c4 Version Packages (#15700)
  • c679fec Backport: feat(provider/azure): web search tool in the Azure OpenAI Responses...
  • 52332bf Version Packages (#15637)
  • c82ab42 Backport: feat(openai): forward web_search_call.action.queries from Responses...
  • 1a3ec6d Version Packages (#15513)
  • eb52378 Backport: fix(openai): skip passing reasoning items when using previous respo...
  • 2e7664b Version Packages (#15315)
  • b7ed8bd Backport: feat(openai): add opt-in pass-through for unsupported file media ty...
  • e3ccdb5 Version Packages (#15094)
  • bf9de31 Version Packages (#15046)
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for @​ai-sdk/openai since your current version.


Updates @ast-grep/napi from 0.42.1 to 0.43.0

Release notes

Sourced from @​ast-grep/napi's releases.

0.43.0

0.42.3

0.42.2

... (truncated)

Changelog

Sourced from @​ast-grep/napi's changelog.

0.43.0

0.42.3

19 May 2026

0.42.2

10 May 2026

... (truncated)

Commits
  • 5fe8855 0.43.0
  • beacc9e feat: add markdown support
  • c08a02b chore(deps): update dependency @​types/node to v24.12.4 (#2636)
  • 8ac005a chore(deps): update rust crate assert_cmd to v2.2.2 (#2632)
  • 9bce83a chore(deps): update rust crate similar to v3.1.1 (#2662)
  • 967676e fix: update esquery state
  • 237dc05 fix: strip trailing comment artifact in comment suppression
  • 19f1d1c chore: bump tree-sitter-json version
  • d0d0b30 test: add test for run --kind
  • 5a95dfb feat: support ESQuery style selector in run command
  • Additional commits viewable in compare view

Updates @aws-sdk/client-s3 from 3.1038.0 to 3.1057.0

Release notes

Sourced from @​aws-sdk/client-s3's releases.

v3.1057.0

3.1057.0(2026-05-29)

Bug Fixes
  • client-rds-data:
    • ArrayValue member element types are now nullable: booleanValues is (boolean | null)[], longValues and doubleValues are (number | null)[], stringValues is (string | null)[], and arrayValues is (ArrayValue | null)[]. This reflects that SQL array responses can contain NULL elements. Existing TypeScript code that reads elements as non-nullable values won't compile; migrate by changing the target type to nullable, using the nullish coalescing operator ?? to supply a default, or using .filter(v => v !== null). (43e8abc9)
Chores
  • codegen:
New Features
  • clients: update client endpoints as of 2026-05-29 (100e59e3)
  • client-codeguru-security: Adding new BDD representation of endpoint ruleset (b5e79600)
  • client-auto-scaling-plans: Adding new BDD representation of endpoint ruleset (be4de620)
  • client-connect-contact-lens: Adding new BDD representation of endpoint ruleset (5356eaf4)
  • client-connectcampaignsv2: Adding new BDD representation of endpoint ruleset (610e00f6)
  • client-cloudsearch: Adding new BDD representation of endpoint ruleset (954a5629)
  • client-account: Adding new BDD representation of endpoint ruleset (043ec31b)
  • client-directory-service-data: Adding new BDD representation of endpoint ruleset (a4c4696b)
  • client-bedrock: Automated Reasoning checks - Added two build workflows for policies. Iterative Refine Policy uses AI to update policy definitions based on test results and feedback. Resolve Policy Ambiguities consolidates ambiguous variables in Automated Reasoning policies, a common source of ambiguous validation. (dc971ce1)
  • client-lex-models-v2: Adding new BDD representation of endpoint ruleset (46879a2b)
  • client-application-insights: Adding new BDD representation of endpoint ruleset (8188d14a)
  • client-quicksight: Adds support for creating, updating, describing, listing, and deleting an OAuthClientApplication resource, a new quicksight resource that allows customers to store OAuth configurations to connect to their databases via 3 Legged OAuth. (62d39a81)
  • client-bedrock-agentcore-control: Reference your own AWS Secrets Manager secrets when configuring credential providers, giving you control over encryption, rotation, and access policies instead of using service-managed secrets. (ac8eac96)
  • client-codecatalyst: Adding new BDD representation of endpoint ruleset (5d0951a1)
  • client-grafana: Adding new BDD representation of endpoint ruleset (a0c1dbf4)
  • client-drs: Adding new BDD representation of endpoint ruleset (af7bbc33)
  • client-cloudsearch-domain: Adding new BDD representation of endpoint ruleset (84e5f9f0)
  • client-networkflowmonitor: Adding new BDD representation of endpoint ruleset (2571d33c)
  • client-mailmanager: Adding new BDD representation of endpoint ruleset (89075b5d)
  • client-route53resolver: Added BatchCreateFirewallRule, BatchUpdateFirewallRule, BatchDeleteFirewallRule, and ListFirewallRuleTypes APIs. Added FirewallRuleType support to Firewall Rule APIs. (a5c6d722)
  • client-pcs: Adding new BDD representation of endpoint ruleset (eec245d2)
  • client-inspector-scan: Adding new BDD representation of endpoint ruleset (

@dependabot dependabot Bot added the dependencies Pull requests that update a dependency file label May 30, 2026
@dependabot dependabot Bot requested a review from webdevcom01-cell as a code owner May 30, 2026 11:11
@dependabot dependabot Bot added the dependencies Pull requests that update a dependency file label May 30, 2026
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/production-dependencies-7695f4e486 branch from 77274ae to 8bb6ac9 Compare May 30, 2026 13:51
…y with 25 updates

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

| Package | From | To |
| --- | --- | --- |
| [@ai-sdk/anthropic](https://github.com/vercel/ai/tree/HEAD/packages/anthropic) | `3.0.71` | `3.0.81` |
| [@ai-sdk/deepseek](https://github.com/vercel/ai/tree/HEAD/packages/deepseek) | `2.0.29` | `2.0.35` |
| [@ai-sdk/google](https://github.com/vercel/ai/tree/HEAD/packages/google) | `3.0.64` | `3.0.80` |
| [@ai-sdk/groq](https://github.com/vercel/ai/tree/HEAD/packages/groq) | `3.0.35` | `3.0.39` |
| [@ai-sdk/mcp](https://github.com/vercel/ai/tree/HEAD/packages/mcp) | `1.0.36` | `1.0.45` |
| [@ai-sdk/mistral](https://github.com/vercel/ai/tree/HEAD/packages/mistral) | `3.0.30` | `3.0.37` |
| [@ai-sdk/openai](https://github.com/vercel/ai/tree/HEAD/packages/openai) | `3.0.53` | `3.0.67` |
| [@ast-grep/napi](https://github.com/ast-grep/ast-grep) | `0.42.1` | `0.43.0` |
| [@aws-sdk/client-s3](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-s3) | `3.1038.0` | `3.1057.0` |
| [@aws-sdk/s3-request-presigner](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/packages/s3-request-presigner) | `3.1038.0` | `3.1057.0` |
| [@deepgram/sdk](https://github.com/deepgram/deepgram-js-sdk) | `5.1.0` | `5.3.0` |
| [@e2b/code-interpreter](https://github.com/e2b-dev/code-interpreter/tree/HEAD/js) | `2.4.0` | `2.5.0` |
| [@fal-ai/client](https://github.com/fal-ai/fal-js/tree/HEAD/libs/client) | `1.10.0` | `1.10.1` |
| [@tavily/core](https://github.com/tavily-ai/tavily-js) | `0.7.2` | `0.7.3` |
| [ai](https://github.com/vercel/ai/tree/HEAD/packages/ai) | `6.0.168` | `6.0.193` |
| [better-sqlite3](https://github.com/WiseLibs/better-sqlite3) | `12.9.0` | `12.10.0` |
| [bullmq](https://github.com/taskforcesh/bullmq) | `5.76.2` | `5.77.6` |
| [compromise](https://github.com/spencermountain/compromise) | `14.15.0` | `14.15.1` |
| [ioredis](https://github.com/luin/ioredis) | `5.10.1` | `5.11.0` |
| [motion](https://github.com/motiondivision/motion) | `12.38.0` | `12.40.0` |
| [mysql2](https://github.com/sidorares/node-mysql2) | `3.22.3` | `3.22.4` |
| [pg](https://github.com/brianc/node-postgres/tree/HEAD/packages/pg) | `8.20.0` | `8.21.0` |
| [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `19.2.5` | `19.2.6` |
| [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `19.2.5` | `19.2.6` |
| [tailwind-merge](https://github.com/dcastil/tailwind-merge) | `3.5.0` | `3.6.0` |



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

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

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

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

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

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

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

Updates `@ast-grep/napi` from 0.42.1 to 0.43.0
- [Release notes](https://github.com/ast-grep/ast-grep/releases)
- [Changelog](https://github.com/ast-grep/ast-grep/blob/main/CHANGELOG.md)
- [Commits](ast-grep/ast-grep@0.42.1...0.43.0)

Updates `@aws-sdk/client-s3` from 3.1038.0 to 3.1057.0
- [Release notes](https://github.com/aws/aws-sdk-js-v3/releases)
- [Changelog](https://github.com/aws/aws-sdk-js-v3/blob/main/clients/client-s3/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.1057.0/clients/client-s3)

Updates `@aws-sdk/s3-request-presigner` from 3.1038.0 to 3.1057.0
- [Release notes](https://github.com/aws/aws-sdk-js-v3/releases)
- [Changelog](https://github.com/aws/aws-sdk-js-v3/blob/main/packages/s3-request-presigner/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.1057.0/packages/s3-request-presigner)

Updates `@deepgram/sdk` from 5.1.0 to 5.3.0
- [Release notes](https://github.com/deepgram/deepgram-js-sdk/releases)
- [Changelog](https://github.com/deepgram/deepgram-js-sdk/blob/main/CHANGELOG.md)
- [Commits](deepgram/deepgram-js-sdk@v5.1.0...v5.3.0)

Updates `@e2b/code-interpreter` from 2.4.0 to 2.5.0
- [Release notes](https://github.com/e2b-dev/code-interpreter/releases)
- [Commits](https://github.com/e2b-dev/code-interpreter/commits/@e2b/code-interpreter@2.5.0/js)

Updates `@fal-ai/client` from 1.10.0 to 1.10.1
- [Release notes](https://github.com/fal-ai/fal-js/releases)
- [Commits](https://github.com/fal-ai/fal-js/commits/client-v1.10.1/libs/client)

Updates `@tavily/core` from 0.7.2 to 0.7.3
- [Commits](https://github.com/tavily-ai/tavily-js/commits)

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

Updates `better-sqlite3` from 12.9.0 to 12.10.0
- [Release notes](https://github.com/WiseLibs/better-sqlite3/releases)
- [Commits](WiseLibs/better-sqlite3@v12.9.0...v12.10.0)

Updates `bullmq` from 5.76.2 to 5.77.6
- [Release notes](https://github.com/taskforcesh/bullmq/releases)
- [Commits](taskforcesh/bullmq@v5.76.2...v5.77.6)

Updates `compromise` from 14.15.0 to 14.15.1
- [Release notes](https://github.com/spencermountain/compromise/releases)
- [Changelog](https://github.com/spencermountain/compromise/blob/master/changelog.md)
- [Commits](spencermountain/compromise@14.15.0...14.15.1)

Updates `ioredis` from 5.10.1 to 5.11.0
- [Release notes](https://github.com/luin/ioredis/releases)
- [Changelog](https://github.com/redis/ioredis/blob/main/CHANGELOG.md)
- [Commits](redis/ioredis@v5.10.1...v5.11.0)

Updates `motion` from 12.38.0 to 12.40.0
- [Changelog](https://github.com/motiondivision/motion/blob/main/CHANGELOG.md)
- [Commits](motiondivision/motion@v12.38.0...v12.40.0)

Updates `mysql2` from 3.22.3 to 3.22.4
- [Release notes](https://github.com/sidorares/node-mysql2/releases)
- [Changelog](https://github.com/sidorares/node-mysql2/blob/master/Changelog.md)
- [Commits](sidorares/node-mysql2@v3.22.3...v3.22.4)

Updates `pg` from 8.20.0 to 8.21.0
- [Changelog](https://github.com/brianc/node-postgres/blob/master/CHANGELOG.md)
- [Commits](https://github.com/brianc/node-postgres/commits/pg@8.21.0/packages/pg)

Updates `react` from 19.2.5 to 19.2.6
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/v19.2.6/packages/react)

Updates `react-dom` from 19.2.5 to 19.2.6
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/v19.2.6/packages/react-dom)

Updates `tailwind-merge` from 3.5.0 to 3.6.0
- [Release notes](https://github.com/dcastil/tailwind-merge/releases)
- [Commits](dcastil/tailwind-merge@v3.5.0...v3.6.0)

---
updated-dependencies:
- dependency-name: "@ai-sdk/anthropic"
  dependency-version: 3.0.81
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@ai-sdk/deepseek"
  dependency-version: 2.0.35
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@ai-sdk/google"
  dependency-version: 3.0.80
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@ai-sdk/groq"
  dependency-version: 3.0.39
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@ai-sdk/mcp"
  dependency-version: 1.0.45
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@ai-sdk/mistral"
  dependency-version: 3.0.37
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@ai-sdk/openai"
  dependency-version: 3.0.67
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@ast-grep/napi"
  dependency-version: 0.43.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/client-s3"
  dependency-version: 3.1057.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/s3-request-presigner"
  dependency-version: 3.1057.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@deepgram/sdk"
  dependency-version: 5.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@e2b/code-interpreter"
  dependency-version: 2.5.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@fal-ai/client"
  dependency-version: 1.10.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@tavily/core"
  dependency-version: 0.7.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: ai
  dependency-version: 6.0.193
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: better-sqlite3
  dependency-version: 12.10.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: bullmq
  dependency-version: 5.77.6
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: compromise
  dependency-version: 14.15.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: ioredis
  dependency-version: 5.11.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: motion
  dependency-version: 12.40.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: mysql2
  dependency-version: 3.22.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: pg
  dependency-version: 8.21.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: react
  dependency-version: 19.2.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: react-dom
  dependency-version: 19.2.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: tailwind-merge
  dependency-version: 3.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/production-dependencies-7695f4e486 branch from 8bb6ac9 to 31f0b7a Compare May 30, 2026 14:35
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