Skip to content

fix(deps, agent-service): bump the agent-service-patch group in /agent-service with 3 updates - #6707

Merged
aglinxinyuan merged 2 commits into
mainfrom
dependabot/bun/agent-service/agent-service-patch-c04fe28635
Jul 22, 2026
Merged

fix(deps, agent-service): bump the agent-service-patch group in /agent-service with 3 updates#6707
aglinxinyuan merged 2 commits into
mainfrom
dependabot/bun/agent-service/agent-service-patch-c04fe28635

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 21, 2026

Copy link
Copy Markdown
Contributor

Bumps the agent-service-patch group in /agent-service with 3 updates: @ai-sdk/openai, ai and prettier.

Updates @ai-sdk/openai from 4.0.13 to 4.0.17

Release notes

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

@​ai-sdk/openai@​4.0.17

Patch Changes

  • Updated dependencies [02ffdcb]
  • Updated dependencies [76cb673]
    • @​ai-sdk/provider-utils@​5.0.12
Changelog

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

4.0.17

Patch Changes

  • Updated dependencies [02ffdcb]
  • Updated dependencies [76cb673]
    • @​ai-sdk/provider-utils@​5.0.12

4.0.16

Patch Changes

  • 75f86f4: fix(provider/openai, provider/open-responses): throw a descriptive error when the Responses API returns a 200 with no output

    A successful (200) Responses body missing the output array previously threw an opaque output is not iterable TypeError from doGenerate. Both providers now surface a clear APICallError ("Responses API returned no output …"), including the incomplete-details reason (and status, for open-responses) when present. When the body includes a response.error, its message is surfaced first so upstream error details aren't masked by the generic fallback. This makes malformed/incomplete upstream responses actionable instead of a cryptic crash.

  • Updated dependencies [cd06458]

    • @​ai-sdk/provider-utils@​5.0.11

4.0.15

Patch Changes

  • 0063c2d: Add the client-executed OpenAI Responses API computer tool with batched actions and screenshot outputs.

4.0.14

Patch Changes

  • Updated dependencies [31c7be8]
    • @​ai-sdk/provider-utils@​5.0.10
Commits

Updates ai from 7.0.26 to 7.0.33

Release notes

Sourced from ai's releases.

ai@7.0.33

Patch Changes

  • 76cb673: fix: detect MP4 audio from its ftyp box during transcription
  • e808fa5: fix(ai): preserve tool parts when tool call IDs repeat across steps
  • 33647d7: Preserve provider options when combining consecutive tool messages.
  • Updated dependencies [02ffdcb]
  • Updated dependencies [76cb673]
    • @​ai-sdk/provider-utils@​5.0.12
    • @​ai-sdk/gateway@​4.0.25

ai@7.0.32

Patch Changes

  • 6cd7c74: fix: correct the onToolCall callback result documentation
  • e35bcae: Allow UI message chunks to include fields added by newer server versions.
  • a4eb3f3: Propagate abort reasons when generation is cancelled during tool execution.
  • Updated dependencies [cefa3b1]
  • Updated dependencies [8fbb89c]
    • @​ai-sdk/gateway@​4.0.24
Changelog

Sourced from ai's changelog.

7.0.33

Patch Changes

  • 76cb673: fix: detect MP4 audio from its ftyp box during transcription
  • e808fa5: fix(ai): preserve tool parts when tool call IDs repeat across steps
  • 33647d7: Preserve provider options when combining consecutive tool messages.
  • Updated dependencies [02ffdcb]
  • Updated dependencies [76cb673]
    • @​ai-sdk/provider-utils@​5.0.12
    • @​ai-sdk/gateway@​4.0.25

7.0.32

Patch Changes

  • 6cd7c74: fix: correct the onToolCall callback result documentation
  • e35bcae: Allow UI message chunks to include fields added by newer server versions.
  • a4eb3f3: Propagate abort reasons when generation is cancelled during tool execution.
  • Updated dependencies [cefa3b1]
  • Updated dependencies [8fbb89c]
    • @​ai-sdk/gateway@​4.0.24

7.0.31

Patch Changes

  • 70f18c3: fix(ai): emit denied tool output state for client-rejected approvals
  • cd06458: fix(ai): call onInputStart before onInputAvailable during non-streaming tool calls
  • Updated dependencies [cd06458]
    • @​ai-sdk/provider-utils@​5.0.11
    • @​ai-sdk/gateway@​4.0.23

7.0.30

Patch Changes

  • Updated dependencies [341616a]
  • Updated dependencies [70fc45c]
    • @​ai-sdk/gateway@​4.0.22

7.0.29

Patch Changes

  • Updated dependencies [7069785]
  • Updated dependencies [4bf9ac2]
    • @​ai-sdk/gateway@​4.0.21

7.0.28

... (truncated)

Commits
  • 0319ff3 Version Packages (#17553)
  • e808fa5 fix: preserve tool parts when tool call IDs repeat across steps (#17586)
  • 76cb673 fix: detect M4A/MP4 audio correctly during transcription (#17378)
  • 7977f80 chore(ai): bump main bundle size limit to 650 KB (#17526)
  • 33647d7 fix: preserve provider options across consecutive tool messages (#17577)
  • 7120171 Version Packages (#17465)
  • 6cd7c74 fix: correct misleading onToolCall return-value documentation (#17260)
  • a4eb3f3 fix: prevent generateText from returning partial results after cancellation i...
  • e35bcae fix: prevent newer fields on known UI message chunks from breaking older clie...
  • 9352ac1 Version Packages (#17417)
  • Additional commits viewable in compare view

Updates prettier from 3.9.5 to 3.9.6

Release notes

Sourced from prettier's releases.

3.9.6

What's Changed

🔗 Changelog

Changelog

Sourced from prettier's changelog.

3.9.6

diff

TypeScript: Preserve quotes for methods named new (#19621 by @​kovsu)

// Input
interface Container {
  "new"(id: string): number;
}
// Prettier 3.9.5
interface Container {
new(id: string): number;
}
// Prettier 3.9.6
interface Container {
"new"(id: string): number;
}

TypeScript: Support import defer (#19624, #19675 by @​fisker)

// Input
import defer * as foo from "foo";
// Prettier 3.9.5
import * as foo from "foo";
// Prettier 3.9.6
import defer * as foo from "foo";

JavaScript: Added a new official plugin @prettier/plugin-yuku (#19628, #19629 by @​fisker)

@prettier/plugin-yuku is powered by Yuku (A high-performance JavaScript/TypeScript compiler toolchain written in Zig).

This plugin includes two new parsers: yuku (JavaScript syntax) and yuku-ts (TypeScript syntax).

To use this plugin:

  1. Install the plugin:

    yarn add --dev prettier @prettier/plugin-yuku

... (truncated)

Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the agent-service-patch group in /agent-service with 3 updates: [@ai-sdk/openai](https://github.com/vercel/ai/tree/HEAD/packages/openai), [ai](https://github.com/vercel/ai/tree/HEAD/packages/ai) and [prettier](https://github.com/prettier/prettier).


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

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

Updates `prettier` from 3.9.5 to 3.9.6
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/prettier@3.9.5...3.9.6)

---
updated-dependencies:
- dependency-name: "@ai-sdk/openai"
  dependency-version: 4.0.17
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: agent-service-patch
- dependency-name: ai
  dependency-version: 7.0.33
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: agent-service-patch
- dependency-name: prettier
  dependency-version: 3.9.6
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: agent-service-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Jul 21, 2026
@github-actions

Copy link
Copy Markdown
Contributor

Automated Reviewer Suggestions

Based on the git blame history of the changed files, we recommend the following reviewers:

  • No candidates found from git blame history.

@Yicong-Huang Yicong-Huang left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

all patch updates, should be fine. @bobbai00 PTAL

Copilot AI left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

This PR updates patch-level dependencies for the agent-service (Bun/TypeScript) to incorporate upstream bugfixes and tooling updates while keeping version ranges pinned.

Changes:

  • Bump @ai-sdk/openai from 4.0.134.0.17.
  • Bump ai from 7.0.267.0.33.
  • Bump prettier from 3.9.53.9.6 and refresh the Bun lockfile accordingly.

Reviewed changes

Copilot reviewed 1 out of 2 changed files in this pull request and generated no comments.

File Description
agent-service/package.json Updates the three pinned dependency versions for the agent service.
agent-service/bun.lock Updates resolved versions / integrity hashes to match the bumped dependencies.

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

@aglinxinyuan
aglinxinyuan added this pull request to the merge queue Jul 22, 2026
Merged via the queue into main with commit fc25037 Jul 22, 2026
20 checks passed
@aglinxinyuan
aglinxinyuan deleted the dependabot/bun/agent-service/agent-service-patch-c04fe28635 branch July 22, 2026 01:52
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

agent-service dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants