Skip to content

chore(deps): bump @ai-sdk/amazon-bedrock from 4.0.145 to 5.0.38 - #1572

Open
dependabot[bot] wants to merge 1 commit into
devfrom
dependabot/npm_and_yarn/dev/ai-sdk/amazon-bedrock-5.0.38
Open

chore(deps): bump @ai-sdk/amazon-bedrock from 4.0.145 to 5.0.38#1572
dependabot[bot] wants to merge 1 commit into
devfrom
dependabot/npm_and_yarn/dev/ai-sdk/amazon-bedrock-5.0.38

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 3, 2026

Copy link
Copy Markdown
Contributor

Bumps @ai-sdk/amazon-bedrock from 4.0.145 to 5.0.38.

Release notes

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

@​ai-sdk/svelte@​4.0.240

Patch Changes

  • ai@6.0.240

@​ai-sdk/svelte@​4.0.239

Patch Changes

  • ai@6.0.239
Changelog

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

5.0.38

Patch Changes

  • 52e22a7: feat(bedrock): support video inputs in Converse messages

5.0.37

Patch Changes

  • ebd31b8: fix(amazon-bedrock): warn when unsupported strict tools are omitted and align structured output fallback routing
  • Updated dependencies [d8210b6]
  • Updated dependencies [beaecb3]
  • Updated dependencies [b192878]
    • @​ai-sdk/provider-utils@​5.0.16
    • @​ai-sdk/anthropic@​4.0.25
    • @​ai-sdk/openai@​4.0.25

5.0.36

Patch Changes

  • Updated dependencies [1659cd5]
  • Updated dependencies [6a5bdff]
    • @​ai-sdk/provider-utils@​5.0.15
    • @​ai-sdk/anthropic@​4.0.24
    • @​ai-sdk/openai@​4.0.24

5.0.35

Patch Changes

  • Updated dependencies [96a237d]
    • @​ai-sdk/openai@​4.0.23

5.0.34

Patch Changes

  • Updated dependencies [0c464d9]
  • Updated dependencies [c49380c]
    • @​ai-sdk/provider-utils@​5.0.14
    • @​ai-sdk/openai@​4.0.22
    • @​ai-sdk/anthropic@​4.0.23

5.0.33

Patch Changes

  • Updated dependencies [1e2f324]

... (truncated)

Commits

Dependabot compatibility score

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 this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [@ai-sdk/amazon-bedrock](https://github.com/vercel/ai/tree/HEAD/packages/amazon-bedrock) from 4.0.145 to 5.0.38.
- [Release notes](https://github.com/vercel/ai/releases)
- [Changelog](https://github.com/vercel/ai/blob/main/packages/amazon-bedrock/CHANGELOG.md)
- [Commits](https://github.com/vercel/ai/commits/@ai-sdk/amazon-bedrock@5.0.38/packages/amazon-bedrock)

---
updated-dependencies:
- dependency-name: "@ai-sdk/amazon-bedrock"
  dependency-version: 5.0.38
  dependency-type: direct:production
  update-type: version-update:semver-major
...

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 Aug 3, 2026

@chatgpt-codex-connector chatgpt-codex-connector Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

💡 Codex Review

Here are some automated review suggestions for this pull request.

Reviewed commit: ba4b1b8ef6

ℹ️ About Codex in GitHub

Codex has been enabled to automatically review pull requests in this repo. Reviews are triggered when you

  • Open a pull request for review
  • Mark a draft as ready
  • Comment "@codex review".

If Codex has suggestions, it will comment; otherwise it will react with 👍.

When you sign up for Codex through ChatGPT, Codex can also answer questions or update the PR, like "@codex address that feedback".

Comment thread package.json
},
"dependencies": {
"@ai-sdk/amazon-bedrock": "~4.0.120",
"@ai-sdk/amazon-bedrock": "~5.0.38",

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

P1 Badge Commit the regenerated Bun lockfile

Because bun.lock still resolves @ai-sdk/amazon-bedrock to 4.0.120 (bun.lock:7 and bun.lock:226), this manifest change leaves the dependency graph inconsistent. The checked CI and Docker paths install with bun install --frozen-lockfile (.github/workflows/ci.yml:36-37, Dockerfile:15-21), and bun install --help describes that flag as Disallow changes to lockfile, so this bump will fail or keep using the old package before it is tested/deployed. Please regenerate and commit bun.lock with the package change.

Useful? React with 👍 / 👎.

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

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

Confirmed and correct — this is the sole root cause of all 4 failing checks. bun.lock still resolves @ai-sdk/amazon-bedrock to 4.0.120 (bun.lock:7, bun.lock:226) while package.json now asks for ~5.0.38, so every job dies at bun install --frozen-lockfile before doing real work.

I can't apply the fix from this routine: the sandbox has no egress to registry.npmjs.org (verified this run — curl --noproxy '*' returns HTTP 403, and bun info @ai-sdk/amazon-bedrock@5.0.38 returns 403 Forbidden). Regenerating bun.lock requires resolving the real transitive tree and integrity hashes, so hand-editing it would be unsafe. Marking pr-fix-stuck with details in a top-level comment.

Two notes for whoever regenerates it:

  • Use bun 1.2.23 (the pinned packageManager) — this sandbox has 1.3.11, which would churn the lockfile format unnecessarily.
  • A regenerated lockfile alone probably won't make this green — see the overrides conflict described in the top-level comment.

Generated by Claude Code

Copy link
Copy Markdown
Member

🤖 pr-fix routine: blocked — marking pr-fix-stuck

Diagnosis (confirmed, single root cause). All 4 failing checks — Test, Lint, and Type Check, Validate CDK Infrastructure, Auth Edge Production Artifact, Unified Content PostgreSQL Lifecycle — die at the install step within 10–45s:

error: lockfile had changes, but lockfile is frozen
note: try re-running without --frozen-lockfile and commit the updated lockfile

Dependabot changed package.json only (@ai-sdk/amazon-bedrock ~4.0.120~5.0.38; verified against the merge-base: 1 file changed, 1 insertion, 1 deletion) and did not update bun.lock, which still pins 4.0.120 at bun.lock:7 and bun.lock:226. This is exactly what the Codex reviewer flagged as P1.

Why I couldn't fix it. The fix is bun install + commit the regenerated bun.lock, and this routine's sandbox has no egress to registry.npmjs.org. Re-verified this run, two independent ways:

  • curl --noproxy '*' https://registry.npmjs.org/@ai-sdk%2famazon-bedrockHTTP 403 (blocked even when bypassing the agent proxy entirely, so this is a network egress policy, not a proxy/CA misconfiguration)
  • bun info @ai-sdk/amazon-bedrock@5.0.38403 Forbidden: https://registry.npmjs.org/info

Hand-writing bun.lock would mean inventing integrity hashes and a transitive tree I cannot resolve, so I did not attempt it.

A regenerated lockfile alone likely will not make this green. bun.lock:226 shows the currently-locked @ai-sdk/amazon-bedrock@4.0.120 depends on @ai-sdk/provider@3.0.10 and @ai-sdk/provider-utils@4.0.30 — precisely what the root overrides block pins:

"ai": "~6.0.208",
"@ai-sdk/provider": "~3.0.10",
"@ai-sdk/provider-utils": "~4.0.30",
"@ai-sdk/react": "~3.0.210"

The 5.x bedrock line belongs to the AI SDK v7 generation and will want the next provider major, so these overrides would fight the bump. Landing this alone is unlikely to typecheck.

Recommended path. Treat #1568#1576 as one coordinated AI SDK v6 → v7 migration branch (ai 6→7 in #1570, plus @ai-sdk/react #1569, amazon-bedrock #1572, google #1573, openai #1574, mcp #1575, azure #1576), regenerate bun.lock once, and lift the overrides pins in the same commit. That is an architectural call, not an autonomous per-PR fix.

Note for whoever regenerates the lockfile: use bun 1.2.23 (the pinned packageManager). This sandbox carries 1.3.11, which would churn the lockfile format beyond the intended change.

To unstick: run bun install on this branch from a machine with npm access and commit bun.lock (or fold it into the combined v7 branch), then remove the pr-fix-stuck label. The routine will not pick this PR up again while the label is present.


Generated by Claude Code

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

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code pr-fix-stuck pr-fix routine gave up — human attention needed

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant