Skip to content

Commit 4368602

Browse files
chore: release main (#978)
Co-authored-by: Cameron McAteer <246350779+cameron-mcateer@users.noreply.github.com> Co-authored-by: stainless-app[bot] <142633134+stainless-app[bot]@users.noreply.github.com>
1 parent 4105fd6 commit 4368602

File tree

15 files changed

+528
-10
lines changed

15 files changed

+528
-10
lines changed

.release-please-manifest.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
2-
".": "0.84.0",
2+
".": "0.85.0",
33
"packages/vertex-sdk": "0.15.0",
4-
"packages/bedrock-sdk": "0.27.0",
4+
"packages/bedrock-sdk": "0.28.0",
55
"packages/foundry-sdk": "0.2.3",
6-
"packages/aws-sdk": "0.2.2"
6+
"packages/aws-sdk": "0.2.3"
77
}

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## 0.85.0 (2026-04-07)
4+
5+
Full Changelog: [sdk-v0.84.0...sdk-v0.85.0](https://github.com/anthropics/anthropic-sdk-typescript/compare/sdk-v0.84.0...sdk-v0.85.0)
6+
7+
### Features
8+
9+
* **client:** Create Bedrock Mantle client ([#810](https://github.com/anthropics/anthropic-sdk-typescript/issues/810)) ([2f1f4a1](https://github.com/anthropics/anthropic-sdk-typescript/commit/2f1f4a1f565a6c12afc1dd7fd98d2adf735dd68b))
10+
311
## 0.84.0 (2026-04-07)
412

513
Full Changelog: [sdk-v0.83.0...sdk-v0.84.0](https://github.com/anthropics/anthropic-sdk-typescript/compare/sdk-v0.83.0...sdk-v0.84.0)

bin/replace-internal-symlinks

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ for package in "${PACKAGES[@]}"; do
1515
INTERNAL_SYMLINK="$PACKAGE_DIR/src/internal"
1616

1717
if [ -L "$INTERNAL_SYMLINK" ]; then
18-
echo "Processing $package..."
18+
echo "Processing $package internal symlink..."
1919

2020
# Remove the symlink
2121
rm "$INTERNAL_SYMLINK"
@@ -31,3 +31,13 @@ for package in "${PACKAGES[@]}"; do
3131
echo "No 'internal' symlink found in $package or it's not a symlink"
3232
fi
3333
done
34+
35+
# Replace individual file symlinks within packages
36+
BEDROCK_AWS_AUTH="$ROOT_DIR/packages/bedrock-sdk/src/core/aws-auth.ts"
37+
if [ -L "$BEDROCK_AWS_AUTH" ]; then
38+
echo "Processing bedrock-sdk aws-auth symlink..."
39+
RESOLVED="$(realpath "$BEDROCK_AWS_AUTH")"
40+
rm "$BEDROCK_AWS_AUTH"
41+
cp "$RESOLVED" "$BEDROCK_AWS_AUTH"
42+
echo "Replaced aws-auth.ts symlink with file copy"
43+
fi

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@anthropic-ai/sdk",
3-
"version": "0.84.0",
3+
"version": "0.85.0",
44
"description": "The official TypeScript library for the Anthropic API",
55
"author": "Anthropic <support@anthropic.com>",
66
"types": "dist/index.d.ts",

packages/aws-sdk/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Changelog
22

3+
## 0.2.3 (2026-04-07)
4+
5+
Full Changelog: [aws-sdk-v0.2.2...aws-sdk-v0.2.3](https://github.com/anthropics/anthropic-sdk-typescript/compare/aws-sdk-v0.2.2...aws-sdk-v0.2.3)
6+
7+
### Chores
8+
9+
* **internal:** version bump ([eb97e85](https://github.com/anthropics/anthropic-sdk-typescript/commit/eb97e8577279fb150582297d2a0924a297185c3c))
10+
* **internal:** version bump ([8ebaf61](https://github.com/anthropics/anthropic-sdk-typescript/commit/8ebaf616d2e5c6aebc153f19a403dde41ab5a9f1))
11+
312
## 0.2.2 (2026-04-07)
413

514
Full Changelog: [aws-sdk-v0.2.1...aws-sdk-v0.2.2](https://github.com/anthropics/anthropic-sdk-typescript/compare/aws-sdk-v0.2.1...aws-sdk-v0.2.2)

packages/aws-sdk/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@anthropic-ai/aws-sdk",
3-
"version": "0.2.2",
3+
"version": "0.2.3",
44
"description": "The official TypeScript library for the Anthropic AWS API",
55
"author": "Anthropic <support@anthropic.com>",
66
"types": "dist/index.d.ts",

packages/bedrock-sdk/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## 0.28.0 (2026-04-07)
4+
5+
Full Changelog: [bedrock-sdk-v0.27.0...bedrock-sdk-v0.28.0](https://github.com/anthropics/anthropic-sdk-typescript/compare/bedrock-sdk-v0.27.0...bedrock-sdk-v0.28.0)
6+
7+
### Features
8+
9+
* **client:** Create Bedrock Mantle client ([#810](https://github.com/anthropics/anthropic-sdk-typescript/issues/810)) ([2f1f4a1](https://github.com/anthropics/anthropic-sdk-typescript/commit/2f1f4a1f565a6c12afc1dd7fd98d2adf735dd68b))
10+
311
## 0.27.0 (2026-04-01)
412

513
Full Changelog: [bedrock-sdk-v0.26.4...bedrock-sdk-v0.27.0](https://github.com/anthropics/anthropic-sdk-typescript/compare/bedrock-sdk-v0.26.4...bedrock-sdk-v0.27.0)

packages/bedrock-sdk/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@anthropic-ai/bedrock-sdk",
3-
"version": "0.27.0",
3+
"version": "0.28.0",
44
"description": "The official TypeScript library for the Anthropic Bedrock API",
55
"author": "Anthropic <support@anthropic.com>",
66
"types": "dist/index.d.ts",
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../../../aws-sdk/src/core/auth.ts

packages/bedrock-sdk/src/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
export * from './client';
22
export { AnthropicBedrock as default } from './client';
3+
export { AnthropicBedrockMantle, BedrockMantleClientOptions } from './mantle-client';

0 commit comments

Comments
 (0)