Skip to content
Merged
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 @@
{
".": "1.8.12"
".": "1.9.0"
}
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ 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.9.0](https://github.com/microsoft/kiota-java/compare/v1.8.12...v1.9.0) (2025-11-20)


### Features

* allows customization of JSON serialization through GSON TypeAdapters ([41d7c77](https://github.com/microsoft/kiota-java/commit/41d7c77b4f3a90bb9ab5b61ff602c4b20280e750))

## [1.8.12](https://github.com/microsoft/kiota-java/compare/v1.8.11...v1.8.12) (2025-11-18)


Expand Down
30 changes: 15 additions & 15 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.8.12'
implementation 'com.microsoft.kiota:microsoft-kiota-abstractions:1.9.0'
// x-release-please-end
// x-release-please-start-version
implementation 'com.microsoft.kiota:microsoft-kiota-authentication-azure:1.8.12'
implementation 'com.microsoft.kiota:microsoft-kiota-authentication-azure:1.9.0'
// x-release-please-end
// x-release-please-start-version
implementation 'com.microsoft.kiota:microsoft-kiota-http-okHttp:1.8.12'
implementation 'com.microsoft.kiota:microsoft-kiota-http-okHttp:1.9.0'
// x-release-please-end
// x-release-please-start-version
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-json:1.8.12'
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-json:1.9.0'
// x-release-please-end
// x-release-please-start-version
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-text:1.8.12'
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-text:1.9.0'
// x-release-please-end
// x-release-please-start-version
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-form:1.8.12'
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-form:1.9.0'
// x-release-please-end
// x-release-please-start-version
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-multipart:1.8.12'
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-multipart:1.9.0'
// x-release-please-end
// x-release-please-start-version
implementation 'com.microsoft.kiota:microsoft-kiota-bundle:1.8.12'
implementation 'com.microsoft.kiota:microsoft-kiota-bundle:1.9.0'
// x-release-please-end
implementation 'jakarta.annotation:jakarta.annotation-api:2.1.1'
```
Expand All @@ -57,49 +57,49 @@ In `pom.xml` in the `dependencies` section:
<groupId>com.microsoft.kiota</groupId>
<artifactId>microsoft-kiota-abstractions</artifactId>
<!--x-release-please-start-version-->
<version>1.8.12</version>
<version>1.9.0</version>
<!--x-release-please-end-->
</dependency>
<dependency>
<groupId>com.microsoft.kiota</groupId>
<artifactId>microsoft-kiota-authentication-azure</artifactId>
<!--x-release-please-start-version-->
<version>1.8.12</version>
<version>1.9.0</version>
<!--x-release-please-end-->
</dependency>
<dependency>
<groupId>com.microsoft.kiota</groupId>
<artifactId>microsoft-kiota-http-okHttp</artifactId>
<!--x-release-please-start-version-->
<version>1.8.12</version>
<version>1.9.0</version>
<!--x-release-please-end-->
</dependency>
<dependency>
<groupId>com.microsoft.kiota</groupId>
<artifactId>microsoft-kiota-serialization-json</artifactId>
<!--x-release-please-start-version-->
<version>1.8.12</version>
<version>1.9.0</version>
<!--x-release-please-end-->
</dependency>
<dependency>
<groupId>com.microsoft.kiota</groupId>
<artifactId>microsoft-kiota-serialization-text</artifactId>
<!--x-release-please-start-version-->
<version>1.8.12</version>
<version>1.9.0</version>
<!--x-release-please-end-->
</dependency>
<dependency>
<groupId>com.microsoft.kiota</groupId>
<artifactId>microsoft-kiota-serialization-form</artifactId>
<!--x-release-please-start-version-->
<version>1.8.12</version>
<version>1.9.0</version>
<!--x-release-please-end-->
</dependency>
<dependency>
<groupId>com.microsoft.kiota</groupId>
<artifactId>microsoft-kiota-serialization-multipart</artifactId>
<!--x-release-please-start-version-->
<version>1.8.12</version>
<version>1.9.0</version>
<!--x-release-please-end-->
</dependency>
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public UserAgentHandlerOption() {}

private boolean enabled = true;
@Nonnull private String productName = "kiota-java";
@Nonnull private String productVersion = "1.8.12"; // x-release-please-version
@Nonnull private String productVersion = "1.9.0"; // x-release-please-version

/**
* Gets the product name to be used in the user agent header
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ mavenGroupId = com.microsoft.kiota
mavenMajorVersion = 1
# x-release-please-end
# x-release-please-start-minor
mavenMinorVersion = 8
mavenMinorVersion = 9
# x-release-please-end
# x-release-please-start-patch
mavenPatchVersion = 12
mavenPatchVersion = 0
# x-release-please-end
mavenArtifactSuffix =

Expand Down