Skip to content

Bump @anthropic-ai/sdk from 0.78.0 to 0.80.0#19

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/anthropic-ai/sdk-0.80.0
Open

Bump @anthropic-ai/sdk from 0.78.0 to 0.80.0#19
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/anthropic-ai/sdk-0.80.0

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot bot commented on behalf of github Apr 1, 2026

Bumps @anthropic-ai/sdk from 0.78.0 to 0.80.0.

Release notes

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

sdk: v0.80.0

0.80.0 (2026-03-18)

Full Changelog: sdk-v0.79.0...sdk-v0.80.0

Features

Chores

  • internal: tweak CI branches (4a5819e)

sdk: v0.79.0

0.79.0 (2026-03-16)

Full Changelog: sdk-v0.78.0...sdk-v0.79.0

Features

  • add support for filesystem memory tools (#599) (1064199)
  • api: chore(config): clean up model enum list (#31) (07727a6)
  • api: GA thinking-display-setting (4dc8df4)
  • tests: update mock server (e5c3be9)

Bug Fixes

  • docs/contributing: correct pnpm link command (16bf66c)
  • internal: skip tests that depend on mock server (07417e5)
  • zod: use v4 import path for Zod ^3.25 compatibility (#925) (c6c0ac8)

Chores

  • client: remove unused import (3827ab5)
  • internal: codegen related update (2c1fc10)
  • internal: improve import alias names (5b9615b)
  • internal: move stringifyQuery implementation to internal function (16239f3)
  • internal: update dependencies to address dependabot vulnerabilities (6fdea5e)
  • mcp-server: improve instructions (66e5363)
  • remove accidentally committed file (#929) (0989113)
  • tests: unskip tests that are now supported in steady (616a98a)

Documentation

Changelog

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

0.80.0 (2026-03-18)

Full Changelog: sdk-v0.79.0...sdk-v0.80.0

Features

Chores

  • internal: tweak CI branches (4a5819e)

0.79.0 (2026-03-16)

Full Changelog: sdk-v0.78.0...sdk-v0.79.0

Features

  • add support for filesystem memory tools (#599) (1064199)
  • api: chore(config): clean up model enum list (#31) (07727a6)
  • api: GA thinking-display-setting (4dc8df4)
  • tests: update mock server (e5c3be9)

Bug Fixes

  • docs/contributing: correct pnpm link command (16bf66c)
  • internal: skip tests that depend on mock server (07417e5)
  • zod: use v4 import path for Zod ^3.25 compatibility (#925) (c6c0ac8)

Chores

  • client: remove unused import (3827ab5)
  • internal: codegen related update (2c1fc10)
  • internal: improve import alias names (5b9615b)
  • internal: move stringifyQuery implementation to internal function (16239f3)
  • internal: update dependencies to address dependabot vulnerabilities (6fdea5e)
  • mcp-server: improve instructions (66e5363)
  • remove accidentally committed file (#929) (0989113)
  • tests: unskip tests that are now supported in steady (616a98a)

Documentation

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 [@anthropic-ai/sdk](https://github.com/anthropics/anthropic-sdk-typescript) from 0.78.0 to 0.80.0.
- [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.78.0...sdk-v0.80.0)

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

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 Apr 1, 2026
@github-actions
Copy link
Copy Markdown

github-actions bot commented Apr 1, 2026

QA Instructions

QA Testing Instructions

Summary

This PR updates the dependency @anthropic-ai/sdk from version 0.78.0 to 0.80.0. The release includes minor features, bug fixes, and internal improvements. The integration updates the SDK version specified in both package.json and package-lock.json. No functional changes have been introduced to application code explicitly, but smoke testing is required to ensure compatibility with the new SDK version.


Test Environment Setup

  1. Ensure the development environment is set up with Node.js version specified in .node-version file.
  2. Run npm install to update and install all dependencies, including @anthropic-ai/sdk@0.80.0.

Test Scenarios

  1. Dependency Installation

    • Steps:
      1. Run npm install after pulling this branch.
      2. Verify that @anthropic-ai/sdk version 0.80.0 is installed correctly.
    • Expected Result:
      • The dependency is updated to 0.80.0 in node_modules.
      • The package-lock.json contains the updated version and the correct integrity hash.
  2. Basic Functionality Test for SDK Integration

    • Context: Verify that existing functionality using @anthropic-ai/sdk performs as expected.
    • Steps:
      1. Identify any module (src/claude.ts or another relevant file) that uses the @anthropic-ai/sdk package in the codebase.
      2. Run the corresponding unit tests for the code that depends on @anthropic-ai/sdk, such as src/claude.test.ts.
      3. Monitor the test outputs for any errors or regressions.
    • Expected Result:
      • All tests related to @anthropic-ai/sdk functionality pass without errors.
      • For example, tests in src/claude.test.ts should pass entirely.
  3. End-to-End Feature Test

    • Context: Ensure API calls or features relying on the library still function correctly.
    • Steps:
      1. Trigger workflows or actions that use @anthropic-ai/sdk functionality, such as testing the src/index.ts file or running integration tests.
      2. Execute the command npm run test for a complete test suite run (uses vitest).
    • Expected Result:
      • Integration tests execute without failures.
      • End-to-end tests validate proper behavior of the systems interacting with @anthropic-ai/sdk.

Regression Risks

  • Areas of the code involving calls to @anthropic-ai/sdk APIs, particularly src/claude.ts and its related unit tests (src/claude.test.ts), might encounter compatibility issues due to changes in the SDK (e.g., API updates, deprecations).
  • Features leveraging any filesystem-related or memory tools introduced in version 0.79.0 or 0.80.0 might have undocumented impacts.
  • Verify any areas interacting with the SDK for compatibility issues.

Things to Watch For

  1. Changes to the @anthropic-ai/sdk API might require updates to parameter names or structures—review any breaking changes indicated in the release notes (api changes in versions 0.79.0 and 0.80.0).
  2. Bugs in the newly updated @anthropic-ai/sdk could lead to unexpected behavior in the application. Be attentive to API request/response structures.

Additional Notes

  • Monitor the test logs for any deprecations or warnings related to the new version of the SDK.
  • If further integration issues are encountered, refer to the release notes and changelog for potential breaking changes or enhancements that might impact usage.

Generated by QA Instructions Action

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

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants