Skip to content

Commit

Permalink
Merge branch 'main' into andrueastman/AllOfFix
Browse files Browse the repository at this point in the history
  • Loading branch information
baywet authored May 21, 2024
2 parents 279cb48 + 6ea9b3c commit f8fadce
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Fixes a bug where name collisions would occur in the Typescript refiner if model name also exists with the `Interface` suffix [#4382](https://github.com/microsoft/kiota/issues/4382)
- Fixes a bug where paths without operationIds would not be included in the generated plugins and ensured operationIds are cleaned up [#4642](https://github.com/microsoft/kiota/issues/4642)
- Fixes a bug where models would be duplicated in some allOf scenarios [#4191](https://github.com/microsoft/kiota/issues/4191)
- Fixes a bug where CLI Generation does not handle path parameters of type "string" and format "date", "date-time", "time", etc. [#4615](https://github.com/microsoft/kiota/issues/4615)

## [1.14.0] - 2024-05-02

Expand Down
2 changes: 1 addition & 1 deletion it/python/requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ pytest==8.2.1

pytest-asyncio==0.23.7

requests==2.32.0 ; python_version >= '3.7'
requests==2.32.1 ; python_version >= '3.7'

toml==0.10.2

Expand Down
2 changes: 1 addition & 1 deletion src/Kiota.Builder/KiotaBuilder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2403,7 +2403,7 @@ private static CodeType GetDefaultQueryParameterType()
};
}
private static CodeType GetQueryParameterType(OpenApiSchema schema) =>
new()
GetPrimitiveType(schema) ?? new()
{
IsExternal = true,
Name = schema.Items?.Type ?? schema.Type,
Expand Down

0 comments on commit f8fadce

Please sign in to comment.