Skip to content

Bump the ai group across 1 directory with 7 updates#999

Merged
demosjarco merged 2 commits into
mainfrom
dependabot/npm_and_yarn/ai-a6da7d4b65
May 26, 2026
Merged

Bump the ai group across 1 directory with 7 updates#999
demosjarco merged 2 commits into
mainfrom
dependabot/npm_and_yarn/ai-a6da7d4b65

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

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

Bumps the ai group with 6 updates in the / directory:

Package From To
@ai-sdk/anthropic 3.0.78 3.0.79
@ai-sdk/azure 3.0.65 3.0.66
@ai-sdk/google 3.0.75 3.0.79
@ai-sdk/openai-compatible 2.0.47 2.0.48
ai 6.0.185 6.0.191
openai 6.38.0 6.39.0

Updates @ai-sdk/anthropic from 3.0.78 to 3.0.79

Release notes

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

@​ai-sdk/anthropic@​3.0.79

Patch Changes

  • d61a788: Handle errors from anthropic websearch tool
Changelog

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

3.0.79

Patch Changes

  • d61a788: Handle errors from anthropic websearch tool
Commits

Updates @ai-sdk/azure from 3.0.65 to 3.0.66

Changelog

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

3.0.66

Patch Changes

  • Updated dependencies [eb52378]
    • @​ai-sdk/openai@​3.0.65
Commits

Updates @ai-sdk/google from 3.0.75 to 3.0.79

Release notes

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

@​ai-sdk/google@​3.0.79

Patch Changes

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

@​ai-sdk/google@​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.

Changelog

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

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
Commits
  • 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)
  • f259bd1 Backport: fix(google): fix streaming tool call args (#15442)
  • 756fec1 Backport: feat(provider/google): add gemini-3.5-flash (#15436)
  • See full diff in compare view

Updates @ai-sdk/openai from 3.0.64 to 3.0.65

Release notes

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

@​ai-sdk/openai@​3.0.65

Patch Changes

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

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

3.0.65

Patch Changes

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

Updates @ai-sdk/openai-compatible from 2.0.47 to 2.0.48

Release notes

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

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

Patch Changes

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

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

2.0.48

Patch Changes

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

Updates ai from 6.0.185 to 6.0.191

Release notes

Sourced from ai's releases.

ai@6.0.191

Patch Changes

  • Updated dependencies [27a1b22]
    • @​ai-sdk/gateway@​3.0.120

ai@6.0.190

Patch Changes

  • Updated dependencies [33b10a2]
  • Updated dependencies [f6e4146]
    • @​ai-sdk/gateway@​3.0.119

ai@6.0.189

Patch Changes

  • 356c3cf: fix(ai): make input optional on input-streaming UIMessagePart variants

ai@6.0.188

Patch Changes

  • c98715a: Add allowSystemInMessages option to ToolLoopAgent.

    This exposes the same option that exists on streamText and generateText, whether role: "system" messages are allowed in the prompt or messages fields. When unset, system messages are rejected because they can create a prompt injection attack risk. Ideally, use the instructions option instead. Set to true to allow system messages, or false to explicitly reject them.

    const agent = new ToolLoopAgent({
      model,
      allowSystemInMessages: true,
    });
    await agent.generate({
    messages: [
    { role: "system", content: "Server context" },
    { role: "user", content: "Hello" },
    ],
    });

    The option can also be returned from prepareCall for dynamic per-call configuration.

Changelog

Sourced from ai's changelog.

6.0.191

Patch Changes

  • Updated dependencies [27a1b22]
    • @​ai-sdk/gateway@​3.0.120

6.0.190

Patch Changes

  • Updated dependencies [33b10a2]
  • Updated dependencies [f6e4146]
    • @​ai-sdk/gateway@​3.0.119

6.0.189

Patch Changes

  • 356c3cf: fix(ai): make input optional on input-streaming UIMessagePart variants

6.0.188

Patch Changes

  • c98715a: Add allowSystemInMessages option to ToolLoopAgent.

    This exposes the same option that exists on streamText and generateText, whether role: "system" messages are allowed in the prompt or messages fields. When unset, system messages are rejected because they can create a prompt injection attack risk. Ideally, use the instructions option instead. Set to true to allow system messages, or false to explicitly reject them.

    const agent = new ToolLoopAgent({
      model,
      allowSystemInMessages: true,
    });
    await agent.generate({
    messages: [
    { role: "system", content: "Server context" },
    { role: "user", content: "Hello" },
    ],
    });

    The option can also be returned from prepareCall for dynamic per-call configuration.

6.0.187

Patch Changes

  • Updated dependencies [6f4bb06]

... (truncated)

Commits

Updates openai from 6.38.0 to 6.39.0

Release notes

Sourced from openai's releases.

v6.39.0

6.39.0 (2026-05-21)

Full Changelog: v6.38.0...v6.39.0

Features

  • api: api update (33ea11f)
  • api: manual updates (c210b09)
  • api: manual updates (92df9dc)
  • api: update OpenAPI spec or Stainless config (c7c0f52)

Bug Fixes

  • types: allow runtime fetch options (8f5003d)
  • typescript: upgrade tsc-multi so that it works with Node 26 (068f9c6)

Chores

  • api: docs updates (9d43adb)
  • tests: remove redundant File import (5465bbe)
Changelog

Sourced from openai's changelog.

6.39.0 (2026-05-21)

Full Changelog: v6.38.0...v6.39.0

Features

  • api: api update (33ea11f)
  • api: manual updates (c210b09)
  • api: manual updates (92df9dc)
  • api: update OpenAPI spec or Stainless config (c7c0f52)

Bug Fixes

  • types: allow runtime fetch options (8f5003d)
  • typescript: upgrade tsc-multi so that it works with Node 26 (068f9c6)

Chores

  • api: docs updates (9d43adb)
  • tests: remove redundant File import (5465bbe)
Commits
  • 2002111 release: 6.39.0
  • d6dc9b7 feat(api): manual updates
  • 7444892 feat(api): api update
  • f5db3f1 fix(types): allow runtime fetch options
  • 33b391a chore(api): docs updates
  • bfe3016 fix(typescript): upgrade tsc-multi so that it works with Node 26
  • 3320b20 chore(tests): remove redundant File import
  • 3250890 feat(api): manual updates
  • d9fbf39 feat(api): update OpenAPI spec or Stainless config
  • 8a8436e codegen metadata
  • Additional commits viewable in compare view

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels May 26, 2026
@changeset-bot
Copy link
Copy Markdown

changeset-bot Bot commented May 26, 2026

🦋 Changeset detected

Latest commit: a3c58a6

The changes in this PR will be included in the next version bump.

This PR includes changesets to release 3 packages
Name Type
@chainfuse/ai-tools Patch
@chainfuse/helpers Patch
@chainfuse/types Patch

Not sure what this means? Click here to learn what changesets are.

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

@github-actions
Copy link
Copy Markdown
Contributor

github-actions Bot commented May 26, 2026

Dependency Review

The following issues were found:
  • ✅ 0 vulnerable package(s)
  • ✅ 0 package(s) with incompatible licenses
  • ✅ 0 package(s) with invalid SPDX license definitions
  • ⚠️ 5 package(s) with unknown licenses.
See the Details below.

License Issues

packages/ai-tools/package.json

PackageVersionLicenseIssue Type
@ai-sdk/anthropic^3.0.79NullUnknown License
@ai-sdk/azure^3.0.66NullUnknown License
@ai-sdk/google^3.0.79NullUnknown License
@ai-sdk/openai-compatible^2.0.48NullUnknown License
ai^6.0.191NullUnknown License

OpenSSF Scorecard

Scorecard details
PackageVersionScoreDetails
npm/@ai-sdk/anthropic 3.0.79 UnknownUnknown
npm/@ai-sdk/azure 3.0.66 UnknownUnknown
npm/@ai-sdk/gateway 3.0.120 UnknownUnknown
npm/@ai-sdk/google 3.0.79 UnknownUnknown
npm/@ai-sdk/openai 3.0.65 UnknownUnknown
npm/@ai-sdk/openai-compatible 2.0.48 UnknownUnknown
npm/ai 6.0.191 UnknownUnknown
npm/openai 6.39.0 UnknownUnknown
npm/@ai-sdk/anthropic ^3.0.79 UnknownUnknown
npm/@ai-sdk/azure ^3.0.66 UnknownUnknown
npm/@ai-sdk/google ^3.0.79 UnknownUnknown
npm/@ai-sdk/openai-compatible ^2.0.48 UnknownUnknown
npm/ai ^6.0.191 UnknownUnknown
npm/openai ^6.39.0 UnknownUnknown

Scanned Files

  • package-lock.json
  • packages/ai-tools/package.json

@socket-security
Copy link
Copy Markdown

socket-security Bot commented May 26, 2026

@demosjarco
Copy link
Copy Markdown
Member

@dependabot recreate

Bumps the ai group with 6 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@ai-sdk/anthropic](https://github.com/vercel/ai/tree/HEAD/packages/anthropic) | `3.0.78` | `3.0.79` |
| [@ai-sdk/azure](https://github.com/vercel/ai/tree/HEAD/packages/azure) | `3.0.65` | `3.0.66` |
| [@ai-sdk/google](https://github.com/vercel/ai/tree/HEAD/packages/google) | `3.0.75` | `3.0.79` |
| [@ai-sdk/openai-compatible](https://github.com/vercel/ai/tree/HEAD/packages/openai-compatible) | `2.0.47` | `2.0.48` |
| [ai](https://github.com/vercel/ai/tree/HEAD/packages/ai) | `6.0.185` | `6.0.191` |
| [openai](https://github.com/openai/openai-node) | `6.38.0` | `6.39.0` |



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

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

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

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

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

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

Updates `openai` from 6.38.0 to 6.39.0
- [Release notes](https://github.com/openai/openai-node/releases)
- [Changelog](https://github.com/openai/openai-node/blob/master/CHANGELOG.md)
- [Commits](openai/openai-node@v6.38.0...v6.39.0)

---
updated-dependencies:
- dependency-name: "@ai-sdk/anthropic"
  dependency-version: 3.0.79
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: ai
- dependency-name: "@ai-sdk/azure"
  dependency-version: 3.0.66
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: ai
- dependency-name: "@ai-sdk/google"
  dependency-version: 3.0.79
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: ai
- dependency-name: "@ai-sdk/openai"
  dependency-version: 3.0.65
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: ai
- dependency-name: "@ai-sdk/openai-compatible"
  dependency-version: 2.0.48
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: ai
- dependency-name: ai
  dependency-version: 6.0.191
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: ai
- dependency-name: openai
  dependency-version: 6.39.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: ai
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot changed the title Bump the ai group with 7 updates Bump the ai group across 1 directory with 7 updates May 26, 2026
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/ai-a6da7d4b65 branch from 79ef28c to 7c0b7fd Compare May 26, 2026 20:17
@demosjarco demosjarco merged commit 9206c34 into main May 26, 2026
6 checks passed
@demosjarco demosjarco deleted the dependabot/npm_and_yarn/ai-a6da7d4b65 branch May 26, 2026 20:21
@github-actions github-actions Bot mentioned this pull request May 26, 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 semver-minor

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant