Skip to content
Open
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
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "4.45.0"
".": "4.45.1"
}
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## 4.45.1 (2026-07-24)

Full Changelog: [v4.45.0...v4.45.1](https://github.com/openai/openai-java/compare/v4.45.0...v4.45.1)

### Build System

* **deps:** fix 27 consumer-isolated Dependabot alerts ([#810](https://github.com/openai/openai-java/issues/810)) ([d9eefdc](https://github.com/openai/openai-java/commit/d9eefdc7ede7b648894ca8f2aadd9626a38353c1))
* **deps:** patch consumer-neutral dependencies ([#816](https://github.com/openai/openai-java/issues/816)) ([8b79573](https://github.com/openai/openai-java/commit/8b7957326f399314a0a40027865b01ae49f0c304))

## 4.45.0 (2026-07-23)

Full Changelog: [v4.44.0...v4.45.0](https://github.com/openai/openai-java/compare/v4.44.0...v4.45.0)
Expand Down
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@

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

[![Maven Central](https://img.shields.io/maven-central/v/com.openai/openai-java)](https://central.sonatype.com/artifact/com.openai/openai-java/4.45.0)
[![javadoc](https://javadoc.io/badge2/com.openai/openai-java/4.45.0/javadoc.svg)](https://javadoc.io/doc/com.openai/openai-java/4.45.0)
[![Maven Central](https://img.shields.io/maven-central/v/com.openai/openai-java)](https://central.sonatype.com/artifact/com.openai/openai-java/4.45.1)
[![javadoc](https://javadoc.io/badge2/com.openai/openai-java/4.45.1/javadoc.svg)](https://javadoc.io/doc/com.openai/openai-java/4.45.1)

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

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

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

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.45.0).
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.45.1).

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

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

```kotlin
implementation("com.openai:openai-java:4.45.0")
implementation("com.openai:openai-java:4.45.1")
```

### Maven
Expand All @@ -33,7 +33,7 @@ implementation("com.openai:openai-java:4.45.0")
<dependency>
<groupId>com.openai</groupId>
<artifactId>openai-java</artifactId>
<version>4.45.0</version>
<version>4.45.1</version>
</dependency>
```

Expand Down Expand Up @@ -95,7 +95,7 @@ with normal AWS credentials:
<!-- x-release-please-start-version -->

```kotlin
implementation("com.openai:openai-java-bedrock:4.45.0")
implementation("com.openai:openai-java-bedrock:4.45.1")
```

<!-- x-release-please-end -->
Expand Down Expand Up @@ -1462,7 +1462,7 @@ If you're using Spring Boot, then you can use the SDK's [Spring Boot starter](ht
#### Gradle

```kotlin
implementation("com.openai:openai-java-spring-boot-starter:4.45.0")
implementation("com.openai:openai-java-spring-boot-starter:4.45.1")
```

#### Maven
Expand All @@ -1471,7 +1471,7 @@ implementation("com.openai:openai-java-spring-boot-starter:4.45.0")
<dependency>
<groupId>com.openai</groupId>
<artifactId>openai-java-spring-boot-starter</artifactId>
<version>4.45.0</version>
<version>4.45.1</version>
</dependency>
```

Expand Down
4 changes: 2 additions & 2 deletions bedrock.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ Use this artifact instead of adding AWS dependencies to the base OpenAI package
<!-- x-release-please-start-version -->

```kotlin
implementation("com.openai:openai-java-bedrock:4.45.0")
implementation("com.openai:openai-java-bedrock:4.45.1")
```

```xml
<dependency>
<groupId>com.openai</groupId>
<artifactId>openai-java-bedrock</artifactId>
<version>4.45.0</version>
<version>4.45.1</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ repositories {

allprojects {
group = "com.openai"
version = "4.45.0" // x-release-please-version
version = "4.45.1" // x-release-please-version

// Dokka 2.1.0 depends on Jackson 2.15.3. Keep its isolated build-tool classpaths on a
// secure, internally aligned Jackson release without changing the SDK's published or
Expand Down
Loading