Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 8 additions & 13 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,22 +110,21 @@ jobs:
- name: Run tests
run: ./scripts/test

detect_breaking_changes:
detect_breaking_changes_vs_main:
timeout-minutes: 10
name: detect-breaking-changes
name: detect-breaking-changes-vs-main
runs-on: ${{ github.repository == 'stainless-sdks/anthropic-typescript' && 'depot-ubuntu-24.04' || 'ubuntu-latest' }}
if: |
(github.event_name == 'push' &&
github.ref != 'refs/heads/next' &&
!startsWith(github.ref, 'refs/heads/release-please--')) ||
github.event_name == 'pull_request'
steps:
- uses: actions/checkout@v6

- name: Fetch history for current branch and target branches
- name: Fetch history for current branch and main
run: |
git fetch origin --filter=blob:none --no-tags --depth=2147483647 ${{ github.sha }}
git fetch origin --filter=blob:none --no-tags next main 2>/dev/null || true
git fetch origin --filter=blob:none --no-tags main 2>/dev/null || true

- name: Set up Node
uses: actions/setup-node@v4
Expand All @@ -137,14 +136,10 @@ jobs:

- name: Determine base SHA
run: |
if [ "${{ github.event_name }}" = "pull_request" ]; then
echo "BASE_SHA=${{ github.event.pull_request.base.sha }}" >> $GITHUB_ENV
else
BASE_SHA=$(git merge-base HEAD origin/next 2>/dev/null || git merge-base HEAD origin/main 2>/dev/null || echo "")
echo "BASE_SHA=$BASE_SHA" >> $GITHUB_ENV
fi

- name: Detect breaking changes
BASE_SHA=$(git merge-base HEAD origin/main 2>/dev/null || echo "")
echo "BASE_SHA=$BASE_SHA" >> $GITHUB_ENV

- name: Detect breaking changes vs. main
if: env.BASE_SHA != ''
run: |
# Try to check out previous versions of the breaking change detection script. This ensures that
Expand Down
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
".": "0.92.0",
".": "0.93.0",
"packages/vertex-sdk": "0.16.0",
"packages/bedrock-sdk": "0.29.1",
"packages/foundry-sdk": "0.2.3",
Expand Down
4 changes: 2 additions & 2 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 91
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/anthropic/anthropic-4175787f21d24cc3d87dcecce2df2469d10f92eee8e4f00af8a6dd36f7e13ffa.yml
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/anthropic/anthropic-ad9228826393d94e86ecf4c22853ae51b1d4094960c836238b3ab79a1044be32.yml
openapi_spec_hash: dc43ed54947d427a084a891b7c4a783a
config_hash: 486e52c2d1bedf2dca1e33dcf8132987
config_hash: bbf09e23cb2e12b5bb8cbcee3044ceec
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.93.0 (2026-05-04)

Full Changelog: [sdk-v0.92.0...sdk-v0.93.0](https://github.com/anthropics/anthropic-sdk-typescript/compare/sdk-v0.92.0...sdk-v0.93.0)

### Features

* **client:** add Workload Identity Federation, interactive OAuth, and auth profiles ([d5d6abd](https://github.com/anthropics/anthropic-sdk-typescript/commit/d5d6abdb1976db389aca87553ffedab2414e0d77))

## 0.92.0 (2026-04-30)

Full Changelog: [sdk-v0.91.1...sdk-v0.92.0](https://github.com/anthropics/anthropic-sdk-typescript/compare/sdk-v0.91.1...sdk-v0.92.0)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@anthropic-ai/sdk",
"version": "0.92.0",
"version": "0.93.0",
"description": "The official TypeScript library for the Anthropic API",
"author": "Anthropic <support@anthropic.com>",
"types": "dist/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion packages/vertex-sdk/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

"@anthropic-ai/sdk@file:../../dist":
# x-release-please-start-version
version "0.92.0"
version "0.93.0"
# x-release-please-end-version
dependencies:
json-schema-to-ts "^3.1.1"
Expand Down
Loading
Loading