Skip to content

Commit

Permalink
Merge branch 'main' into feature/typescript/composed-types
Browse files Browse the repository at this point in the history
  • Loading branch information
koros committed May 15, 2024
2 parents a7e3102 + 33257dd commit 55d9a66
Show file tree
Hide file tree
Showing 28 changed files with 864 additions and 187 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Added support for multipart form data request body in PHP. [#3029](https://github.com/microsoft/kiota/issues/3029)
- Added uri-form encoded serialization for PHP. [#2074](https://github.com/microsoft/kiota/issues/2074)
- Added information message with base URL in the CLI experience. [#4635](https://github.com/microsoft/kiota/issues/4635)

### Changed

Expand All @@ -27,6 +28,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Put opening brace after property definition on new line, if property has getter and setter [#4625](https://github.com/microsoft/kiota/issues/4625)
- Put spaces correctly around dictionary entries [#4625](https://github.com/microsoft/kiota/issues/4625)
- Remove trailing space after class definition [#4625](https://github.com/microsoft/kiota/issues/4625)
- Fixed a bug where multiple allOf entries type would not get merged if they were part of a discriminator. [#4325](https://github.com/microsoft/kiota/issues/4325)
- Fixed a bug where allOf structure with one entry and properties would not be considered as inheritance case. [#4346](https://github.com/microsoft/kiota/issues/4346)
- Fixed a bug where some allOf scenarios would be missing properties if type object wasn't set on the schema. [#4074](https://github.com/microsoft/kiota/issues/4074)
- Fixed a bug where schema with multiple allOf entries would incorrectly get merged to inherit from the first entry [#4428] (https://github.com/microsoft/kiota/issues/4428)
- Fixes constructor generation for nullable properties that are initialized as null in C#,Java and PHP
- Fixed a bug where the hash alias in typescript wasn't being generated uniformly for similar interfaces [#84](https://github.com/microsoftgraph/msgraph-beta-sdk-typescript/issues/84)

## [1.14.0] - 2024-05-02

Expand Down
1 change: 1 addition & 0 deletions CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ Resources:
- [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/)
- [Microsoft Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/)
- Contact [[email protected]](mailto:[email protected]) with questions or concerns
- Employees can reach out at [aka.ms/opensource/moderation-support](https://aka.ms/opensource/moderation-support)
6 changes: 3 additions & 3 deletions it/python/requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
-i https://pypi.org/simple

astroid==3.1.0 ; python_full_version >= '3.7.2'
astroid==3.2.0 ; python_full_version >= '3.7.2'

certifi==2024.2.2 ; python_version >= '3.6'

Expand Down Expand Up @@ -36,11 +36,11 @@ mypy-extensions==1.0.0 ; python_version >= '3.5'

packaging==24.0 ; python_version >= '3.7'

platformdirs==4.2.1 ; python_version >= '3.7'
platformdirs==4.2.2 ; python_version >= '3.7'

pluggy==1.5.0 ; python_version >= '3.7'

pylint==3.1.0
pylint==3.2.0

pytest==8.2.0

Expand Down
76 changes: 38 additions & 38 deletions it/typescript/package-lock.json

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

16 changes: 8 additions & 8 deletions it/typescript/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"prettier": "./.prettierrc.json",
"devDependencies": {
"@es-exec/esbuild-plugin-start": "^0.0.5",
"@types/node": "^20.12.11",
"@types/node": "^20.12.12",
"@typescript-eslint/eslint-plugin": "^7.7.1",
"@typescript-eslint/parser": "^7.8.0",
"esbuild": "^0.21.2",
Expand All @@ -31,13 +31,13 @@
},
"dependencies": {
"@azure/identity": "^4.2.0",
"@microsoft/kiota-abstractions": "^1.0.0-preview.51",
"@microsoft/kiota-authentication-azure": "^1.0.0-preview.46",
"@microsoft/kiota-http-fetchlibrary": "^1.0.0-preview.50",
"@microsoft/kiota-serialization-form": "^1.0.0-preview.40",
"@microsoft/kiota-serialization-json": "^1.0.0-preview.51",
"@microsoft/kiota-serialization-multipart": "^1.0.0-preview.29",
"@microsoft/kiota-serialization-text": "^1.0.0-preview.48",
"@microsoft/kiota-abstractions": "^1.0.0-preview.52",
"@microsoft/kiota-authentication-azure": "^1.0.0-preview.47",
"@microsoft/kiota-http-fetchlibrary": "^1.0.0-preview.51",
"@microsoft/kiota-serialization-form": "^1.0.0-preview.41",
"@microsoft/kiota-serialization-json": "^1.0.0-preview.52",
"@microsoft/kiota-serialization-multipart": "^1.0.0-preview.30",
"@microsoft/kiota-serialization-text": "^1.0.0-preview.49",
"express": "^4.19.2",
"node-fetch": "^2.7.0"
}
Expand Down
Loading

0 comments on commit 55d9a66

Please sign in to comment.