Skip to content

Commit

Permalink
Merge branch 'main' into feature/plugins
Browse files Browse the repository at this point in the history
  • Loading branch information
andrueastman authored Apr 9, 2024
2 parents 643f9ee + 8d71bf1 commit 0be5ce6
Show file tree
Hide file tree
Showing 20 changed files with 410 additions and 229 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ jobs:
- python
description:
- "./tests/Kiota.Builder.IntegrationTests/InheritingErrors.yaml"
- "./tests/Kiota.Builder.IntegrationTests/EnumHandling.yaml"
- "./tests/Kiota.Builder.IntegrationTests/NoUnderscoresInModel.yaml"
- "./tests/Kiota.Builder.IntegrationTests/ToDoApi.yaml"
- "./tests/Kiota.Builder.IntegrationTests/GeneratesUritemplateHints.yaml"
Expand All @@ -59,7 +60,7 @@ jobs:
- "apisguru::docusign.net"
- "apisguru::github.com:api.github.com"
- "apisguru::apis.guru"

steps:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v4
Expand Down
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Added

### Changed

- Changed URI template generation to reuse templates when required templates are absent across operations.

## [1.13.0] - 2024-04-04

### Added

- Added a warning message in the CLI when using preview languages. [#4316](https://github.com/microsoft/kiota/issues/4316)
- Added support for handling untyped Json content in C#,Golang, TypeScript and Java. [#2319](https://github.com/microsoft/kiota/issues/2319)
- Added TypeScript typecheck suppression to `.ts` files where unused imports cause build fail in projects which use `noUnusedLocals: true` compiler option. [#4397](https://github.com/microsoft/kiota/issues/4397)
- Fixed TypeScript generation bug when returning enums from endpoints. [#4426](https://github.com/microsoft/kiota/issues/4426)

### Changed

Expand Down
4 changes: 2 additions & 2 deletions it/java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>

<kiota-java.version>1.1.2</kiota-java.version>
<kiota-java.version>1.1.3</kiota-java.version>
</properties>

<dependencies>
Expand Down Expand Up @@ -47,7 +47,7 @@
<dependency>
<groupId>jakarta.annotation</groupId>
<artifactId>jakarta.annotation-api</artifactId>
<version>2.1.1</version>
<version>3.0.0</version>
</dependency>
</dependencies>

Expand Down
4 changes: 2 additions & 2 deletions it/python/requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ tomli-w==1.0.0 ; python_version >= '3.7'

tomlkit==0.12.4 ; python_version >= '3.7'

typing-extensions==4.10.0 ; python_version >= '3.7'
typing-extensions==4.11.0 ; python_version >= '3.7'

urllib3==2.2.1 ; python_version >= '3.7'

Expand Down Expand Up @@ -120,7 +120,7 @@ multidict==6.0.5 ; python_version >= '3.7'

portalocker==2.8.2 ; python_version >= '3.5' and platform_system == 'Windows'

pycparser==2.21
pycparser==2.22

pyjwt[crypto]==2.8.0 ; python_version >= '3.7'

Expand Down
154 changes: 77 additions & 77 deletions it/typescript/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 0be5ce6

Please sign in to comment.