Skip to content

Commit 715e875

Browse files
committed
Merge branch 'jakarta_annotations_for_java' of https://github.com/microsoft/kiota into jakarta_annotations_for_java
2 parents da166c0 + 7456cf0 commit 715e875

File tree

14 files changed

+159
-126
lines changed

14 files changed

+159
-126
lines changed

CHANGELOG.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,24 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
88
## [Unreleased]
99

1010
### Added
11-
- Added backing store support for Python. [#2858](https://github.com/microsoft/kiota/issues/2858)
1211

12+
### Changed
13+
14+
- Replace Javax annotations in favor of Jakarta annotations for Java code generation. [#2810](https://github.com/microsoft/kiota/issues/2810)
15+
16+
17+
## [1.5.1] - 2023-08-08
18+
19+
### Added
20+
21+
- Added backing store support for Python. [#2858](https://github.com/microsoft/kiota/issues/2858)
1322
- Added support for indexer parameter description. [#2978](https://github.com/microsoft/kiota/issues/2978)
1423

1524
### Changed
1625

1726
- Renamed the Shell language to CLI. [#3023](https://github.com/microsoft/kiota/issues/3023)
27+
- Fixed a bug where and extraneous indexer would be generated for CLI. [#3088](https://github.com/microsoft/kiota/issues/3088)
28+
- Fixed a bug where type specific indexers would fail to build in Go. [#3090](https://github.com/microsoft/kiota/issues/3090)
1829

1930
## [1.5.0] - 2023-08-04
2031

it/csharp/dotnet.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
<ItemGroup>
1212
<PackageReference Include="Azure.Identity" Version="1.9.0" />
13-
<PackageReference Include="Microsoft.Kiota.Abstractions" Version="1.3.0" />
13+
<PackageReference Include="Microsoft.Kiota.Abstractions" Version="1.3.1" />
1414
<PackageReference Include="Microsoft.Kiota.Authentication.Azure" Version="1.0.3" />
1515
<PackageReference Include="Microsoft.Kiota.Http.HttpClientLibrary" Version="1.0.6" />
1616
<PackageReference Include="Microsoft.Kiota.Serialization.Form" Version="1.0.1" />

it/java/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1616
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
1717

18-
<kiota-java.version>0.5.0</kiota-java.version>
18+
<kiota-java.version>0.6.0</kiota-java.version>
1919
</properties>
2020

2121
<dependencies>
@@ -54,4 +54,4 @@
5454
<build>
5555
<sourceDirectory>src</sourceDirectory>
5656
</build>
57-
</project>
57+
</project>

it/python/requirements-dev.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,9 +76,9 @@ async-timeout==4.0.2 ; python_version >= '3.6'
7676

7777
attrs==23.1.0 ; python_version >= '3.7'
7878

79-
azure-core==1.28.0 ; python_version >= '3.7'
79+
azure-core==1.29.1 ; python_version >= '3.7'
8080

81-
azure-identity==1.13.0
81+
azure-identity==1.14.0
8282

8383
cffi==1.15.1
8484

0 commit comments

Comments
 (0)