Skip to content

Commit 31168fa

Browse files
authored
Merge pull request #2059 from microsoft/release-please--branches--main
chore(main): release 1.9.0
2 parents 41d7c77 + f78ba83 commit 31168fa

File tree

5 files changed

+26
-19
lines changed

5 files changed

+26
-19
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "1.8.12"
2+
".": "1.9.0"
33
}

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [1.9.0](https://github.com/microsoft/kiota-java/compare/v1.8.12...v1.9.0) (2025-11-20)
9+
10+
11+
### Features
12+
13+
* allows customization of JSON serialization through GSON TypeAdapters ([41d7c77](https://github.com/microsoft/kiota-java/commit/41d7c77b4f3a90bb9ab5b61ff602c4b20280e750))
14+
815
## [1.8.12](https://github.com/microsoft/kiota-java/compare/v1.8.11...v1.8.12) (2025-11-18)
916

1017

README.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -22,28 +22,28 @@ In `build.gradle` in the `dependencies` section:
2222

2323
```Groovy
2424
// x-release-please-start-version
25-
implementation 'com.microsoft.kiota:microsoft-kiota-abstractions:1.8.12'
25+
implementation 'com.microsoft.kiota:microsoft-kiota-abstractions:1.9.0'
2626
// x-release-please-end
2727
// x-release-please-start-version
28-
implementation 'com.microsoft.kiota:microsoft-kiota-authentication-azure:1.8.12'
28+
implementation 'com.microsoft.kiota:microsoft-kiota-authentication-azure:1.9.0'
2929
// x-release-please-end
3030
// x-release-please-start-version
31-
implementation 'com.microsoft.kiota:microsoft-kiota-http-okHttp:1.8.12'
31+
implementation 'com.microsoft.kiota:microsoft-kiota-http-okHttp:1.9.0'
3232
// x-release-please-end
3333
// x-release-please-start-version
34-
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-json:1.8.12'
34+
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-json:1.9.0'
3535
// x-release-please-end
3636
// x-release-please-start-version
37-
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-text:1.8.12'
37+
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-text:1.9.0'
3838
// x-release-please-end
3939
// x-release-please-start-version
40-
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-form:1.8.12'
40+
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-form:1.9.0'
4141
// x-release-please-end
4242
// x-release-please-start-version
43-
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-multipart:1.8.12'
43+
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-multipart:1.9.0'
4444
// x-release-please-end
4545
// x-release-please-start-version
46-
implementation 'com.microsoft.kiota:microsoft-kiota-bundle:1.8.12'
46+
implementation 'com.microsoft.kiota:microsoft-kiota-bundle:1.9.0'
4747
// x-release-please-end
4848
implementation 'jakarta.annotation:jakarta.annotation-api:2.1.1'
4949
```
@@ -57,49 +57,49 @@ In `pom.xml` in the `dependencies` section:
5757
<groupId>com.microsoft.kiota</groupId>
5858
<artifactId>microsoft-kiota-abstractions</artifactId>
5959
<!--x-release-please-start-version-->
60-
<version>1.8.12</version>
60+
<version>1.9.0</version>
6161
<!--x-release-please-end-->
6262
</dependency>
6363
<dependency>
6464
<groupId>com.microsoft.kiota</groupId>
6565
<artifactId>microsoft-kiota-authentication-azure</artifactId>
6666
<!--x-release-please-start-version-->
67-
<version>1.8.12</version>
67+
<version>1.9.0</version>
6868
<!--x-release-please-end-->
6969
</dependency>
7070
<dependency>
7171
<groupId>com.microsoft.kiota</groupId>
7272
<artifactId>microsoft-kiota-http-okHttp</artifactId>
7373
<!--x-release-please-start-version-->
74-
<version>1.8.12</version>
74+
<version>1.9.0</version>
7575
<!--x-release-please-end-->
7676
</dependency>
7777
<dependency>
7878
<groupId>com.microsoft.kiota</groupId>
7979
<artifactId>microsoft-kiota-serialization-json</artifactId>
8080
<!--x-release-please-start-version-->
81-
<version>1.8.12</version>
81+
<version>1.9.0</version>
8282
<!--x-release-please-end-->
8383
</dependency>
8484
<dependency>
8585
<groupId>com.microsoft.kiota</groupId>
8686
<artifactId>microsoft-kiota-serialization-text</artifactId>
8787
<!--x-release-please-start-version-->
88-
<version>1.8.12</version>
88+
<version>1.9.0</version>
8989
<!--x-release-please-end-->
9090
</dependency>
9191
<dependency>
9292
<groupId>com.microsoft.kiota</groupId>
9393
<artifactId>microsoft-kiota-serialization-form</artifactId>
9494
<!--x-release-please-start-version-->
95-
<version>1.8.12</version>
95+
<version>1.9.0</version>
9696
<!--x-release-please-end-->
9797
</dependency>
9898
<dependency>
9999
<groupId>com.microsoft.kiota</groupId>
100100
<artifactId>microsoft-kiota-serialization-multipart</artifactId>
101101
<!--x-release-please-start-version-->
102-
<version>1.8.12</version>
102+
<version>1.9.0</version>
103103
<!--x-release-please-end-->
104104
</dependency>
105105
<dependency>

components/http/okHttp/src/main/java/com/microsoft/kiota/http/middleware/options/UserAgentHandlerOption.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public UserAgentHandlerOption() {}
1313

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

1818
/**
1919
* Gets the product name to be used in the user agent header

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@ mavenGroupId = com.microsoft.kiota
2828
mavenMajorVersion = 1
2929
# x-release-please-end
3030
# x-release-please-start-minor
31-
mavenMinorVersion = 8
31+
mavenMinorVersion = 9
3232
# x-release-please-end
3333
# x-release-please-start-patch
34-
mavenPatchVersion = 12
34+
mavenPatchVersion = 0
3535
# x-release-please-end
3636
mavenArtifactSuffix =
3737

0 commit comments

Comments
 (0)