Skip to content

fix(deps): update ai stack - #2583

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/ai-stack
Open

fix(deps): update ai stack#2583
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/ai-stack

Conversation

@renovate

@renovate renovate Bot commented Aug 7, 2026

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Confidence
@ai-sdk/anthropic (source) ^4.0.27^4.0.34 age confidence
@ai-sdk/google (source) ^4.0.31^4.0.37 age confidence
@ai-sdk/openai (source) ^4.0.27^4.0.34 age confidence
@ai-sdk/openai-compatible (source) ^3.0.20^3.0.25 age confidence
@ai-sdk/react (source) ^4.0.51^4.0.59 age confidence
@ai-sdk/xai (source) ^4.0.25^4.0.31 age confidence
ai (source) ^7.0.48^7.0.56 age confidence

Release Notes

vercel/ai (@​ai-sdk/anthropic)

v4.0.34

Compare Source

Patch Changes
  • e6415bd: feat(anthropic): add text batch support

v4.0.33

Compare Source

Patch Changes

v4.0.32

Compare Source

Patch Changes
  • 8b96941: Reject spliced Anthropic generations while allowing duplicate message start events for the active message.

v4.0.30

Compare Source

Patch Changes

v4.0.29

Compare Source

Patch Changes

v4.0.28

Compare Source

Patch Changes
vercel/ai (@​ai-sdk/google)

v4.0.37

Compare Source

Patch Changes
  • bbd9b31: chore: rename *TranslationModel and its related types to *SpeechTranslationModel for consistency

v4.0.36

Compare Source

Patch Changes

v4.0.35

Compare Source

Patch Changes

v4.0.34

Compare Source

Patch Changes

v4.0.33

Compare Source

Patch Changes

v4.0.32

Compare Source

Patch Changes
  • 79e133c: async APIs for generateVideo (poll, webhook)

    Adds an asynchronous start/status flow to the experimental video model
    interface (VideoModelV4): models may now implement doStart, doStatus,
    and handleWebhookOption instead of (or in addition to) doGenerate, and
    experimental_generateVideo accepts poll and webhook options to
    orchestrate completion via polling or webhooks. Polling configuration can use
    a custom delay implementation for durable workflow compatibility.

  • Updated dependencies [79e133c]

vercel/ai (@​ai-sdk/openai)

v4.0.34

Compare Source

Patch Changes
  • 73d48d0: fix(provider/openai): correlate rotating Responses API item IDs by output index
  • bbd9b31: chore: rename *TranslationModel and its related types to *SpeechTranslationModel for consistency

v4.0.33

Compare Source

Patch Changes
  • e6a93c4: feat(openai): support batch APIs with experimental_startTextBatch

v4.0.32

Compare Source

Patch Changes

v4.0.31

Compare Source

Patch Changes

v4.0.30

Compare Source

Patch Changes

v4.0.29

Compare Source

Patch Changes

v4.0.28

Compare Source

Patch Changes
vercel/ai (@​ai-sdk/openai-compatible)

v3.0.25

Compare Source

Patch Changes

v3.0.24

Compare Source

Patch Changes

v3.0.23

Compare Source

Patch Changes

v3.0.22

Compare Source

Patch Changes

v3.0.21

Compare Source

Patch Changes
vercel/ai (@​ai-sdk/react)

v4.0.59

Compare Source

Patch Changes
  • 10e8db0: Fix useChat throttling so unrelated React renders cannot publish message snapshots ahead of the configured throttle cadence.
  • Updated dependencies [25c9120]
  • Updated dependencies [89080c8]
  • Updated dependencies [79d6195]
    • ai@​7.0.56

v4.0.58

Compare Source

Patch Changes

v4.0.57

Compare Source

Patch Changes
  • Updated dependencies [a6b17a2]
  • Updated dependencies [5615eb7]
  • Updated dependencies [36a3ff6]
    • ai@​7.0.54

v4.0.55

Compare Source

Patch Changes

v4.0.54

Compare Source

Patch Changes

v4.0.53

Compare Source

Patch Changes

v4.0.52

Compare Source

Patch Changes
  • ai@​7.0.49
vercel/ai (@​ai-sdk/xai)

v4.0.31

Compare Source

Patch Changes
  • 2b1068f: chore(xai): drop the unused @ai-sdk/openai-compatible dependency

    This provider was originally built on the shared openai-compatible model and
    has since been rewritten to implement its own, with its own tool preparation,
    finish-reason mapping and response metadata helpers. Nothing in the package
    imports @ai-sdk/openai-compatible any more, but the dependency and the
    TypeScript project reference to it were both left behind. No runtime change.

v4.0.30

Compare Source

Patch Changes

v4.0.29

Compare Source

Patch Changes

v4.0.28

Compare Source

Patch Changes

v4.0.27

Compare Source

Patch Changes

v4.0.26

Compare Source

Patch Changes
  • 79e133c: async APIs for generateVideo (poll, webhook)

    Adds an asynchronous start/status flow to the experimental video model
    interface (VideoModelV4): models may now implement doStart, doStatus,
    and handleWebhookOption instead of (or in addition to) doGenerate, and
    experimental_generateVideo accepts poll and webhook options to
    orchestrate completion via polling or webhooks. Polling configuration can use
    a custom delay implementation for durable workflow compatibility.

  • Updated dependencies [79e133c]

vercel/ai (ai)

v7.0.56

Compare Source

Patch Changes
  • 25c9120: Expose provider metadata on language-model-call end callbacks and telemetry spans.

  • 89080c8: fix (ai/gateway): make retried doStart calls idempotent

    generateVideo retries doStart, which creates a billable generation, so a
    retry after a lost response could start a second one. It now mints one
    idempotency token per logical start — outside the retry closure — and forwards it
    as an idempotency-key header, so a provider that deduplicates (the Vercel AI
    Gateway does) sees the same key on every attempt. GatewayVideoModel simply
    forwards the caller's headers rather than inferring retry identity from an
    options object, which would collide across unrelated calls.

  • 79d6195: Stop pending and active resumed chat streams after cancellation, and prevent
    overlapping resumptions from applying stale updates.

  • Updated dependencies [89080c8]

  • Updated dependencies [89080c8]

v7.0.55

Compare Source

Patch Changes

v7.0.54

Compare Source

Patch Changes
  • a6b17a2: Allow ToolLoopAgent prepareCall callbacks to read and override the top-level reasoning option.
  • 5615eb7: Add defaultInstructionsMiddleware for applying default language model instructions while preserving call-level overrides.
  • 36a3ff6: Preserve preceding assistant messages when regenerating a response.

v7.0.52

Compare Source

Patch Changes

v7.0.51

Compare Source

Patch Changes

v7.0.50

Compare Source

Patch Changes
  • 79e133c: async APIs for generateVideo (poll, webhook)

    Adds an asynchronous start/status flow to the experimental video model
    interface (VideoModelV4): models may now implement doStart, doStatus,
    and handleWebhookOption instead of (or in addition to) doGenerate, and
    experimental_generateVideo accepts poll and webhook options to
    orchestrate completion via polling or webhooks. Polling configuration can use
    a custom delay implementation for durable workflow compatibility.

  • da64b51: feat(code-mode): simplify tool caller configuration

  • Updated dependencies [79e133c]

v7.0.49

Compare Source

Patch Changes

Configuration

📅 Schedule: (in timezone Europe/London)

  • Branch creation
    • "after 01:00 and before 07:00 every weekday"
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate Bot added the dependencies label Aug 7, 2026
@github-actions github-actions Bot added the size/S label Aug 7, 2026
@renovate
renovate Bot force-pushed the renovate/ai-stack branch 5 times, most recently from 49d87df to afdb7d4 Compare August 10, 2026 05:26
@renovate
renovate Bot force-pushed the renovate/ai-stack branch from afdb7d4 to c02eec1 Compare August 10, 2026 11:00
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants