diff --git a/.release-please-manifest.json b/.release-please-manifest.json
index 9814e7ca..23346a78 100644
--- a/.release-please-manifest.json
+++ b/.release-please-manifest.json
@@ -1,3 +1,3 @@
{
- ".": "1.8.10"
+ ".": "1.8.11"
}
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 9bf6b695..f939f26c 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
+## [1.8.11](https://github.com/microsoft/kiota-java/compare/v1.8.10...v1.8.11) (2025-11-14)
+
+
+### Bug Fixes
+
+* handle negative retry interval in RetryHandler ([f79bc62](https://github.com/microsoft/kiota-java/commit/f79bc626b2c51efa06fc7eef5f0b9ff2ee1e5048))
+* prevent negative timeout in RetryHandler causing IllegalArgumentException ([dd0be6c](https://github.com/microsoft/kiota-java/commit/dd0be6c80398bd1a80f17da18e04c57cc6c79281))
+
## [1.8.10](https://github.com/microsoft/kiota-java/compare/v1.8.9...v1.8.10) (2025-09-08)
diff --git a/README.md b/README.md
index 4ad554f1..328de4f4 100644
--- a/README.md
+++ b/README.md
@@ -22,27 +22,27 @@ In `build.gradle` in the `dependencies` section:
```Groovy
// x-release-please-start-version
-implementation 'com.microsoft.kiota:microsoft-kiota-abstractions:1.8.10'
+implementation 'com.microsoft.kiota:microsoft-kiota-abstractions:1.8.11'
// x-release-please-end
implementation 'com.microsoft.kiota:microsoft-kiota-authentication-azure:1.5.0'
// x-release-please-end
// x-release-please-start-version
-implementation 'com.microsoft.kiota:microsoft-kiota-http-okHttp:1.8.10'
+implementation 'com.microsoft.kiota:microsoft-kiota-http-okHttp:1.8.11'
// x-release-please-end
// x-release-please-start-version
-implementation 'com.microsoft.kiota:microsoft-kiota-serialization-json:1.8.10'
+implementation 'com.microsoft.kiota:microsoft-kiota-serialization-json:1.8.11'
// x-release-please-end
// x-release-please-start-version
-implementation 'com.microsoft.kiota:microsoft-kiota-serialization-text:1.8.10'
+implementation 'com.microsoft.kiota:microsoft-kiota-serialization-text:1.8.11'
// x-release-please-end
// x-release-please-start-version
-implementation 'com.microsoft.kiota:microsoft-kiota-serialization-form:1.8.10'
+implementation 'com.microsoft.kiota:microsoft-kiota-serialization-form:1.8.11'
// x-release-please-end
// x-release-please-start-version
-implementation 'com.microsoft.kiota:microsoft-kiota-serialization-multipart:1.8.10'
+implementation 'com.microsoft.kiota:microsoft-kiota-serialization-multipart:1.8.11'
// x-release-please-end
// x-release-please-start-version
-implementation 'com.microsoft.kiota:microsoft-kiota-bundle:1.8.10'
+implementation 'com.microsoft.kiota:microsoft-kiota-bundle:1.8.11'
// x-release-please-end
implementation 'jakarta.annotation:jakarta.annotation-api:2.1.1'
```
@@ -56,49 +56,49 @@ In `pom.xml` in the `dependencies` section:
com.microsoft.kiota
microsoft-kiota-abstractions
- 1.8.10
+ 1.8.11
com.microsoft.kiota
microsoft-kiota-authentication-azure
- 1.8.10
+ 1.8.11
com.microsoft.kiota
microsoft-kiota-http-okHttp
- 1.8.10
+ 1.8.11
com.microsoft.kiota
microsoft-kiota-serialization-json
- 1.8.10
+ 1.8.11
com.microsoft.kiota
microsoft-kiota-serialization-text
- 1.8.10
+ 1.8.11
com.microsoft.kiota
microsoft-kiota-serialization-form
- 1.8.10
+ 1.8.11
com.microsoft.kiota
microsoft-kiota-serialization-multipart
- 1.8.10
+ 1.8.11
diff --git a/components/http/okHttp/src/main/java/com/microsoft/kiota/http/middleware/options/UserAgentHandlerOption.java b/components/http/okHttp/src/main/java/com/microsoft/kiota/http/middleware/options/UserAgentHandlerOption.java
index 6020df6d..791d4735 100644
--- a/components/http/okHttp/src/main/java/com/microsoft/kiota/http/middleware/options/UserAgentHandlerOption.java
+++ b/components/http/okHttp/src/main/java/com/microsoft/kiota/http/middleware/options/UserAgentHandlerOption.java
@@ -13,7 +13,7 @@ public UserAgentHandlerOption() {}
private boolean enabled = true;
@Nonnull private String productName = "kiota-java";
- @Nonnull private String productVersion = "1.8.10"; // x-release-please-version
+ @Nonnull private String productVersion = "1.8.11"; // x-release-please-version
/**
* Gets the product name to be used in the user agent header
diff --git a/gradle.properties b/gradle.properties
index 2260c508..8a6b6e11 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -31,7 +31,7 @@ mavenMajorVersion = 1
mavenMinorVersion = 8
# x-release-please-end
# x-release-please-start-patch
-mavenPatchVersion = 10
+mavenPatchVersion = 11
# x-release-please-end
mavenArtifactSuffix =