Skip to content

Update dependency @ai-sdk/groq to v4#70

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/ai-sdk-groq-4.x
Open

Update dependency @ai-sdk/groq to v4#70
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/ai-sdk-groq-4.x

Conversation

@renovate

@renovate renovate Bot commented Jun 28, 2026

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Confidence
@ai-sdk/groq (source) ^1.2.5^4.0.0 age confidence

Release Notes

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

v4.0.1

Compare Source

Patch Changes

v4.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
  • 38fc777: Add AI Gateway hint to provider READMEs

  • 023550e: Deprecate streamText result fullStream in favor of stream.

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

  • 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

  • 7bf717f: feat: Groq support for performance service tier

  • f7295cb: revert incorrect fix #​13172

  • 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

  • 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

  • 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.

v3.0.46

Compare Source

Patch Changes

v3.0.45

Compare Source

Patch Changes

v3.0.44

Compare Source

Patch Changes

v3.0.43

Compare Source

Patch Changes

v3.0.42

Compare Source

Patch Changes

v3.0.41

Patch Changes

v3.0.39

Compare Source

Patch Changes

v3.0.38

Compare Source

Patch Changes

v3.0.37

Compare Source

Patch Changes

v3.0.36

Compare Source

Patch Changes

v3.0.35

Compare Source

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

v3.0.34

Compare Source

Patch Changes

v3.0.33

Compare Source

Patch Changes

v3.0.32

Compare Source

Patch Changes
  • cb3ca8f: feat: Groq support for performance service tier

v3.0.31

Compare Source

Patch Changes

v3.0.30

Compare Source

Patch Changes

v3.0.29

Compare Source

Patch Changes

v3.0.28

Compare Source

Patch Changes

v3.0.27

Compare Source

Patch Changes

v3.0.26

Compare Source

Patch Changes

v3.0.25

Compare Source

Patch Changes
  • 91f8777: fix(bedrock/groq): pass strict mode for tools

v3.0.24

Compare Source

Patch Changes

v3.0.23

Compare Source

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

v3.0.22

Compare Source

Patch Changes

v3.0.21

Compare Source

Patch Changes

v3.0.20

Compare Source

Patch Changes

v3.0.19

Compare Source

Patch Changes

v3.0.18

Compare Source

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

v3.0.17

Compare Source

Patch Changes
  • 3988c08: docs: fix incorrect and outdated provider docs

v3.0.16

Compare Source

Patch Changes

v3.0.15

Compare Source

Patch Changes

v3.0.14

Compare Source

Patch Changes
  • 2b8369d: chore: add docs to package dist

v3.0.13

Compare Source

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

v3.0.12

Compare Source

Patch Changes
  • 25f5da3: feat(groq): expose reasoningTokens in usage data

v3.0.11

Compare Source

Patch Changes
  • 7c98577: fix timestamp_granularities handling in groq transcription

v3.0.10

Compare Source

Patch Changes

v3.0.9

Compare Source

Patch Changes

v3.0.8

Compare Source

Patch Changes

v3.0.7

Compare Source

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

v3.0.6

Compare Source

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

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
Minor Changes
Patch Changes
  • 0c3b58b: fix(provider): add specificationVersion to ProviderV3

  • 541abc9: Removed deprecated distil-whisper-large-v3-en model from groq transcription

  • 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

  • 954c356: feat(openai): allow custom names for provider-defined tools

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

  • e8109d3: feat: tool execution approval

  • ed329cb: feat: Provider-V3

  • 3bd2689: feat: extended token usage

  • 1cad0ab: feat: add provider version to user-agent header

  • 08d5419: fix(groq): remove decomissioned moonshotai/kimi-k2-instruct, add moonshotai/kimi-k2-instruct-0905

  • 8dac895: feat: LanguageModelV3

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

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

  • 4616b86: chore: update zod peer depenedency version

  • 0f0fa34: Restrict reasoningEffort to allowed enum values in Groq provider options

  • 21e20c0: feat(provider): transcription model v3 spec

  • cbf52cd: feat: expose raw finish reason

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

  • 3f464f4: fix(provider/groq): track cached tokens usage

  • Updated dependencies

v2.0.43

Compare Source

Patch Changes

v2.0.42

Compare Source

Patch Changes

v2.0.41

Compare Source

Patch Changes

v2.0.40

Compare Source

Patch Changes

v2.0.39

Compare Source

Patch Changes

v2.0.38

Compare Source

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

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

Patch Changes

v2.0.32

Patch Changes

v2.0.31

Patch Changes
  • c5679f4: Restrict reasoningEffort to allowed enum values in Groq provider options

v2.0.30

Patch Changes
  • 31cc064: fix(groq): remove decomissioned moonshotai/kimi-k2-instruct, add moonshotai/kimi-k2-instruct-0905

v2.0.29

Patch Changes

v2.0.28

Patch Changes

v2.0.27

Patch Changes

v2.0.26

Patch Changes

v2.0.25

Patch Changes

v2.0.19

Patch Changes

v2.0.18

Patch Changes
  • c37bc3b: feat (provider/groq): remove obsolete saba model id

v2.0.17

Patch Changes

v2.0.16

Patch Changes

v2.0.15

Patch Changes

v2.0.14

Patch Changes
  • 1e8f9b7: fix (provider/groq): add missing provider.transcriptionModel

v2.0.13

Patch Changes
  • 72757a0: feat (provider/groq): add service tier provider option

v2.0.12

Patch Changes

v2.0.11

Patch Changes

v2.0.10

Patch Changes
  • ff008b9: fix(groq): strip unsupported reasoning fields for non-reasoning models

v2.0.9

Patch Changes
  • d48613a: Added support for browser use tool in groq

v2.0.8

Patch Changes

v2.0.7

Patch Changes

v2.0.6

Patch Changes

v2.0.5

Patch Changes
  • 8f8a521: fix(providers): use convertToBase64 for Uint8Array image parts to produce valid data URLs; keep mediaType normalization and URL passthrough

v2.0.4

Patch Changes
  • 4b50c36: patch reasoningEffort parameter "low", "medium", "high" for gpt-oss

v2.0.3

Patch Changes
  • e49b556: feat(provider/groq): added openai gpt-oss model ids

v2.0.2

Patch Changes

v2.0.1

Patch Changes

v2.0.0

Major Changes
Patch Changes
  • e2aceaf: feat: add raw chunk support
  • e0d9541: feat: add kimi k2 model via groq
  • 9bd148e: feat(providers/groq): add transcribe
  • ae3a4fd: feat(provider/groq): add structured outputs support
  • d1a034f: feature: using Zod 4 for internal stuff
  • ebeac90: chore(providers/groq): convert to providerOptions
  • 67b9604: feat (provider/groq): add llama 4 model
  • 205077b: fix: improve Zod compatibility
  • 6f231db: fix(providers): always use optional instead of mix of nullish for providerOptions
  • Updated dependencies

Configuration

📅 Schedule: (in timezone Asia/Jerusalem)

  • 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 is behind base branch, 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 added the renovate label Jun 28, 2026
@vercel

vercel Bot commented Jun 28, 2026

Copy link
Copy Markdown

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
connected-agent Error Error Jun 30, 2026 8:09pm

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants