[PR #7045] [CLOSED] fix(deps): update dependency @ai-sdk/openai-compatible to v2 #7040

Closed
opened 2026-03-13 13:22:06 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/better-auth/better-auth/pull/7045
Author: @renovate[bot]
Created: 12/29/2025
Status: Closed

Base: canaryHead: renovate/ai-sdk-openai-compatible-2.x


📝 Commits (1)

  • cc59d05 fix(deps): update dependency @ai-sdk/openai-compatible to v2

📊 Changes

2 files changed (+65 additions, -131 deletions)

View changed files

📝 docs/package.json (+1 -1)
📝 pnpm-lock.yaml (+64 -130)

📄 Description

This PR contains the following updates:

Package Change Age Confidence
@ai-sdk/openai-compatible (source) ^1.0.20 -> ^2.0.1 age confidence

Release Notes

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

v2.0.1

Compare Source

Patch Changes
  • bc45e29: feat(openai): add file_search_call support to responses api

v2.0.0

Compare Source

Major Changes
  • d5f588f: AI SDK 5

  • cc62234: chore (provider/openai): switch default to openai responses api

  • 516be5b: ### Move Image Model Settings into generate options

    Image Models no longer have settings. Instead, maxImagesPerCall can be passed directly to generateImage(). All other image settings can be passed to providerOptions[provider].

    Before

    await generateImage({
      model: luma.image('photon-flash-1', {
        maxImagesPerCall: 5,
        pollIntervalMillis: 500,
      }),
      prompt,
      n: 10,
    });
    

    After

    await generateImage({
      model: luma.image('photon-flash-1'),
      prompt,
      n: 10,
      maxImagesPerCall: 5,
      providerOptions: {
        luma: { pollIntervalMillis: 5 },
      },
    });
    

    Pull Request: #​6180

  • efc3a62: fix (provider/openai): default strict mode to false

Patch Changes
  • 948b755: chore(providers/openai): convert to providerOptions

  • d63bcbc: feat (provider/openai): o4 updates for responses api

  • 3bd3c0b: chore(providers/openai): update embedding model to use providerOptions

  • 5d959e7: refactor: updated openai + anthropic tool use server side

  • 0eee6a8: Fix streaming and reconstruction of reasoning summary parts

  • 177526b: chore(providers/openai-transcription): switch to providerOptions

  • 2f542fa: Add reasoning-part-finish parts for reasoning models in the responses API

  • c15dfbf: feat (providers/openai): add gpt-image-1 model id to image settings

  • 3b1ea10: adding support for gpt-4o-search-preview and handling unsupported parameters

  • e2aceaf: feat: add raw chunk support

  • d2af019: feat (providers/openai): add gpt-4.1 models

  • eb173f1: chore (providers): remove model shorthand deprecation warnings

  • 209256d: Add missing file_search tool support to OpenAI Responses API

  • faea29f: fix (provider/openai): multi-step reasoning with text

  • 7032dc5: feat(openai): add priority processing service tier support

  • 870c5c0: feat (providers/openai): add o3 and o4-mini models

  • db72adc: chore(providers/openai): update completion model to use providerOptions

  • a166433: feat: add transcription with experimental_transcribe

  • 26735b5: chore(embedding-model): add v2 interface

  • 443d8ec: feat(embedding-model-v2): add response body field

  • 8d12da5: feat(provider/openai): add serviceTier option for flex processing

  • 9bf7291: chore(providers/openai): enable structuredOutputs by default & switch to provider option

  • d521cda: feat(openai): add file_search filters and update field names

  • 66962ed: fix(packages): export node10 compatible types

  • 442be08: fix: propagate openai transcription fixes

  • 0059ee2: fix(openai): update file_search fields to match API changes

  • 8493141: feat (providers/openai): add support for reasoning summaries

  • 9301f86: refactor (image-model): rename ImageModelV1 to ImageModelV2

  • 0a87932: core (ai): change transcription model mimeType to mediaType

  • 8aa9e20: feat: add speech with experimental_generateSpeech

  • 4617fab: chore(embedding-models): remove remaining settings

  • b5a0e32: fix (provider/openai): correct default for chat model strict mode

  • 136819b: chore(providers/openai): re-introduce logprobs as providerMetadata

  • 52ce942: chore(providers/openai): remove & enable strict compatibility by default

  • db64cbe: fix (provider/openai): multi-step reasoning with tool calls

  • b3c3450: feat (provider/openai): add support for encrypted_reasoning to responses api

  • 48249c4: Do not warn if empty text is the first part of a reasoning sequence

  • c7d3b2e: fix (provider/openai): push first reasoning chunk in output item added event

  • ad2a3d5: feat(provider/openai): add missing reasoning models to responses API

  • 9943464: feat(openai): add file_search_call.results support to include parameter

  • 0fa7414: chore (provider/openai): standardize on itemId in provider metadata

  • 9bd5ab5: feat (provider): add providerMetadata to ImageModelV2 interface (#​5977)

    The experimental_generateImage method from the ai package now returnes revised prompts for OpenAI's image models.

    const prompt = 'Santa Claus driving a Cadillac';
    
    const { providerMetadata } = await experimental_generateImage({
      model: openai.image('dall-e-3'),
      prompt,
    });
    
    const revisedPrompt = providerMetadata.openai.images[0]?.revisedPrompt;
    
    console.log({
      prompt,
      revisedPrompt,
    });
    
  • fa758ea: feat(provider/openai): add o3 & o4-mini with developer systemMessageMode

  • d1a034f: feature: using Zod 4 for internal stuff

  • fd65bc6: chore(embedding-model-v2): rename rawResponse to response

  • e497698: fix (provider/openai): handle responses api errors

  • 928fadf: fix(providers/openai): logprobs for stream alongside completion model

  • 0a87932: fix (provider/openai): increase transcription model resilience

  • 5147e6e: chore(openai): remove simulateStreaming

  • 06bac05: fix (openai): structure output for responses model

  • 205077b: fix: improve Zod compatibility

  • c2b92cc: chore(openai): remove legacy function calling

  • 284353f: fix(providers/openai): zod parse error with function

  • 6f231db: fix(providers): always use optional instead of mix of nullish for providerOptions

  • f10304b: feat(tool-calling): don't require the user to have to pass parameters

  • 4af5233: Fix PDF file parts when passed as a string url or Uint8Array

  • 7df7a25: feat (providers/openai): support gpt-image-1 image generation

  • Updated dependencies [a571d6e]

  • Updated dependencies [742b7be]

  • Updated dependencies [e7fcc86]

  • Updated dependencies [7cddb72]

  • Updated dependencies [ccce59b]

  • Updated dependencies [e2b9e4b]

  • Updated dependencies [95857aa]

  • Updated dependencies [45c1ea2]

  • Updated dependencies [6f6bb89]

  • Updated dependencies [060370c]

  • Updated dependencies [dc714f3]

  • Updated dependencies [b5da06a]

  • Updated dependencies [d1a1aa1]

  • Updated dependencies [63f9e9b]

  • Updated dependencies [5d142ab]

  • Updated dependencies [d5f588f]

  • Updated dependencies [e025824]

  • Updated dependencies [0571b98]

  • Updated dependencies [b6b43c7]

  • Updated dependencies [4fef487]

  • Updated dependencies [48d257a]

  • Updated dependencies [0c0c0b3]

  • Updated dependencies [0d2c085]

  • Updated dependencies [40acf9b]

  • Updated dependencies [9222aeb]

  • Updated dependencies [e2aceaf]

  • Updated dependencies [411e483]

  • Updated dependencies [8ba77a7]

  • Updated dependencies [7b3ae3f]

  • Updated dependencies [a166433]

  • Updated dependencies [26735b5]

  • Updated dependencies [443d8ec]

  • Updated dependencies [a8c8bd5]

  • Updated dependencies [abf9a79]

  • Updated dependencies [14c9410]

  • Updated dependencies [e86be6f]

  • Updated dependencies [9bf7291]

  • Updated dependencies [2e13791]

  • Updated dependencies [9f95b35]

  • Updated dependencies [66962ed]

  • Updated dependencies [0d06df6]

  • Updated dependencies [472524a]

  • Updated dependencies [dd3ff01]

  • Updated dependencies [d9c98f4]

  • Updated dependencies [05d2819]

  • Updated dependencies [9301f86]

  • Updated dependencies [0a87932]

  • Updated dependencies [c4a2fec]

  • Updated dependencies [957b739]

  • Updated dependencies [79457bd]

  • Updated dependencies [a3f768e]

  • Updated dependencies [7435eb5]

  • Updated dependencies [8aa9e20]

  • Updated dependencies [4617fab]

  • Updated dependencies [ac34802]

  • Updated dependencies [0054544]

  • Updated dependencies [cb68df0]

  • Updated dependencies [ad80501]

  • Updated dependencies [68ecf2f]

  • Updated dependencies [9e9c809]

  • Updated dependencies [32831c6]

  • Updated dependencies [6dc848c]

  • Updated dependencies [6b98118]

  • Updated dependencies [d0f9495]

  • Updated dependencies [63d791d]

  • Updated dependencies [87b828f]

  • Updated dependencies [3f2f00c]

  • Updated dependencies [bfdca8d]

  • Updated dependencies [0ff02bb]

  • Updated dependencies [7979f7f]

  • Updated dependencies [39a4fab]

  • Updated dependencies [44f4aba]

  • Updated dependencies [9bd5ab5]

  • Updated dependencies [57edfcb]

  • Updated dependencies [faf8446]

  • Updated dependencies [7ea4132]

  • Updated dependencies [d1a034f]

  • Updated dependencies [5c56081]

  • Updated dependencies [fd65bc6]

  • Updated dependencies [023ba40]

  • Updated dependencies [ea7a7c9]

  • Updated dependencies [26535e0]

  • Updated dependencies [e030615]

  • Updated dependencies [5e57fae]

  • Updated dependencies [393138b]

  • Updated dependencies [c57e248]

  • Updated dependencies [88a8ee5]

  • Updated dependencies [41fa418]

  • Updated dependencies [205077b]

  • Updated dependencies [71f938d]

  • Updated dependencies [3795467]

  • Updated dependencies [28a5ed5]

  • Updated dependencies [7182d14]

  • Updated dependencies [c1e6647]

  • Updated dependencies [1766ede]

  • Updated dependencies [811dff3]

  • Updated dependencies [f10304b]

  • Updated dependencies [dd5fd43]

  • Updated dependencies [33f4a6a]

  • Updated dependencies [383cbfa]

  • Updated dependencies [27deb4d]

  • Updated dependencies [c4df419]

v1.0.29

Compare Source

Patch Changes
  • Updated dependencies [e0e9449]
    • ai@​5.0.29

v1.0.28

Compare Source

Patch Changes

v1.0.27

Compare Source

Patch Changes

v1.0.26

Compare Source

Patch Changes

v1.0.25

Compare Source

Patch Changes

v1.0.24

Compare Source

Patch Changes

v1.0.23

Compare Source

Patch Changes

v1.0.22

Compare Source

Patch Changes
  • f02b7ab: Add textVerbosity provider option support

v1.0.21

Compare Source

Patch Changes

Configuration

📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM, only on Monday ( * 0-3 * * 1 ) (UTC), 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.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


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

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


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/better-auth/better-auth/pull/7045 **Author:** [@renovate[bot]](https://github.com/apps/renovate) **Created:** 12/29/2025 **Status:** ❌ Closed **Base:** `canary` ← **Head:** `renovate/ai-sdk-openai-compatible-2.x` --- ### 📝 Commits (1) - [`cc59d05`](https://github.com/better-auth/better-auth/commit/cc59d050492510246368b610e013aa615ab68b49) fix(deps): update dependency @ai-sdk/openai-compatible to v2 ### 📊 Changes **2 files changed** (+65 additions, -131 deletions) <details> <summary>View changed files</summary> 📝 `docs/package.json` (+1 -1) 📝 `pnpm-lock.yaml` (+64 -130) </details> ### 📄 Description This PR contains the following updates: | Package | Change | [Age](https://docs.renovatebot.com/merge-confidence/) | [Confidence](https://docs.renovatebot.com/merge-confidence/) | |---|---|---|---| | [@ai-sdk/openai-compatible](https://ai-sdk.dev/docs) ([source](https://redirect.github.com/vercel/ai)) | [`^1.0.20` -> `^2.0.1`](https://renovatebot.com/diffs/npm/@ai-sdk%2fopenai-compatible/1.0.20/2.0.1) | ![age](https://developer.mend.io/api/mc/badges/age/npm/@ai-sdk%2fopenai-compatible/2.0.1?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@ai-sdk%2fopenai-compatible/1.0.20/2.0.1?slim=true) | --- ### Release Notes <details> <summary>vercel/ai (@&#8203;ai-sdk/openai-compatible)</summary> ### [`v2.0.1`](https://redirect.github.com/vercel/ai/releases/tag/%40ai-sdk/openai%402.0.1) [Compare Source](https://redirect.github.com/vercel/ai/compare/@ai-sdk/openai-compatible@2.0.0...@ai-sdk/openai-compatible@2.0.1) ##### Patch Changes - [`bc45e29`](https://redirect.github.com/vercel/ai/commit/bc45e29): feat(openai): add file\_search\_call support to responses api ### [`v2.0.0`](https://redirect.github.com/vercel/ai/releases/tag/%40ai-sdk/openai%402.0.0) [Compare Source](https://redirect.github.com/vercel/ai/compare/@ai-sdk/openai-compatible@1.0.29...@ai-sdk/openai-compatible@2.0.0) ##### Major Changes - [`d5f588f`](https://redirect.github.com/vercel/ai/commit/d5f588f): AI SDK 5 - [`cc62234`](https://redirect.github.com/vercel/ai/commit/cc62234): chore (provider/openai): switch default to openai responses api - [`516be5b`](https://redirect.github.com/vercel/ai/commit/516be5b): ### Move Image Model Settings into generate options Image Models no longer have settings. Instead, `maxImagesPerCall` can be passed directly to `generateImage()`. All other image settings can be passed to `providerOptions[provider]`. Before ```js await generateImage({ model: luma.image('photon-flash-1', { maxImagesPerCall: 5, pollIntervalMillis: 500, }), prompt, n: 10, }); ``` After ```js await generateImage({ model: luma.image('photon-flash-1'), prompt, n: 10, maxImagesPerCall: 5, providerOptions: { luma: { pollIntervalMillis: 5 }, }, }); ``` Pull Request: [#&#8203;6180](https://redirect.github.com/vercel/ai/pull/6180) - [`efc3a62`](https://redirect.github.com/vercel/ai/commit/efc3a62): fix (provider/openai): default strict mode to false ##### Patch Changes - [`948b755`](https://redirect.github.com/vercel/ai/commit/948b755): chore(providers/openai): convert to providerOptions - [`d63bcbc`](https://redirect.github.com/vercel/ai/commit/d63bcbc): feat (provider/openai): o4 updates for responses api - [`3bd3c0b`](https://redirect.github.com/vercel/ai/commit/3bd3c0b): chore(providers/openai): update embedding model to use providerOptions - [`5d959e7`](https://redirect.github.com/vercel/ai/commit/5d959e7): refactor: updated openai + anthropic tool use server side - [`0eee6a8`](https://redirect.github.com/vercel/ai/commit/0eee6a8): Fix streaming and reconstruction of reasoning summary parts - [`177526b`](https://redirect.github.com/vercel/ai/commit/177526b): chore(providers/openai-transcription): switch to providerOptions - [`2f542fa`](https://redirect.github.com/vercel/ai/commit/2f542fa): Add reasoning-part-finish parts for reasoning models in the responses API - [`c15dfbf`](https://redirect.github.com/vercel/ai/commit/c15dfbf): feat (providers/openai): add gpt-image-1 model id to image settings - [`3b1ea10`](https://redirect.github.com/vercel/ai/commit/3b1ea10): adding support for gpt-4o-search-preview and handling unsupported parameters - [`e2aceaf`](https://redirect.github.com/vercel/ai/commit/e2aceaf): feat: add raw chunk support - [`d2af019`](https://redirect.github.com/vercel/ai/commit/d2af019): feat (providers/openai): add gpt-4.1 models - [`eb173f1`](https://redirect.github.com/vercel/ai/commit/eb173f1): chore (providers): remove model shorthand deprecation warnings - [`209256d`](https://redirect.github.com/vercel/ai/commit/209256d): Add missing file\_search tool support to OpenAI Responses API - [`faea29f`](https://redirect.github.com/vercel/ai/commit/faea29f): fix (provider/openai): multi-step reasoning with text - [`7032dc5`](https://redirect.github.com/vercel/ai/commit/7032dc5): feat(openai): add priority processing service tier support - [`870c5c0`](https://redirect.github.com/vercel/ai/commit/870c5c0): feat (providers/openai): add o3 and o4-mini models - [`db72adc`](https://redirect.github.com/vercel/ai/commit/db72adc): chore(providers/openai): update completion model to use providerOptions - [`a166433`](https://redirect.github.com/vercel/ai/commit/a166433): feat: add transcription with experimental\_transcribe - [`26735b5`](https://redirect.github.com/vercel/ai/commit/26735b5): chore(embedding-model): add v2 interface - [`443d8ec`](https://redirect.github.com/vercel/ai/commit/443d8ec): feat(embedding-model-v2): add response body field - [`8d12da5`](https://redirect.github.com/vercel/ai/commit/8d12da5): feat(provider/openai): add serviceTier option for flex processing - [`9bf7291`](https://redirect.github.com/vercel/ai/commit/9bf7291): chore(providers/openai): enable structuredOutputs by default & switch to provider option - [`d521cda`](https://redirect.github.com/vercel/ai/commit/d521cda): feat(openai): add file\_search filters and update field names - [`66962ed`](https://redirect.github.com/vercel/ai/commit/66962ed): fix(packages): export node10 compatible types - [`442be08`](https://redirect.github.com/vercel/ai/commit/442be08): fix: propagate openai transcription fixes - [`0059ee2`](https://redirect.github.com/vercel/ai/commit/0059ee2): fix(openai): update file\_search fields to match API changes - [`8493141`](https://redirect.github.com/vercel/ai/commit/8493141): feat (providers/openai): add support for reasoning summaries - [`9301f86`](https://redirect.github.com/vercel/ai/commit/9301f86): refactor (image-model): rename `ImageModelV1` to `ImageModelV2` - [`0a87932`](https://redirect.github.com/vercel/ai/commit/0a87932): core (ai): change transcription model mimeType to mediaType - [`8aa9e20`](https://redirect.github.com/vercel/ai/commit/8aa9e20): feat: add speech with experimental\_generateSpeech - [`4617fab`](https://redirect.github.com/vercel/ai/commit/4617fab): chore(embedding-models): remove remaining settings - [`b5a0e32`](https://redirect.github.com/vercel/ai/commit/b5a0e32): fix (provider/openai): correct default for chat model strict mode - [`136819b`](https://redirect.github.com/vercel/ai/commit/136819b): chore(providers/openai): re-introduce logprobs as providerMetadata - [`52ce942`](https://redirect.github.com/vercel/ai/commit/52ce942): chore(providers/openai): remove & enable strict compatibility by default - [`db64cbe`](https://redirect.github.com/vercel/ai/commit/db64cbe): fix (provider/openai): multi-step reasoning with tool calls - [`b3c3450`](https://redirect.github.com/vercel/ai/commit/b3c3450): feat (provider/openai): add support for encrypted\_reasoning to responses api - [`48249c4`](https://redirect.github.com/vercel/ai/commit/48249c4): Do not warn if empty text is the first part of a reasoning sequence - [`c7d3b2e`](https://redirect.github.com/vercel/ai/commit/c7d3b2e): fix (provider/openai): push first reasoning chunk in output item added event - [`ad2a3d5`](https://redirect.github.com/vercel/ai/commit/ad2a3d5): feat(provider/openai): add missing reasoning models to responses API - [`9943464`](https://redirect.github.com/vercel/ai/commit/9943464): feat(openai): add file\_search\_call.results support to include parameter - [`0fa7414`](https://redirect.github.com/vercel/ai/commit/0fa7414): chore (provider/openai): standardize on itemId in provider metadata - [`9bd5ab5`](https://redirect.github.com/vercel/ai/commit/9bd5ab5): feat (provider): add providerMetadata to ImageModelV2 interface ([#&#8203;5977](https://redirect.github.com/vercel/ai/issues/5977)) The `experimental_generateImage` method from the `ai` package now returnes revised prompts for OpenAI's image models. ```js const prompt = 'Santa Claus driving a Cadillac'; const { providerMetadata } = await experimental_generateImage({ model: openai.image('dall-e-3'), prompt, }); const revisedPrompt = providerMetadata.openai.images[0]?.revisedPrompt; console.log({ prompt, revisedPrompt, }); ``` - [`fa758ea`](https://redirect.github.com/vercel/ai/commit/fa758ea): feat(provider/openai): add o3 & o4-mini with developer systemMessageMode - [`d1a034f`](https://redirect.github.com/vercel/ai/commit/d1a034f): feature: using Zod 4 for internal stuff - [`fd65bc6`](https://redirect.github.com/vercel/ai/commit/fd65bc6): chore(embedding-model-v2): rename rawResponse to response - [`e497698`](https://redirect.github.com/vercel/ai/commit/e497698): fix (provider/openai): handle responses api errors - [`928fadf`](https://redirect.github.com/vercel/ai/commit/928fadf): fix(providers/openai): logprobs for stream alongside completion model - [`0a87932`](https://redirect.github.com/vercel/ai/commit/0a87932): fix (provider/openai): increase transcription model resilience - [`5147e6e`](https://redirect.github.com/vercel/ai/commit/5147e6e): chore(openai): remove simulateStreaming - [`06bac05`](https://redirect.github.com/vercel/ai/commit/06bac05): fix (openai): structure output for responses model - [`205077b`](https://redirect.github.com/vercel/ai/commit/205077b): fix: improve Zod compatibility - [`c2b92cc`](https://redirect.github.com/vercel/ai/commit/c2b92cc): chore(openai): remove legacy function calling - [`284353f`](https://redirect.github.com/vercel/ai/commit/284353f): fix(providers/openai): zod parse error with function - [`6f231db`](https://redirect.github.com/vercel/ai/commit/6f231db): fix(providers): always use optional instead of mix of nullish for providerOptions - [`f10304b`](https://redirect.github.com/vercel/ai/commit/f10304b): feat(tool-calling): don't require the user to have to pass parameters - [`4af5233`](https://redirect.github.com/vercel/ai/commit/4af5233): Fix PDF file parts when passed as a string url or Uint8Array - [`7df7a25`](https://redirect.github.com/vercel/ai/commit/7df7a25): feat (providers/openai): support gpt-image-1 image generation - Updated dependencies \[[`a571d6e`](https://redirect.github.com/vercel/ai/commit/a571d6e)] - Updated dependencies \[[`742b7be`](https://redirect.github.com/vercel/ai/commit/742b7be)] - Updated dependencies \[[`e7fcc86`](https://redirect.github.com/vercel/ai/commit/e7fcc86)] - Updated dependencies \[[`7cddb72`](https://redirect.github.com/vercel/ai/commit/7cddb72)] - Updated dependencies \[[`ccce59b`](https://redirect.github.com/vercel/ai/commit/ccce59b)] - Updated dependencies \[[`e2b9e4b`](https://redirect.github.com/vercel/ai/commit/e2b9e4b)] - Updated dependencies \[[`95857aa`](https://redirect.github.com/vercel/ai/commit/95857aa)] - Updated dependencies \[[`45c1ea2`](https://redirect.github.com/vercel/ai/commit/45c1ea2)] - Updated dependencies \[[`6f6bb89`](https://redirect.github.com/vercel/ai/commit/6f6bb89)] - Updated dependencies \[[`060370c`](https://redirect.github.com/vercel/ai/commit/060370c)] - Updated dependencies \[[`dc714f3`](https://redirect.github.com/vercel/ai/commit/dc714f3)] - Updated dependencies \[[`b5da06a`](https://redirect.github.com/vercel/ai/commit/b5da06a)] - Updated dependencies \[[`d1a1aa1`](https://redirect.github.com/vercel/ai/commit/d1a1aa1)] - Updated dependencies \[[`63f9e9b`](https://redirect.github.com/vercel/ai/commit/63f9e9b)] - Updated dependencies \[[`5d142ab`](https://redirect.github.com/vercel/ai/commit/5d142ab)] - Updated dependencies \[[`d5f588f`](https://redirect.github.com/vercel/ai/commit/d5f588f)] - Updated dependencies \[[`e025824`](https://redirect.github.com/vercel/ai/commit/e025824)] - Updated dependencies \[[`0571b98`](https://redirect.github.com/vercel/ai/commit/0571b98)] - Updated dependencies \[[`b6b43c7`](https://redirect.github.com/vercel/ai/commit/b6b43c7)] - Updated dependencies \[[`4fef487`](https://redirect.github.com/vercel/ai/commit/4fef487)] - Updated dependencies \[[`48d257a`](https://redirect.github.com/vercel/ai/commit/48d257a)] - Updated dependencies \[[`0c0c0b3`](https://redirect.github.com/vercel/ai/commit/0c0c0b3)] - Updated dependencies \[[`0d2c085`](https://redirect.github.com/vercel/ai/commit/0d2c085)] - Updated dependencies \[[`40acf9b`](https://redirect.github.com/vercel/ai/commit/40acf9b)] - Updated dependencies \[[`9222aeb`](https://redirect.github.com/vercel/ai/commit/9222aeb)] - Updated dependencies \[[`e2aceaf`](https://redirect.github.com/vercel/ai/commit/e2aceaf)] - Updated dependencies \[[`411e483`](https://redirect.github.com/vercel/ai/commit/411e483)] - Updated dependencies \[[`8ba77a7`](https://redirect.github.com/vercel/ai/commit/8ba77a7)] - Updated dependencies \[[`7b3ae3f`](https://redirect.github.com/vercel/ai/commit/7b3ae3f)] - Updated dependencies \[[`a166433`](https://redirect.github.com/vercel/ai/commit/a166433)] - Updated dependencies \[[`26735b5`](https://redirect.github.com/vercel/ai/commit/26735b5)] - Updated dependencies \[[`443d8ec`](https://redirect.github.com/vercel/ai/commit/443d8ec)] - Updated dependencies \[[`a8c8bd5`](https://redirect.github.com/vercel/ai/commit/a8c8bd5)] - Updated dependencies \[[`abf9a79`](https://redirect.github.com/vercel/ai/commit/abf9a79)] - Updated dependencies \[[`14c9410`](https://redirect.github.com/vercel/ai/commit/14c9410)] - Updated dependencies \[[`e86be6f`](https://redirect.github.com/vercel/ai/commit/e86be6f)] - Updated dependencies \[[`9bf7291`](https://redirect.github.com/vercel/ai/commit/9bf7291)] - Updated dependencies \[[`2e13791`](https://redirect.github.com/vercel/ai/commit/2e13791)] - Updated dependencies \[[`9f95b35`](https://redirect.github.com/vercel/ai/commit/9f95b35)] - Updated dependencies \[[`66962ed`](https://redirect.github.com/vercel/ai/commit/66962ed)] - Updated dependencies \[[`0d06df6`](https://redirect.github.com/vercel/ai/commit/0d06df6)] - Updated dependencies \[[`472524a`](https://redirect.github.com/vercel/ai/commit/472524a)] - Updated dependencies \[[`dd3ff01`](https://redirect.github.com/vercel/ai/commit/dd3ff01)] - Updated dependencies \[[`d9c98f4`](https://redirect.github.com/vercel/ai/commit/d9c98f4)] - Updated dependencies \[[`05d2819`](https://redirect.github.com/vercel/ai/commit/05d2819)] - Updated dependencies \[[`9301f86`](https://redirect.github.com/vercel/ai/commit/9301f86)] - Updated dependencies \[[`0a87932`](https://redirect.github.com/vercel/ai/commit/0a87932)] - Updated dependencies \[[`c4a2fec`](https://redirect.github.com/vercel/ai/commit/c4a2fec)] - Updated dependencies \[[`957b739`](https://redirect.github.com/vercel/ai/commit/957b739)] - Updated dependencies \[[`79457bd`](https://redirect.github.com/vercel/ai/commit/79457bd)] - Updated dependencies \[[`a3f768e`](https://redirect.github.com/vercel/ai/commit/a3f768e)] - Updated dependencies \[[`7435eb5`](https://redirect.github.com/vercel/ai/commit/7435eb5)] - Updated dependencies \[[`8aa9e20`](https://redirect.github.com/vercel/ai/commit/8aa9e20)] - Updated dependencies \[[`4617fab`](https://redirect.github.com/vercel/ai/commit/4617fab)] - Updated dependencies \[[`ac34802`](https://redirect.github.com/vercel/ai/commit/ac34802)] - Updated dependencies \[[`0054544`](https://redirect.github.com/vercel/ai/commit/0054544)] - Updated dependencies \[[`cb68df0`](https://redirect.github.com/vercel/ai/commit/cb68df0)] - Updated dependencies \[[`ad80501`](https://redirect.github.com/vercel/ai/commit/ad80501)] - Updated dependencies \[[`68ecf2f`](https://redirect.github.com/vercel/ai/commit/68ecf2f)] - Updated dependencies \[[`9e9c809`](https://redirect.github.com/vercel/ai/commit/9e9c809)] - Updated dependencies \[[`32831c6`](https://redirect.github.com/vercel/ai/commit/32831c6)] - Updated dependencies \[[`6dc848c`](https://redirect.github.com/vercel/ai/commit/6dc848c)] - Updated dependencies \[[`6b98118`](https://redirect.github.com/vercel/ai/commit/6b98118)] - Updated dependencies \[[`d0f9495`](https://redirect.github.com/vercel/ai/commit/d0f9495)] - Updated dependencies \[[`63d791d`](https://redirect.github.com/vercel/ai/commit/63d791d)] - Updated dependencies \[[`87b828f`](https://redirect.github.com/vercel/ai/commit/87b828f)] - Updated dependencies \[[`3f2f00c`](https://redirect.github.com/vercel/ai/commit/3f2f00c)] - Updated dependencies \[[`bfdca8d`](https://redirect.github.com/vercel/ai/commit/bfdca8d)] - Updated dependencies \[[`0ff02bb`](https://redirect.github.com/vercel/ai/commit/0ff02bb)] - Updated dependencies \[[`7979f7f`](https://redirect.github.com/vercel/ai/commit/7979f7f)] - Updated dependencies \[[`39a4fab`](https://redirect.github.com/vercel/ai/commit/39a4fab)] - Updated dependencies \[[`44f4aba`](https://redirect.github.com/vercel/ai/commit/44f4aba)] - Updated dependencies \[[`9bd5ab5`](https://redirect.github.com/vercel/ai/commit/9bd5ab5)] - Updated dependencies \[[`57edfcb`](https://redirect.github.com/vercel/ai/commit/57edfcb)] - Updated dependencies \[[`faf8446`](https://redirect.github.com/vercel/ai/commit/faf8446)] - Updated dependencies \[[`7ea4132`](https://redirect.github.com/vercel/ai/commit/7ea4132)] - Updated dependencies \[[`d1a034f`](https://redirect.github.com/vercel/ai/commit/d1a034f)] - Updated dependencies \[[`5c56081`](https://redirect.github.com/vercel/ai/commit/5c56081)] - Updated dependencies \[[`fd65bc6`](https://redirect.github.com/vercel/ai/commit/fd65bc6)] - Updated dependencies \[[`023ba40`](https://redirect.github.com/vercel/ai/commit/023ba40)] - Updated dependencies \[[`ea7a7c9`](https://redirect.github.com/vercel/ai/commit/ea7a7c9)] - Updated dependencies \[[`26535e0`](https://redirect.github.com/vercel/ai/commit/26535e0)] - Updated dependencies \[[`e030615`](https://redirect.github.com/vercel/ai/commit/e030615)] - Updated dependencies \[[`5e57fae`](https://redirect.github.com/vercel/ai/commit/5e57fae)] - Updated dependencies \[[`393138b`](https://redirect.github.com/vercel/ai/commit/393138b)] - Updated dependencies \[[`c57e248`](https://redirect.github.com/vercel/ai/commit/c57e248)] - Updated dependencies \[[`88a8ee5`](https://redirect.github.com/vercel/ai/commit/88a8ee5)] - Updated dependencies \[[`41fa418`](https://redirect.github.com/vercel/ai/commit/41fa418)] - Updated dependencies \[[`205077b`](https://redirect.github.com/vercel/ai/commit/205077b)] - Updated dependencies \[[`71f938d`](https://redirect.github.com/vercel/ai/commit/71f938d)] - Updated dependencies \[[`3795467`](https://redirect.github.com/vercel/ai/commit/3795467)] - Updated dependencies \[[`28a5ed5`](https://redirect.github.com/vercel/ai/commit/28a5ed5)] - Updated dependencies \[[`7182d14`](https://redirect.github.com/vercel/ai/commit/7182d14)] - Updated dependencies \[[`c1e6647`](https://redirect.github.com/vercel/ai/commit/c1e6647)] - Updated dependencies \[[`1766ede`](https://redirect.github.com/vercel/ai/commit/1766ede)] - Updated dependencies \[[`811dff3`](https://redirect.github.com/vercel/ai/commit/811dff3)] - Updated dependencies \[[`f10304b`](https://redirect.github.com/vercel/ai/commit/f10304b)] - Updated dependencies \[[`dd5fd43`](https://redirect.github.com/vercel/ai/commit/dd5fd43)] - Updated dependencies \[[`33f4a6a`](https://redirect.github.com/vercel/ai/commit/33f4a6a)] - Updated dependencies \[[`383cbfa`](https://redirect.github.com/vercel/ai/commit/383cbfa)] - Updated dependencies \[[`27deb4d`](https://redirect.github.com/vercel/ai/commit/27deb4d)] - Updated dependencies \[[`c4df419`](https://redirect.github.com/vercel/ai/commit/c4df419)] - [@&#8203;ai-sdk/provider-utils](https://redirect.github.com/ai-sdk/provider-utils)@&#8203;3.0.0 - [@&#8203;ai-sdk/provider](https://redirect.github.com/ai-sdk/provider)@&#8203;2.0.0 ### [`v1.0.29`](https://redirect.github.com/vercel/ai/releases/tag/%40ai-sdk/rsc%401.0.29) [Compare Source](https://redirect.github.com/vercel/ai/compare/@ai-sdk/openai-compatible@1.0.28...@ai-sdk/openai-compatible@1.0.29) ##### Patch Changes - Updated dependencies \[[`e0e9449`](https://redirect.github.com/vercel/ai/commit/e0e9449)] - ai\@&#8203;5.0.29 ### [`v1.0.28`](https://redirect.github.com/vercel/ai/releases/tag/%40ai-sdk/deepseek%401.0.28) [Compare Source](https://redirect.github.com/vercel/ai/compare/@ai-sdk/openai-compatible@1.0.27...@ai-sdk/openai-compatible@1.0.28) ##### Patch Changes - Updated dependencies \[[`056c471`](https://redirect.github.com/vercel/ai/commit/056c471)] - [@&#8203;ai-sdk/provider-utils](https://redirect.github.com/ai-sdk/provider-utils)@&#8203;3.0.17 - [@&#8203;ai-sdk/openai-compatible](https://redirect.github.com/ai-sdk/openai-compatible)@&#8203;1.0.27 ### [`v1.0.27`](https://redirect.github.com/vercel/ai/releases/tag/%40ai-sdk/openai-compatible%401.0.27) [Compare Source](https://redirect.github.com/vercel/ai/compare/@ai-sdk/openai-compatible@1.0.26...@ai-sdk/openai-compatible@1.0.27) ##### Patch Changes - Updated dependencies \[[`056c471`](https://redirect.github.com/vercel/ai/commit/056c471)] - [@&#8203;ai-sdk/provider-utils](https://redirect.github.com/ai-sdk/provider-utils)@&#8203;3.0.17 ### [`v1.0.26`](https://redirect.github.com/vercel/ai/releases/tag/%40ai-sdk/openai-compatible%401.0.26) [Compare Source](https://redirect.github.com/vercel/ai/compare/@ai-sdk/openai-compatible@1.0.25...@ai-sdk/openai-compatible@1.0.26) ##### Patch Changes - [`51aa5de`](https://redirect.github.com/vercel/ai/commit/51aa5de): backport: test server - Updated dependencies \[[`51aa5de`](https://redirect.github.com/vercel/ai/commit/51aa5de)] - [@&#8203;ai-sdk/provider-utils](https://redirect.github.com/ai-sdk/provider-utils)@&#8203;3.0.16 ### [`v1.0.25`](https://redirect.github.com/vercel/ai/releases/tag/%40ai-sdk/deepseek%401.0.25) [Compare Source](https://redirect.github.com/vercel/ai/compare/@ai-sdk/openai-compatible@1.0.24...@ai-sdk/openai-compatible@1.0.25) ##### Patch Changes - Updated dependencies \[[`949718b`](https://redirect.github.com/vercel/ai/commit/949718b)] - [@&#8203;ai-sdk/provider-utils](https://redirect.github.com/ai-sdk/provider-utils)@&#8203;3.0.14 - [@&#8203;ai-sdk/openai-compatible](https://redirect.github.com/ai-sdk/openai-compatible)@&#8203;1.0.24 ### [`v1.0.24`](https://redirect.github.com/vercel/ai/releases/tag/%40ai-sdk/deepseek%401.0.24) [Compare Source](https://redirect.github.com/vercel/ai/compare/@ai-sdk/openai-compatible@1.0.23...@ai-sdk/openai-compatible@1.0.24) ##### Patch Changes - Updated dependencies \[[`1e05490`](https://redirect.github.com/vercel/ai/commit/1e05490)] - [@&#8203;ai-sdk/provider-utils](https://redirect.github.com/ai-sdk/provider-utils)@&#8203;3.0.13 - [@&#8203;ai-sdk/openai-compatible](https://redirect.github.com/ai-sdk/openai-compatible)@&#8203;1.0.23 ### [`v1.0.23`](https://redirect.github.com/vercel/ai/releases/tag/%40ai-sdk/openai-compatible%401.0.23) [Compare Source](https://redirect.github.com/vercel/ai/compare/@ai-sdk/openai-compatible@1.0.22...@ai-sdk/openai-compatible@1.0.23) ##### Patch Changes - Updated dependencies \[[`1e05490`](https://redirect.github.com/vercel/ai/commit/1e05490)] - [@&#8203;ai-sdk/provider-utils](https://redirect.github.com/ai-sdk/provider-utils)@&#8203;3.0.13 ### [`v1.0.22`](https://redirect.github.com/vercel/ai/releases/tag/%40ai-sdk/openai-compatible%401.0.22) [Compare Source](https://redirect.github.com/vercel/ai/compare/@ai-sdk/openai-compatible@1.0.21...@ai-sdk/openai-compatible@1.0.22) ##### Patch Changes - [`f02b7ab`](https://redirect.github.com/vercel/ai/commit/f02b7ab): Add textVerbosity provider option support ### [`v1.0.21`](https://redirect.github.com/vercel/ai/releases/tag/%40ai-sdk/openai-compatible%401.0.21) [Compare Source](https://redirect.github.com/vercel/ai/compare/@ai-sdk/openai-compatible@1.0.20...@ai-sdk/openai-compatible@1.0.21) ##### Patch Changes - Updated dependencies \[[`17f9872`](https://redirect.github.com/vercel/ai/commit/17f9872)] - [@&#8203;ai-sdk/provider-utils](https://redirect.github.com/ai-sdk/provider-utils)@&#8203;3.0.12 </details> --- ### Configuration 📅 **Schedule**: Branch creation - Between 12:00 AM and 03:59 AM, only on Monday ( * 0-3 * * 1 ) (UTC), 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. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/better-auth/better-auth). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi41OS4wIiwidXBkYXRlZEluVmVyIjoiNDIuNTkuMCIsInRhcmdldEJyYW5jaCI6ImNhbmFyeSIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiXX0=--> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
GiteaMirror added the pull-request label 2026-03-13 13:22:06 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/better-auth#7040