From 1d42436af7bf114d19236e72dd45734aed6f26cd Mon Sep 17 00:00:00 2001 From: "release-please-token-provider[bot]" <225477224+release-please-token-provider[bot]@users.noreply.github.com> Date: Mon, 31 Aug 2026 18:12:10 +0000 Subject: [PATCH] chore(main): release 1.10.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 12 ++++++++ README.md | 30 +++++++++---------- .../options/UserAgentHandlerOption.java | 2 +- gradle.properties | 4 +-- 5 files changed, 31 insertions(+), 19 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 201722b2..ce4f35c2 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.9.3" + ".": "1.10.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 80c4cc71..c354ae96 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,18 @@ 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.10.0](https://github.com/microsoft/kiota-java/compare/v1.9.3...v1.10.0) (2026-08-31) + + +### Features + +* adds support for wildcard host validation ([#2170](https://github.com/microsoft/kiota-java/issues/2170)) ([1040330](https://github.com/microsoft/kiota-java/commit/104033053ccb82f5952194799a4048dd6b1b67c2)) + + +### Bug Fixes + +* replace SpotBugs suppressions with code-level test fixes ([9b8f89c](https://github.com/microsoft/kiota-java/commit/9b8f89c7680c771f59373ea58f3c3c55743156ef)) + ## [1.9.3](https://github.com/microsoft/kiota-java/compare/v1.9.2...v1.9.3) (2026-06-10) diff --git a/README.md b/README.md index ff12db23..f1149245 100644 --- a/README.md +++ b/README.md @@ -22,28 +22,28 @@ In `build.gradle` in the `dependencies` section: ```Groovy // x-release-please-start-version -implementation 'com.microsoft.kiota:microsoft-kiota-abstractions:1.9.3' +implementation 'com.microsoft.kiota:microsoft-kiota-abstractions:1.10.0' // x-release-please-end // x-release-please-start-version -implementation 'com.microsoft.kiota:microsoft-kiota-authentication-azure:1.9.3' +implementation 'com.microsoft.kiota:microsoft-kiota-authentication-azure:1.10.0' // x-release-please-end // x-release-please-start-version -implementation 'com.microsoft.kiota:microsoft-kiota-http-okHttp:1.9.3' +implementation 'com.microsoft.kiota:microsoft-kiota-http-okHttp:1.10.0' // x-release-please-end // x-release-please-start-version -implementation 'com.microsoft.kiota:microsoft-kiota-serialization-json:1.9.3' +implementation 'com.microsoft.kiota:microsoft-kiota-serialization-json:1.10.0' // x-release-please-end // x-release-please-start-version -implementation 'com.microsoft.kiota:microsoft-kiota-serialization-text:1.9.3' +implementation 'com.microsoft.kiota:microsoft-kiota-serialization-text:1.10.0' // x-release-please-end // x-release-please-start-version -implementation 'com.microsoft.kiota:microsoft-kiota-serialization-form:1.9.3' +implementation 'com.microsoft.kiota:microsoft-kiota-serialization-form:1.10.0' // x-release-please-end // x-release-please-start-version -implementation 'com.microsoft.kiota:microsoft-kiota-serialization-multipart:1.9.3' +implementation 'com.microsoft.kiota:microsoft-kiota-serialization-multipart:1.10.0' // x-release-please-end // x-release-please-start-version -implementation 'com.microsoft.kiota:microsoft-kiota-bundle:1.9.3' +implementation 'com.microsoft.kiota:microsoft-kiota-bundle:1.10.0' // x-release-please-end implementation 'jakarta.annotation:jakarta.annotation-api:2.1.1' ``` @@ -57,49 +57,49 @@ In `pom.xml` in the `dependencies` section: com.microsoft.kiota microsoft-kiota-abstractions - 1.9.3 + 1.10.0 com.microsoft.kiota microsoft-kiota-authentication-azure - 1.9.3 + 1.10.0 com.microsoft.kiota microsoft-kiota-http-okHttp - 1.9.3 + 1.10.0 com.microsoft.kiota microsoft-kiota-serialization-json - 1.9.3 + 1.10.0 com.microsoft.kiota microsoft-kiota-serialization-text - 1.9.3 + 1.10.0 com.microsoft.kiota microsoft-kiota-serialization-form - 1.9.3 + 1.10.0 com.microsoft.kiota microsoft-kiota-serialization-multipart - 1.9.3 + 1.10.0 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 0fc25be3..22cf5cfb 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.9.3"; // x-release-please-version + @Nonnull private String productVersion = "1.10.0"; // 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 3ce383ff..fcb1a7db 100644 --- a/gradle.properties +++ b/gradle.properties @@ -28,10 +28,10 @@ mavenGroupId = com.microsoft.kiota mavenMajorVersion = 1 # x-release-please-end # x-release-please-start-minor -mavenMinorVersion = 9 +mavenMinorVersion = 10 # x-release-please-end # x-release-please-start-patch -mavenPatchVersion = 3 +mavenPatchVersion = 0 # x-release-please-end mavenArtifactSuffix =