Skip to content

Commit ef6a706

Browse files
release: 2.8.0
1 parent 618bb97 commit ef6a706

File tree

4 files changed

+37
-11
lines changed

4 files changed

+37
-11
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "2.7.0"
2+
".": "2.8.0"
33
}

CHANGELOG.md

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

3+
## 2.8.0 (2025-09-29)
4+
5+
Full Changelog: [v2.7.0...v2.8.0](https://github.com/anthropics/anthropic-sdk-java/compare/v2.7.0...v2.8.0)
6+
7+
### Features
8+
9+
* **api:** adds support for Claude Sonnet 4.5 and context management features ([c286ab8](https://github.com/anthropics/anthropic-sdk-java/commit/c286ab85ad924205987641240792f1734a0686b8))
10+
* **client:** expose sleeper option ([ca9ce4f](https://github.com/anthropics/anthropic-sdk-java/commit/ca9ce4f05f004acf4118e1621cd8897c2a4be8a0))
11+
12+
13+
### Bug Fixes
14+
15+
* **client:** deserialization of empty objects ([af93581](https://github.com/anthropics/anthropic-sdk-java/commit/af93581b6a56804cbccff3318706716c0b926ddb))
16+
* **client:** ensure single timer is created per client ([ca9ce4f](https://github.com/anthropics/anthropic-sdk-java/commit/ca9ce4f05f004acf4118e1621cd8897c2a4be8a0))
17+
* **client:** incorrect `getPackageVersion` impl ([a8b170b](https://github.com/anthropics/anthropic-sdk-java/commit/a8b170b391da21f2fe4a43d9ba82207c2ff5a2ae))
18+
19+
20+
### Chores
21+
22+
* improve formatter performance ([c57630b](https://github.com/anthropics/anthropic-sdk-java/commit/c57630b565faa7d87192c3cbd3af682868a514f3))
23+
* improve formatter performance ([100e6ad](https://github.com/anthropics/anthropic-sdk-java/commit/100e6adc25f2c09366be2bc85101615e85393817))
24+
* **internal:** change some comment formatting ([f725d58](https://github.com/anthropics/anthropic-sdk-java/commit/f725d582e11284786a10a3813080a335ce283a36))
25+
* **internal:** codegen related update ([14a3c9c](https://github.com/anthropics/anthropic-sdk-java/commit/14a3c9cc526f9a51b80a082496ce50f28bb2b814))
26+
* **internal:** codegen related update ([e6fddb4](https://github.com/anthropics/anthropic-sdk-java/commit/e6fddb403cebdab86243be8ae3c3ec0c3fd6ac74))
27+
* **internal:** fix tests ([cc05673](https://github.com/anthropics/anthropic-sdk-java/commit/cc0567395827e0f7ff289b724a5112da9210f290))
28+
329
## 2.7.0 (2025-09-10)
430

531
Full Changelog: [v2.6.0...v2.7.0](https://github.com/anthropics/anthropic-sdk-java/compare/v2.6.0...v2.7.0)

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,16 @@
22

33
<!-- x-release-please-start-version -->
44

5-
[![Maven Central](https://img.shields.io/maven-central/v/com.anthropic/anthropic-java)](https://central.sonatype.com/artifact/com.anthropic/anthropic-java/2.7.0)
6-
[![javadoc](https://javadoc.io/badge2/com.anthropic/anthropic-java/2.7.0/javadoc.svg)](https://javadoc.io/doc/com.anthropic/anthropic-java/2.7.0)
5+
[![Maven Central](https://img.shields.io/maven-central/v/com.anthropic/anthropic-java)](https://central.sonatype.com/artifact/com.anthropic/anthropic-java/2.8.0)
6+
[![javadoc](https://javadoc.io/badge2/com.anthropic/anthropic-java/2.8.0/javadoc.svg)](https://javadoc.io/doc/com.anthropic/anthropic-java/2.8.0)
77

88
<!-- x-release-please-end -->
99

1010
The Anthropic Java SDK provides convenient access to the [Anthropic REST API](https://docs.anthropic.com/claude/reference/) from applications written in Java.
1111

1212
<!-- x-release-please-start-version -->
1313

14-
The REST API documentation can be found on [docs.anthropic.com](https://docs.anthropic.com/claude/reference/). Javadocs are available on [javadoc.io](https://javadoc.io/doc/com.anthropic/anthropic-java/2.7.0).
14+
The REST API documentation can be found on [docs.anthropic.com](https://docs.anthropic.com/claude/reference/). Javadocs are available on [javadoc.io](https://javadoc.io/doc/com.anthropic/anthropic-java/2.8.0).
1515

1616
<!-- x-release-please-end -->
1717

@@ -22,7 +22,7 @@ The REST API documentation can be found on [docs.anthropic.com](https://docs.ant
2222
### Gradle
2323

2424
```kotlin
25-
implementation("com.anthropic:anthropic-java:2.7.0")
25+
implementation("com.anthropic:anthropic-java:2.8.0")
2626
```
2727

2828
### Maven
@@ -31,7 +31,7 @@ implementation("com.anthropic:anthropic-java:2.7.0")
3131
<dependency>
3232
<groupId>com.anthropic</groupId>
3333
<artifactId>anthropic-java</artifactId>
34-
<version>2.7.0</version>
34+
<version>2.8.0</version>
3535
</dependency>
3636
```
3737

@@ -657,7 +657,7 @@ requires the `anthropic-java-bedrock` library dependency.
657657
### Gradle
658658

659659
```kotlin
660-
implementation("com.anthropic:anthropic-java-bedrock:2.7.0")
660+
implementation("com.anthropic:anthropic-java-bedrock:2.8.0")
661661
```
662662

663663
### Maven
@@ -666,7 +666,7 @@ implementation("com.anthropic:anthropic-java-bedrock:2.7.0")
666666
<dependency>
667667
<groupId>com.anthropic</groupId>
668668
<artifactId>anthropic-java-bedrock</artifactId>
669-
<version>2.7.0</version>
669+
<version>2.8.0</version>
670670
</dependency>
671671
```
672672

@@ -790,7 +790,7 @@ This support requires the `anthropic-java-vertex` library dependency.
790790
### Gradle
791791

792792
```kotlin
793-
implementation("com.anthropic:anthropic-java-vertex:2.7.0")
793+
implementation("com.anthropic:anthropic-java-vertex:2.8.0")
794794
```
795795

796796
### Maven
@@ -799,7 +799,7 @@ implementation("com.anthropic:anthropic-java-vertex:2.7.0")
799799
<dependency>
800800
<groupId>com.anthropic</groupId>
801801
<artifactId>anthropic-java-vertex</artifactId>
802-
<version>2.7.0</version>
802+
<version>2.8.0</version>
803803
</dependency>
804804
```
805805

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ repositories {
88

99
allprojects {
1010
group = "com.anthropic"
11-
version = "2.7.0" // x-release-please-version
11+
version = "2.8.0" // x-release-please-version
1212
}
1313

1414
subprojects {

0 commit comments

Comments
 (0)