Skip to content

fix(deps): update dependency @ai-sdk/openai-compatible to v3#12

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/ai-sdk-openai-compatible-3.x
Open

fix(deps): update dependency @ai-sdk/openai-compatible to v3#12
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/ai-sdk-openai-compatible-3.x

Conversation

@renovate

@renovate renovate Bot commented Jul 1, 2026

Copy link
Copy Markdown

This PR contains the following updates:

Package Change Age Confidence
@ai-sdk/openai-compatible (source) 1.0.273.0.5 age confidence

Release Notes

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

v3.0.5

Compare Source

Patch Changes

v3.0.4

Compare Source

Patch Changes

v3.0.3

Compare Source

Patch Changes

v3.0.2

Compare Source

Patch Changes

v3.0.1

Compare Source

Patch Changes

v3.0.0

Compare Source

Major Changes
  • ef992f8: Remove CommonJS exports from all packages. All packages are now ESM-only ("type": "module"). Consumers using require() must switch to ESM import syntax.

  • c29a26f: feat(provider): add support for provider references and uploading files as supported per provider

  • 8359612: Start v7 pre-release

  • 04e9009: chore: make provider implementations code patterns more consistent, including renaming certain exported symbols

    For all externally exported symbols that were renamed, the old names continue to work via deprecated aliases.

Patch Changes
  • ab81968: fix(openai-compatible): buffer tool call deltas until function.name arrives

  • 38fc777: Add AI Gateway hint to provider READMEs

  • 74d520f: feat: migrate providers to support new top-level reasoning parameter

  • e59c955: feat(vertex): add grok models to vertex provider

  • 816ff67: fix(openai-compatible): honor camelCase providerOptions key in chat and completion models

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

  • 45b3d76: fix(security): prevent streaming tool calls from finalizing on parsable partial JSON

    Streaming tool call arguments were finalized using isParsableJson() as a heuristic for completion. If partial accumulated JSON happened to be valid JSON before all chunks arrived, the tool call would be executed with incomplete arguments. Tool call finalization now only occurs in flush() after the stream is fully consumed.

  • 9f0e36c: trigger release for all packages after provenance setup

  • 58a2ad7: fix: more precise default message for tool execution denial

  • 8f3e1da: chore(openai-compat): update v3 specs to v4

  • f7295cb: revert incorrect fix #​13172

  • 008271d: feat(openai-compatible): emit warning when using kebab-case instead of camelCase

  • 7fc6bd6: Raise minimum supported Node.js version to 22. Supported versions: 22, 24, and 26.

  • f807e45: Extract shared StreamingToolCallTracker class into @ai-sdk/provider-utils to deduplicate streaming tool call handling across OpenAI-compatible providers. Also adds missing generateId() fallback for toolCallId in Alibaba's doGenerate path and ensures all providers finalize unfinished tool calls during stream flush.

  • 0c4c275: trigger initial canary release

  • 6fd51c0: fix(provider): preserve error type prefix in getErrorMessage

  • cd9c311: fix(openai, openai-compatible): only send null content for assistant messages with tool calls

  • 9bd6512: feat(provider): change file part data property to be tagged with a type and remove the image part type

  • 258c093: chore: ensure consistent import handling and avoid import duplicates or cycles

  • b8396f0: trigger initial beta release

  • bfb756d: patch - send content: null instead of empty string for tool-only assistant messages

  • 90e2d8a: chore: fix unused vars not being flagged by our lint tooling

  • b3976a2: Add workflow serialization support to all provider models.

    @ai-sdk/provider-utils: New serializeModel() helper that extracts only serializable properties from a model instance, filtering out functions and objects containing functions. Third-party provider authors can use this to add workflow support to their own models.

    All providers: headers is now optional in provider config types. This is non-breaking — existing code that passes headers continues to work. Custom provider implementations that construct model configs manually can now omit headers, which is useful when models are deserialized from a workflow step boundary where auth is provided separately.

    All provider model classes now include WORKFLOW_SERIALIZE and WORKFLOW_DESERIALIZE static methods, enabling them to cross workflow step boundaries without serialization errors.

v2.0.56

Compare Source

Patch Changes

v2.0.55

Compare Source

Patch Changes

v2.0.54

Compare Source

Patch Changes

v2.0.53

Compare Source

Patch Changes

v2.0.52

Compare Source

Patch Changes

v2.0.51

Compare Source

Patch Changes

v2.0.50

Patch Changes

v2.0.48

Compare Source

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

v2.0.47

Compare Source

Patch Changes

v2.0.46

Compare Source

Patch Changes
  • 38966ab: fix(openai, openai-compatible): only send null content for assistant messages with tool calls

v2.0.45

Compare Source

Patch Changes
  • 6043d24: feat(vertex): add grok models to vertex provider

v2.0.44

Compare Source

Patch Changes

v2.0.43

Compare Source

Patch Changes

v2.0.42

Compare Source

Patch Changes

v2.0.41

Compare Source

Patch Changes
  • d42076d: Add AI Gateway hint to provider READMEs

v2.0.40

Compare Source

Patch Changes
  • 01c9c16: fix(openai-compatible): honor camelCase providerOptions key in chat and completion models

v2.0.39

Compare Source

Patch Changes

v2.0.38

Compare Source

Patch Changes

v2.0.37

Compare Source

Patch Changes

v2.0.36

Compare Source

Patch Changes

v2.0.35

Compare Source

Patch Changes

v2.0.34

Compare Source

Patch Changes

v2.0.33

Compare Source

Patch Changes
  • 89caf28: fix(openai-compat): decode base64 string data

v2.0.32

Compare Source

Patch Changes

v2.0.31

Compare Source

Patch Changes

v2.0.30

Compare Source

Patch Changes

v2.0.29

Compare Source

Patch Changes
  • 99fbed8: feat: normalize provider specific model options type names and ensure they are exported

v2.0.28

Compare Source

Patch Changes

v2.0.27

Compare Source

Patch Changes
  • 9e490ad: Change usage schemas from z.object to z.looseObject to improve compatibility with non-standard OpenAI-compatible APIs.

v2.0.26

Compare Source

Patch Changes

v2.0.25

Compare Source

Patch Changes

v2.0.24

Compare Source

Patch Changes

v2.0.23

Compare Source

Patch Changes
  • 1524271: chore: add skill information to README files

v2.0.22

Compare Source

Patch Changes
  • 9d056e6: chore(openai-compatible): add docs to package

v2.0.21

Compare Source

Patch Changes

v2.0.20

Compare Source

Patch Changes
  • a1a0175: fix(openai-compatible): include reasoning_content in assistant messages for multi-turn tool calls

v2.0.19

Compare Source

Patch Changes
  • 6900916: fix(openai-compat): add metadata extractor to provider settings

v2.0.18

Compare Source

Patch Changes

v2.0.17

Compare Source

Patch Changes
  • 8dc54db: chore: add src folders to package bundle

v2.0.16

Compare Source

Patch Changes
  • 78555ad: fix(openai-compatible): Accept non-OpenAI provider options

v2.0.15

Compare Source

Patch Changes
  • 7116ef3: Use consistent camelCase openaiCompatible key for providerOptions. The kebab-case openai-compatible key is now deprecated but still supported with a console warning.

v2.0.14

Compare Source

Patch Changes
  • 1612a57: feat(openai-compat): support passing multiple file types

v2.0.13

Compare Source

Patch Changes

v2.0.12

Compare Source

Patch Changes
  • 78a133a: feat(openai-compatible): add transformRequestBody function for openai-compatible

v2.0.11

Compare Source

Patch Changes

v2.0.10

Compare Source

Patch Changes

v2.0.9

Compare Source

Patch Changes
  • bc02a3c: feat(groq,compat): add strictJsonSchema for providers

v2.0.8

Compare Source

Patch Changes
  • 78fcb18: fix(compat,groq): send reasoning-end before text-start in streaming

v2.0.7

Compare Source

Patch Changes
  • cd7bb0e: feat(openai-compat): add thoughtSignature handling for google models

v2.0.6

Compare Source

Patch Changes

v2.0.5

Compare Source

Patch Changes
  • d54c380: Change some response schemas from z.object to z.looseObject to improve compatibility with non-standard OpenAI-compatible APIs.

v2.0.4

Compare Source

Patch Changes

v2.0.3

Compare Source

Patch Changes

v2.0.2

Compare Source

Patch Changes
  • 99fbed8: feat: normalize provider specific model options type names and ensure they are exported

v2.0.1

Compare Source

Patch Changes
  • 6900916: fix(openai-compat): add metadata extractor to provider settings

v2.0.0

Compare Source

Major Changes
Minor Changes
Patch Changes
  • 0c3b58b: fix(provider): add specificationVersion to ProviderV3

  • 0adc679: feat(provider): shared spec v3

  • 8d9e8ad: chore(provider): remove generics from EmbeddingModelV3

    Before

    model.textEmbeddingModel("my-model-id");

    After

    model.embeddingModel("my-model-id");
  • 2625a04: feat(openai); update spec for mcp approval

  • 95f65c2: chore: use import * from zod/v4

  • 544d4e8: chore(specification): rename v3 provider defined tool to provider tool

  • b689220: Add textVerbosity provider option support

  • 0c4822d: feat: EmbeddingModelV3

  • e8109d3: feat: tool execution approval

  • ed329cb: feat: Provider-V3

  • 3bd2689: feat: extended token usage

  • 8dac895: feat: LanguageModelV3

  • 457318b: chore(provider,ai): switch to SharedV3Warning and unified warnings

  • 9061dc0: feat: image editing

  • 366f50b: chore(provider): add deprecated textEmbeddingModel and textEmbedding aliases

  • 4616b86: chore: update zod peer depenedency version

  • 522f6b8: feat: ImageModelV3

  • cbf52cd: feat: expose raw finish reason

  • 10c1322: fix: moved dependency @ai-sdk/test-server to devDependencies

  • 1bd7d32: feat: tool-specific strict mode

  • Updated dependencies

v1.0.42

Compare Source

Patch Changes

v1.0.41

Compare Source

Patch Changes

v1.0.40

Compare Source

Patch Changes

v1.0.39

Compare Source

Patch Changes
  • cb61408: feat(vertex): add grok models to vertex provider

v1.0.38

Compare Source

Patch Changes

v1.0.37

Compare Source

Patch Changes

v1.0.36

Compare Source

Patch Changes
  • 5543cd1: Add AI Gateway hint to provider READMEs

v1.0.35

Compare Source

Patch Changes

v1.0.34

Compare Source

Patch Changes

v1.0.33

Compare Source

Patch Changes

v1.0.32

Compare Source

Patch Changes
  • 8479fe8: trigger for backport release
  • 7aadb9b: fix(openai-compatible): include reasoning_content in assistant messages for multi-turn tool calls

v1.0.31

Compare Source

Patch Changes
  • fcb9d27: feat(openai-compatible): Allow non-openai providerOptions keys

v1.0.30

Compare Source

Patch Changes

v1.0.29

Patch Changes

v1.0.28

Patch Changes

Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • 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.

@renovate renovate Bot force-pushed the renovate/ai-sdk-openai-compatible-3.x branch from 74083d7 to 93fb554 Compare July 4, 2026 07:52
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants