Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 12, 2025

Bumps @anthropic-ai/sdk from 0.39.0 to 0.71.2.

Release notes

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

sdk: v0.71.2

0.71.2 (2025-12-05)

Full Changelog: sdk-v0.71.1...sdk-v0.71.2

Bug Fixes

  • streams: ensure errors are catchable (#856) (a480eaf)

sdk: v0.71.1

0.71.1 (2025-12-04)

Full Changelog: sdk-v0.71.0...sdk-v0.71.1

Bug Fixes

  • parser: use correct naming for parsed text blocks (6472bcd)
  • structured outputs: ensure parsed is not enumerable (860175f), closes #857

Chores

  • add deprecation warnings for accessing .parsed (ae7a637)
  • client: fix logger property type (e3e4d7c)
  • internal: upgrade eslint (5fbe661)

sdk: v0.71.0

0.71.0 (2025-11-24)

Full Changelog: sdk-v0.70.1...sdk-v0.71.0

Features

  • api: adds support for Claude Opus 4.5, Effort, Advance Tool Use Features, Autocompaction, and Computer Use v5 (f3a0dac)

Chores

  • fix ci errors (8d96290)
  • include publishConfig in all package.json files (4c72960)
  • readme: fix example import (4e8983a)

sdk: v0.70.1

0.70.1 (2025-11-20)

Full Changelog: sdk-v0.70.0...sdk-v0.70.1

Bug Fixes

  • structured outputs: use correct beta header (626662c)

... (truncated)

Changelog

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

0.71.2 (2025-12-05)

Full Changelog: sdk-v0.71.1...sdk-v0.71.2

Bug Fixes

  • streams: ensure errors are catchable (#856) (a480eaf)

0.71.1 (2025-12-04)

Full Changelog: sdk-v0.71.0...sdk-v0.71.1

Bug Fixes

  • parser: use correct naming for parsed text blocks (6472bcd)
  • structured outputs: ensure parsed is not enumerable (860175f), closes #857

Chores

  • add deprecation warnings for accessing .parsed (ae7a637)
  • client: fix logger property type (e3e4d7c)
  • internal: upgrade eslint (5fbe661)

0.71.0 (2025-11-24)

Full Changelog: sdk-v0.70.1...sdk-v0.71.0

Features

  • api: adds support for Claude Opus 4.5, Effort, Advance Tool Use Features, Autocompaction, and Computer Use v5 (f3a0dac)

Chores

  • fix ci errors (8d96290)
  • include publishConfig in all package.json files (4c72960)
  • readme: fix example import (4e8983a)

0.70.1 (2025-11-20)

Full Changelog: sdk-v0.70.0...sdk-v0.70.1

Bug Fixes

  • structured outputs: use correct beta header (626662c)

0.70.0 (2025-11-18)

Full Changelog: sdk-v0.69.0...sdk-v0.70.0

... (truncated)

Commits
  • eb8b090 chore: release main
  • c512663 fix(streams): ensure errors are catchable (#856)
  • 1999377 chore: release main
  • 6e368bc chore: add deprecation warnings for accessing .parsed
  • 3cc2dd6 fix(parser): use correct naming for parsed text blocks
  • 4cd61ae fix(structured outputs): ensure parsed is not enumerable
  • 7131dba codegen metadata
  • 71ee68b chore(internal): upgrade eslint
  • aaac44b chore(client): fix logger property type
  • 2db553f codegen metadata
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by packy-anthropic, a new releaser for @​anthropic-ai/sdk since your current version.


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 merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @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)

@dependabot dependabot bot added chartsmith-app dependencies Pull requests that update a dependency file npm labels Dec 12, 2025
Bumps [@anthropic-ai/sdk](https://github.com/anthropics/anthropic-sdk-typescript) from 0.39.0 to 0.71.2.
- [Release notes](https://github.com/anthropics/anthropic-sdk-typescript/releases)
- [Changelog](https://github.com/anthropics/anthropic-sdk-typescript/blob/main/CHANGELOG.md)
- [Commits](anthropics/anthropic-sdk-typescript@sdk-v0.39.0...sdk-v0.71.2)

---
updated-dependencies:
- dependency-name: "@anthropic-ai/sdk"
  dependency-version: 0.71.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/chartsmith-app/anthropic-ai/sdk-0.71.2 branch from ffca761 to 01df7bd Compare December 12, 2025 23:25
"zod": {
"optional": true
}
}
Copy link

Choose a reason for hiding this comment

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

Bug: Missing node-fetch dependency after SDK upgrade

The upgrade removes node-fetch as a transitive dependency of @anthropic-ai/sdk, but chartsmith-app/lib/workspace/archive.ts imports and uses node-fetch directly (lines 9, 155, 226). Since node-fetch is not listed as an explicit dependency in package.json, this upgrade will cause runtime failures when downloading charts from ArtifactHub URLs. The node-fetch package needs to be added as a direct dependency, or the code needs to be refactored to use native Node.js fetch.

Fix in Cursor Fix in Web

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

Labels

chartsmith-app dependencies Pull requests that update a dependency file npm

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant