Skip to content

Commit 18ce129

Browse files
release: 4.35.0
1 parent 82a8527 commit 18ce129

4 files changed

Lines changed: 32 additions & 9 deletions

File tree

.release-please-manifest.json

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

CHANGELOG.md

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

3+
## 4.35.0 (2026-05-04)
4+
5+
Full Changelog: [v4.34.0...v4.35.0](https://github.com/openai/openai-java/compare/v4.34.0...v4.35.0)
6+
7+
### Features
8+
9+
* **client:** more robust error parsing ([5a1bfdc](https://github.com/openai/openai-java/commit/5a1bfdcb283dc6efc1ab5058ef96740087112288))
10+
11+
12+
### Bug Fixes
13+
14+
* **client:** match `JsonSchemaValidator` heading levels to API ([#733](https://github.com/openai/openai-java/issues/733)) ([fc57ef7](https://github.com/openai/openai-java/commit/fc57ef7963e6ebdfde0c716adc4f29d315dc9021))
15+
16+
17+
### Chores
18+
19+
* fix build error ([82a8527](https://github.com/openai/openai-java/commit/82a85274f613aad7ae277765b12bc3469832e1b1))
20+
21+
22+
### Documentation
23+
24+
* clarify forwards compat behavior ([d44f466](https://github.com/openai/openai-java/commit/d44f4664a550f4d34b2d1b14c7f376d1047514e0))
25+
326
## 4.34.0 (2026-05-01)
427

528
Full Changelog: [v4.33.0...v4.34.0](https://github.com/openai/openai-java/compare/v4.33.0...v4.34.0)

README.md

Lines changed: 7 additions & 7 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.openai/openai-java)](https://central.sonatype.com/artifact/com.openai/openai-java/4.34.0)
6-
[![javadoc](https://javadoc.io/badge2/com.openai/openai-java/4.34.0/javadoc.svg)](https://javadoc.io/doc/com.openai/openai-java/4.34.0)
5+
[![Maven Central](https://img.shields.io/maven-central/v/com.openai/openai-java)](https://central.sonatype.com/artifact/com.openai/openai-java/4.35.0)
6+
[![javadoc](https://javadoc.io/badge2/com.openai/openai-java/4.35.0/javadoc.svg)](https://javadoc.io/doc/com.openai/openai-java/4.35.0)
77

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

1010
The OpenAI Java SDK provides convenient access to the [OpenAI REST API](https://platform.openai.com/docs) from applications written in Java.
1111

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

14-
The REST API documentation can be found on [platform.openai.com](https://platform.openai.com/docs). Javadocs are available on [javadoc.io](https://javadoc.io/doc/com.openai/openai-java/4.34.0).
14+
The REST API documentation can be found on [platform.openai.com](https://platform.openai.com/docs). Javadocs are available on [javadoc.io](https://javadoc.io/doc/com.openai/openai-java/4.35.0).
1515

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

@@ -24,7 +24,7 @@ The REST API documentation can be found on [platform.openai.com](https://platfor
2424
### Gradle
2525

2626
```kotlin
27-
implementation("com.openai:openai-java:4.34.0")
27+
implementation("com.openai:openai-java:4.35.0")
2828
```
2929

3030
### Maven
@@ -33,7 +33,7 @@ implementation("com.openai:openai-java:4.34.0")
3333
<dependency>
3434
<groupId>com.openai</groupId>
3535
<artifactId>openai-java</artifactId>
36-
<version>4.34.0</version>
36+
<version>4.35.0</version>
3737
</dependency>
3838
```
3939

@@ -1421,7 +1421,7 @@ If you're using Spring Boot, then you can use the SDK's [Spring Boot starter](ht
14211421
#### Gradle
14221422

14231423
```kotlin
1424-
implementation("com.openai:openai-java-spring-boot-starter:4.34.0")
1424+
implementation("com.openai:openai-java-spring-boot-starter:4.35.0")
14251425
```
14261426

14271427
#### Maven
@@ -1430,7 +1430,7 @@ implementation("com.openai:openai-java-spring-boot-starter:4.34.0")
14301430
<dependency>
14311431
<groupId>com.openai</groupId>
14321432
<artifactId>openai-java-spring-boot-starter</artifactId>
1433-
<version>4.34.0</version>
1433+
<version>4.35.0</version>
14341434
</dependency>
14351435
```
14361436

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.openai"
11-
version = "4.34.0" // x-release-please-version
11+
version = "4.35.0" // x-release-please-version
1212
}
1313

1414
subprojects {

0 commit comments

Comments
 (0)