diff --git a/.release-please-manifest.json b/.release-please-manifest.json index ed94d9d8c..1fd79dd24 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.45.0" + ".": "4.45.1" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index e5fd13d90..fc8172d12 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/README.md b/README.md index 63157594d..cb8410fbb 100644 --- a/README.md +++ b/README.md @@ -2,8 +2,8 @@ -[![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) @@ -11,7 +11,7 @@ The OpenAI Java SDK provides convenient access to the [OpenAI REST API](https:// -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). @@ -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 @@ -33,7 +33,7 @@ implementation("com.openai:openai-java:4.45.0") com.openai openai-java - 4.45.0 + 4.45.1 ``` @@ -95,7 +95,7 @@ with normal AWS credentials: ```kotlin -implementation("com.openai:openai-java-bedrock:4.45.0") +implementation("com.openai:openai-java-bedrock:4.45.1") ``` @@ -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 @@ -1471,7 +1471,7 @@ implementation("com.openai:openai-java-spring-boot-starter:4.45.0") com.openai openai-java-spring-boot-starter - 4.45.0 + 4.45.1 ``` diff --git a/bedrock.md b/bedrock.md index e3ed928f4..3e56c8f31 100644 --- a/bedrock.md +++ b/bedrock.md @@ -11,14 +11,14 @@ Use this artifact instead of adding AWS dependencies to the base OpenAI package ```kotlin -implementation("com.openai:openai-java-bedrock:4.45.0") +implementation("com.openai:openai-java-bedrock:4.45.1") ``` ```xml com.openai openai-java-bedrock - 4.45.0 + 4.45.1 ``` diff --git a/build.gradle.kts b/build.gradle.kts index b2a975228..4c2dfa202 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -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