Skip to content

Commit babb353

Browse files
release: 4.9.0
1 parent 651c44f commit babb353

File tree

4 files changed

+28
-9
lines changed

4 files changed

+28
-9
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-
".": "4.8.0"
2+
".": "4.9.0"
33
}

CHANGELOG.md

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

3+
## 4.9.0 (2025-12-04)
4+
5+
Full Changelog: [v4.8.0...v4.9.0](http://github.com/openai/openai-java/compare/v4.8.0...v4.9.0)
6+
7+
### Features
8+
9+
* **api:** gpt-5.1-codex-max and responses/compact ([651c44f](http://github.com/openai/openai-java/commit/651c44f570ba07784d715a382d94b255fd3afa60))
10+
11+
12+
### Bug Fixes
13+
14+
* **api:** align types of input items / output items for typescript ([9202c69](http://github.com/openai/openai-java/commit/9202c695d939def7c9598e9ee75999b8ebd87e32))
15+
* **client:** cancel okhttp call when future cancelled ([c665e21](http://github.com/openai/openai-java/commit/c665e21c83123931baed5b21b9bbaa96a4d77495))
16+
17+
18+
### Documentation
19+
20+
* remove `$` for better copy-pasteabality ([66f7a4b](http://github.com/openai/openai-java/commit/66f7a4b3d2b88fc3e80c1552d0a0df86cd45c1ff))
21+
322
## 4.8.0 (2025-11-13)
423

524
Full Changelog: [v4.7.2...v4.8.0](http://github.com/openai/openai-java/compare/v4.7.2...v4.8.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](http://img.shields.io/maven-central/v/com.openai/openai-java)](http://central.sonatype.com/artifact/com.openai/openai-java/4.8.0)
6-
[![javadoc](http://javadoc.io/badge2/com.openai/openai-java/4.8.0/javadoc.svg)](http://javadoc.io/doc/com.openai/openai-java/4.8.0)
5+
[![Maven Central](http://img.shields.io/maven-central/v/com.openai/openai-java)](http://central.sonatype.com/artifact/com.openai/openai-java/4.9.0)
6+
[![javadoc](http://javadoc.io/badge2/com.openai/openai-java/4.9.0/javadoc.svg)](http://javadoc.io/doc/com.openai/openai-java/4.9.0)
77

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

1010
The OpenAI Java SDK provides convenient access to the [OpenAI REST API](http://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](http://platform.openai.com/docs). Javadocs are available on [javadoc.io](http://javadoc.io/doc/com.openai/openai-java/4.8.0).
14+
The REST API documentation can be found on [platform.openai.com](http://platform.openai.com/docs). Javadocs are available on [javadoc.io](http://javadoc.io/doc/com.openai/openai-java/4.9.0).
1515

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

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

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

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

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

13441344
```kotlin
1345-
implementation("com.openai:openai-java-spring-boot-starter:4.8.0")
1345+
implementation("com.openai:openai-java-spring-boot-starter:4.9.0")
13461346
```
13471347

13481348
#### Maven
@@ -1351,7 +1351,7 @@ implementation("com.openai:openai-java-spring-boot-starter:4.8.0")
13511351
<dependency>
13521352
<groupId>com.openai</groupId>
13531353
<artifactId>openai-java-spring-boot-starter</artifactId>
1354-
<version>4.8.0</version>
1354+
<version>4.9.0</version>
13551355
</dependency>
13561356
```
13571357

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

1414
subprojects {

0 commit comments

Comments
 (0)