From 21664965a09792132ec69530dd78d2e61fb91f09 Mon Sep 17 00:00:00 2001 From: Andrew Omondi Date: Tue, 5 Nov 2024 16:13:38 +0300 Subject: [PATCH 1/4] fix release tool signing --- .azure-pipelines/ci-build.yml | 3 +++ scripts/enable-shims-for-packaging.ps1 | 13 +++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 scripts/enable-shims-for-packaging.ps1 diff --git a/.azure-pipelines/ci-build.yml b/.azure-pipelines/ci-build.yml index 6dc9012172..6e85d6d10c 100644 --- a/.azure-pipelines/ci-build.yml +++ b/.azure-pipelines/ci-build.yml @@ -163,6 +163,9 @@ extends: - pwsh: $(Build.SourcesDirectory)/scripts/get-prerelease-version.ps1 -currentBranch $(Build.SourceBranch) -previewBranch ${{ parameters.previewBranch }} -excludeHeadingDash displayName: "Set version suffix" + - pwsh: $(Build.SourcesDirectory)/scripts/enable-shims-for-packaging.ps1" + displayName: "Add PackAsToolShimRuntimeIdentifiers attributes for tool packaging" + - pwsh: $(Build.SourcesDirectory)/scripts/update-version-suffix-for-source-generator.ps1 -versionSuffix "$(versionSuffix)" displayName: "Set version suffix in csproj for generators" diff --git a/scripts/enable-shims-for-packaging.ps1 b/scripts/enable-shims-for-packaging.ps1 new file mode 100644 index 0000000000..cd01e308c1 --- /dev/null +++ b/scripts/enable-shims-for-packaging.ps1 @@ -0,0 +1,13 @@ +# This script enables the shims for packaging the project as a tool +$csprojPath = Join-Path $PSScriptRoot "../src/kiota/kiota.csproj" + +$xml = [Xml] (Get-Content $csprojPath) + +$shimIdentifiers = $xml.CreateElement("PackAsToolShimRuntimeIdentifiers") +$shimIdentifiers.InnerText = "win-x64;win-x86;osx-x64" + +$rootPropertyGroup = $xml.Project.PropertyGroup[0] +$rootPropertyGroup.AppendChild($shimIdentifiers) + +#save xml to csproj +$xml.Save($csprojPath) \ No newline at end of file From 998eb696f66fc317ef466c602da027a2e750dbad Mon Sep 17 00:00:00 2001 From: Andrew Omondi Date: Tue, 5 Nov 2024 16:39:59 +0300 Subject: [PATCH 2/4] fix typo in ci build. update changelog --- .azure-pipelines/ci-build.yml | 2 +- CHANGELOG.md | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.azure-pipelines/ci-build.yml b/.azure-pipelines/ci-build.yml index 6e85d6d10c..898c03946a 100644 --- a/.azure-pipelines/ci-build.yml +++ b/.azure-pipelines/ci-build.yml @@ -163,7 +163,7 @@ extends: - pwsh: $(Build.SourcesDirectory)/scripts/get-prerelease-version.ps1 -currentBranch $(Build.SourceBranch) -previewBranch ${{ parameters.previewBranch }} -excludeHeadingDash displayName: "Set version suffix" - - pwsh: $(Build.SourcesDirectory)/scripts/enable-shims-for-packaging.ps1" + - pwsh: $(Build.SourcesDirectory)/scripts/enable-shims-for-packaging.ps1 displayName: "Add PackAsToolShimRuntimeIdentifiers attributes for tool packaging" - pwsh: $(Build.SourcesDirectory)/scripts/update-version-suffix-for-source-generator.ps1 -versionSuffix "$(versionSuffix)" diff --git a/CHANGELOG.md b/CHANGELOG.md index 171110e1f6..950b1ccea1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,9 +12,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added ### Changed + - Fixed python generation client serailization failure str being quoted as "str" - Fixed Issue with primitive values being stringified in python python. [#5417](https://github.com/microsoft/kiota/issues/5417) - - Fixed an issue where multipart request content would be ignored if other unstructured content was present in the description. [#5638](https://github.com/microsoft/kiota/issues/5638) - Fixed an issue where when generating Go code the deserializer for unions was using `CodeClass` as a filter and not `CodeInterface`. [#4844](https://github.com/microsoft/kiota/issues/4844) - Fixes mapping of `int16` format to the `integer` type rather than `double` when the type is `integer` or `number` [#5611](https://github.com/microsoft/kiota/issues/5611) @@ -23,6 +23,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Fixed a bug where the type name for inherited inline models would be incorrect. [#5610](https://github.com/microsoft/kiota/issues/5610) - Fixes typing inconsistencies in generated code and libraries in Python [kiota-python#333](https://github.com/microsoft/kiota-python/issues/333) - Fixes generation of superfluous fields for Models with discriminator due to refiners adding the same properties to the same model [#4178](https://github.com/microsoft/kiota/issues/4178). +- Fixes unsigned shim binary when installed as dotnet tool [#5650](https://github.com/microsoft/kiota/issues/5650). ## [1.19.1] - 2024-10-11 From 6580293fb03bd626fda9338238a570bc1a2afaf9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 7 Nov 2024 08:43:14 +0000 Subject: [PATCH 3/4] chore(deps): bump the kiota-dependencies group Bumps the kiota-dependencies group in /it/typescript with 7 updates: | Package | From | To | | --- | --- | --- | | [@microsoft/kiota-abstractions](https://github.com/microsoft/kiota-typescript) | `1.0.0-preview.73` | `1.0.0-preview.74` | | [@microsoft/kiota-authentication-azure](https://github.com/microsoft/kiota-typescript) | `1.0.0-preview.73` | `1.0.0-preview.74` | | [@microsoft/kiota-http-fetchlibrary](https://github.com/microsoft/kiota-typescript) | `1.0.0-preview.73` | `1.0.0-preview.74` | | [@microsoft/kiota-serialization-form](https://github.com/microsoft/kiota-typescript) | `1.0.0-preview.73` | `1.0.0-preview.74` | | [@microsoft/kiota-serialization-json](https://github.com/microsoft/kiota-typescript) | `1.0.0-preview.73` | `1.0.0-preview.74` | | [@microsoft/kiota-serialization-multipart](https://github.com/microsoft/kiota-typescript) | `1.0.0-preview.73` | `1.0.0-preview.74` | | [@microsoft/kiota-serialization-text](https://github.com/microsoft-typescript/kiota) | `1.0.0-preview.73` | `1.0.0-preview.74` | Updates `@microsoft/kiota-abstractions` from 1.0.0-preview.73 to 1.0.0-preview.74 - [Release notes](https://github.com/microsoft/kiota-typescript/releases) - [Changelog](https://github.com/microsoft/kiota-typescript/blob/main/CHANGELOG.md) - [Commits](https://github.com/microsoft/kiota-typescript/compare/@microsoft/kiota-abstractions@1.0.0-preview.73...@microsoft/kiota-abstractions@1.0.0-preview.74) Updates `@microsoft/kiota-authentication-azure` from 1.0.0-preview.73 to 1.0.0-preview.74 - [Release notes](https://github.com/microsoft/kiota-typescript/releases) - [Changelog](https://github.com/microsoft/kiota-typescript/blob/main/CHANGELOG.md) - [Commits](https://github.com/microsoft/kiota-typescript/compare/@microsoft/kiota-authentication-azure@1.0.0-preview.73...@microsoft/kiota-authentication-azure@1.0.0-preview.74) Updates `@microsoft/kiota-http-fetchlibrary` from 1.0.0-preview.73 to 1.0.0-preview.74 - [Release notes](https://github.com/microsoft/kiota-typescript/releases) - [Changelog](https://github.com/microsoft/kiota-typescript/blob/main/CHANGELOG.md) - [Commits](https://github.com/microsoft/kiota-typescript/compare/@microsoft/kiota-http-fetchlibrary@1.0.0-preview.73...@microsoft/kiota-http-fetchlibrary@1.0.0-preview.74) Updates `@microsoft/kiota-serialization-form` from 1.0.0-preview.73 to 1.0.0-preview.74 - [Release notes](https://github.com/microsoft/kiota-typescript/releases) - [Changelog](https://github.com/microsoft/kiota-typescript/blob/main/CHANGELOG.md) - [Commits](https://github.com/microsoft/kiota-typescript/compare/@microsoft/kiota-serialization-form@1.0.0-preview.73...@microsoft/kiota-serialization-form@1.0.0-preview.74) Updates `@microsoft/kiota-serialization-json` from 1.0.0-preview.73 to 1.0.0-preview.74 - [Release notes](https://github.com/microsoft/kiota-typescript/releases) - [Changelog](https://github.com/microsoft/kiota-typescript/blob/main/CHANGELOG.md) - [Commits](https://github.com/microsoft/kiota-typescript/compare/@microsoft/kiota-serialization-json@1.0.0-preview.73...@microsoft/kiota-serialization-json@1.0.0-preview.74) Updates `@microsoft/kiota-serialization-multipart` from 1.0.0-preview.73 to 1.0.0-preview.74 - [Release notes](https://github.com/microsoft/kiota-typescript/releases) - [Changelog](https://github.com/microsoft/kiota-typescript/blob/main/CHANGELOG.md) - [Commits](https://github.com/microsoft/kiota-typescript/compare/@microsoft/kiota-serialization-multipart@1.0.0-preview.73...@microsoft/kiota-serialization-multipart@1.0.0-preview.74) Updates `@microsoft/kiota-serialization-text` from 1.0.0-preview.73 to 1.0.0-preview.74 - [Commits](https://github.com/microsoft-typescript/kiota/commits) --- updated-dependencies: - dependency-name: "@microsoft/kiota-abstractions" dependency-type: direct:production update-type: version-update:semver-patch dependency-group: kiota-dependencies - dependency-name: "@microsoft/kiota-authentication-azure" dependency-type: direct:production update-type: version-update:semver-patch dependency-group: kiota-dependencies - dependency-name: "@microsoft/kiota-http-fetchlibrary" dependency-type: direct:production update-type: version-update:semver-patch dependency-group: kiota-dependencies - dependency-name: "@microsoft/kiota-serialization-form" dependency-type: direct:production update-type: version-update:semver-patch dependency-group: kiota-dependencies - dependency-name: "@microsoft/kiota-serialization-json" dependency-type: direct:production update-type: version-update:semver-patch dependency-group: kiota-dependencies - dependency-name: "@microsoft/kiota-serialization-multipart" dependency-type: direct:production update-type: version-update:semver-patch dependency-group: kiota-dependencies - dependency-name: "@microsoft/kiota-serialization-text" dependency-type: direct:production update-type: version-update:semver-patch dependency-group: kiota-dependencies ... Signed-off-by: dependabot[bot] --- it/typescript/package-lock.json | 79 ++++++++++++++------------------- it/typescript/package.json | 14 +++--- 2 files changed, 41 insertions(+), 52 deletions(-) diff --git a/it/typescript/package-lock.json b/it/typescript/package-lock.json index c53ba2668b..85a1aede3e 100644 --- a/it/typescript/package-lock.json +++ b/it/typescript/package-lock.json @@ -10,13 +10,13 @@ "license": "MIT", "dependencies": { "@azure/identity": "^4.5.0", - "@microsoft/kiota-abstractions": "^1.0.0-preview.73", - "@microsoft/kiota-authentication-azure": "^1.0.0-preview.73", - "@microsoft/kiota-http-fetchlibrary": "^1.0.0-preview.73", - "@microsoft/kiota-serialization-form": "^1.0.0-preview.73", - "@microsoft/kiota-serialization-json": "^1.0.0-preview.73", - "@microsoft/kiota-serialization-multipart": "^1.0.0-preview.73", - "@microsoft/kiota-serialization-text": "^1.0.0-preview.73", + "@microsoft/kiota-abstractions": "^1.0.0-preview.74", + "@microsoft/kiota-authentication-azure": "^1.0.0-preview.74", + "@microsoft/kiota-http-fetchlibrary": "^1.0.0-preview.74", + "@microsoft/kiota-serialization-form": "^1.0.0-preview.74", + "@microsoft/kiota-serialization-json": "^1.0.0-preview.74", + "@microsoft/kiota-serialization-multipart": "^1.0.0-preview.74", + "@microsoft/kiota-serialization-text": "^1.0.0-preview.74", "express": "^5.0.1", "node-fetch": "^2.7.0" }, @@ -766,13 +766,12 @@ } }, "node_modules/@microsoft/kiota-abstractions": { - "version": "1.0.0-preview.73", - "resolved": "https://registry.npmjs.org/@microsoft/kiota-abstractions/-/kiota-abstractions-1.0.0-preview.73.tgz", - "integrity": "sha512-tBa+NDUgdhNBUqIWJ4EkmUz/sPI78iUZwPJtgFXQ6/TcyXrsC0O5rMTwWGsAH0Wzy/zAPHF14PXLs5biH6Yjgg==", + "version": "1.0.0-preview.74", + "resolved": "https://registry.npmjs.org/@microsoft/kiota-abstractions/-/kiota-abstractions-1.0.0-preview.74.tgz", + "integrity": "sha512-pzn91PIvWXamLZ0z9wm6V5AORF8TUH/oBYAhEwjO0qEBp7daftU3GAAlo5pTJnA1jymRBBe21HRIVLFEMOEmPw==", "dependencies": { "@opentelemetry/api": "^1.7.0", "@std-uritemplate/std-uritemplate": "^1.0.1", - "guid-typescript": "^1.0.9", "tinyduration": "^3.3.0", "tslib": "^2.6.2", "uuid": "^11.0.2" @@ -791,64 +790,59 @@ } }, "node_modules/@microsoft/kiota-authentication-azure": { - "version": "1.0.0-preview.73", - "resolved": "https://registry.npmjs.org/@microsoft/kiota-authentication-azure/-/kiota-authentication-azure-1.0.0-preview.73.tgz", - "integrity": "sha512-pNBKh52CblriTGOlGEnH6nJKp68Fhx3ECNAcKTj3MJRVRG+dFmQTynKFSftVNnyhax2p3sL4FL/okhGtlvoICQ==", + "version": "1.0.0-preview.74", + "resolved": "https://registry.npmjs.org/@microsoft/kiota-authentication-azure/-/kiota-authentication-azure-1.0.0-preview.74.tgz", + "integrity": "sha512-QxrJQ1kIiwJ6mOisjGdCHtiSIs0YZLiljVDxsgyg39N1mP3R0DLpufOdAPhW+AyVDojZKPYrdj8LepKY32IyRQ==", "dependencies": { "@azure/core-auth": "^1.5.0", - "@microsoft/kiota-abstractions": "^1.0.0-preview.73", + "@microsoft/kiota-abstractions": "^1.0.0-preview.74", "@opentelemetry/api": "^1.7.0", "tslib": "^2.6.2" } }, "node_modules/@microsoft/kiota-http-fetchlibrary": { - "version": "1.0.0-preview.73", - "resolved": "https://registry.npmjs.org/@microsoft/kiota-http-fetchlibrary/-/kiota-http-fetchlibrary-1.0.0-preview.73.tgz", - "integrity": "sha512-KZke8uHHSAZxUGTvdCpHM8hvTdXDfbXHzKL0Fj4vfAYTG/05ln2hrlM3VEpQ0hu/RO3uaL77nBn3FfJVKJF7zg==", + "version": "1.0.0-preview.74", + "resolved": "https://registry.npmjs.org/@microsoft/kiota-http-fetchlibrary/-/kiota-http-fetchlibrary-1.0.0-preview.74.tgz", + "integrity": "sha512-jEJbr+m64tA8KhwIyPEwPH/xzkNX8iXLT9oipam0UinIFEviFTh1be6QUEhMO0O/ZABVHRzbz433jlQTR3mTAQ==", "dependencies": { - "@microsoft/kiota-abstractions": "^1.0.0-preview.73", + "@microsoft/kiota-abstractions": "^1.0.0-preview.74", "@opentelemetry/api": "^1.7.0", - "guid-typescript": "^1.0.9", "tslib": "^2.6.2" } }, "node_modules/@microsoft/kiota-serialization-form": { - "version": "1.0.0-preview.73", - "resolved": "https://registry.npmjs.org/@microsoft/kiota-serialization-form/-/kiota-serialization-form-1.0.0-preview.73.tgz", - "integrity": "sha512-6KnU4w91EfEKY51LWEJvaYqyoRAeKecbNYFubZKr+FCxNdaQL4njd7i7NM0Y6GKhWz57BZuw8ERz0Q7ijLyOeQ==", + "version": "1.0.0-preview.74", + "resolved": "https://registry.npmjs.org/@microsoft/kiota-serialization-form/-/kiota-serialization-form-1.0.0-preview.74.tgz", + "integrity": "sha512-KNjwVNG0UHWKO8vLEq6KUSjObKdIhpY6wM7J6F/pm5brh4PVGPljsTE3GvY4YPcXjUSuBvGTmPKWV2c+zCmNqQ==", "dependencies": { - "@microsoft/kiota-abstractions": "^1.0.0-preview.73", - "guid-typescript": "^1.0.9", + "@microsoft/kiota-abstractions": "^1.0.0-preview.74", "tslib": "^2.6.2" } }, "node_modules/@microsoft/kiota-serialization-json": { - "version": "1.0.0-preview.73", - "resolved": "https://registry.npmjs.org/@microsoft/kiota-serialization-json/-/kiota-serialization-json-1.0.0-preview.73.tgz", - "integrity": "sha512-jist7xQXtf6OWKv1dWcQGvd0I1Kh4XAp6RptGFxVcEsD+PWu0Hwvu3StmLY2S5p123mMVF2sOJidviZAe33uVA==", + "version": "1.0.0-preview.74", + "resolved": "https://registry.npmjs.org/@microsoft/kiota-serialization-json/-/kiota-serialization-json-1.0.0-preview.74.tgz", + "integrity": "sha512-faXKOBEwDxGCkJNFV7zGQUia7tj964QVPtmLQ4t8oHv7Eg0uSDga7LHoiL+CqYjQsYSNdzlOXSpLtwYp7vkk+A==", "dependencies": { - "@microsoft/kiota-abstractions": "^1.0.0-preview.73", - "guid-typescript": "^1.0.9", + "@microsoft/kiota-abstractions": "^1.0.0-preview.74", "tslib": "^2.6.2" } }, "node_modules/@microsoft/kiota-serialization-multipart": { - "version": "1.0.0-preview.73", - "resolved": "https://registry.npmjs.org/@microsoft/kiota-serialization-multipart/-/kiota-serialization-multipart-1.0.0-preview.73.tgz", - "integrity": "sha512-cI9OdYLPjdbGA2NyOpZ6H6IO+yFxs5kCGAIOt41BHdcKawfz36h40sPDoQPsxs7FBuJ7kpoTx5QmBTrLrb7Zvw==", + "version": "1.0.0-preview.74", + "resolved": "https://registry.npmjs.org/@microsoft/kiota-serialization-multipart/-/kiota-serialization-multipart-1.0.0-preview.74.tgz", + "integrity": "sha512-r5pacUaynVn5p3tdD41ifRXXBQKq36/FCev3sJLeHOH6IA4lcRcVwoI9DZtXZrncyuqZ2rPeEdLIgBgjYSra4Q==", "dependencies": { - "@microsoft/kiota-abstractions": "^1.0.0-preview.73", - "guid-typescript": "^1.0.9", + "@microsoft/kiota-abstractions": "^1.0.0-preview.74", "tslib": "^2.6.2" } }, "node_modules/@microsoft/kiota-serialization-text": { - "version": "1.0.0-preview.73", - "resolved": "https://registry.npmjs.org/@microsoft/kiota-serialization-text/-/kiota-serialization-text-1.0.0-preview.73.tgz", - "integrity": "sha512-Lqta3aX1ATTiAkhrbcm/7PibZ8Og7eTwheLAuuIlpYypuUvmXsqe8siePn9EaLuELzLzKE0EaGw9XDsSme+Uxg==", + "version": "1.0.0-preview.74", + "resolved": "https://registry.npmjs.org/@microsoft/kiota-serialization-text/-/kiota-serialization-text-1.0.0-preview.74.tgz", + "integrity": "sha512-A3RqoNymLyhH8yG4GbhVma/BYJ1ivLI28Y9yF895NKoIou8nGegsF4qseJn7T+5aY+T3Hv3WvU/gcdHE/qZ2Pg==", "dependencies": { - "@microsoft/kiota-abstractions": "^1.0.0-preview.73", - "guid-typescript": "^1.0.9", + "@microsoft/kiota-abstractions": "^1.0.0-preview.74", "tslib": "^2.6.2" } }, @@ -2132,11 +2126,6 @@ "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", "dev": true }, - "node_modules/guid-typescript": { - "version": "1.0.9", - "resolved": "https://registry.npmjs.org/guid-typescript/-/guid-typescript-1.0.9.tgz", - "integrity": "sha512-Y8T4vYhEfwJOTbouREvG+3XDsjr8E3kIr7uf+JZ0BYloFsttiHU0WfvANVsR7TxNUJa/WpCnw/Ino/p+DeBhBQ==" - }, "node_modules/has-flag": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", diff --git a/it/typescript/package.json b/it/typescript/package.json index fcaa982ad9..9f13746244 100644 --- a/it/typescript/package.json +++ b/it/typescript/package.json @@ -32,13 +32,13 @@ }, "dependencies": { "@azure/identity": "^4.5.0", - "@microsoft/kiota-abstractions": "^1.0.0-preview.73", - "@microsoft/kiota-authentication-azure": "^1.0.0-preview.73", - "@microsoft/kiota-http-fetchlibrary": "^1.0.0-preview.73", - "@microsoft/kiota-serialization-form": "^1.0.0-preview.73", - "@microsoft/kiota-serialization-json": "^1.0.0-preview.73", - "@microsoft/kiota-serialization-multipart": "^1.0.0-preview.73", - "@microsoft/kiota-serialization-text": "^1.0.0-preview.73", + "@microsoft/kiota-abstractions": "^1.0.0-preview.74", + "@microsoft/kiota-authentication-azure": "^1.0.0-preview.74", + "@microsoft/kiota-http-fetchlibrary": "^1.0.0-preview.74", + "@microsoft/kiota-serialization-form": "^1.0.0-preview.74", + "@microsoft/kiota-serialization-json": "^1.0.0-preview.74", + "@microsoft/kiota-serialization-multipart": "^1.0.0-preview.74", + "@microsoft/kiota-serialization-text": "^1.0.0-preview.74", "express": "^5.0.1", "node-fetch": "^2.7.0" } From adb622e12059c80bd811a179bfba83fb2a2719a5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 7 Nov 2024 08:55:49 +0000 Subject: [PATCH 4/4] chore(deps): bump the kiota-dependencies group with 6 updates Bumps the kiota-dependencies group with 6 updates: | Package | From | To | | --- | --- | --- | | [Microsoft.Kiota.Abstractions](https://github.com/microsoft/kiota-dotnet) | `1.13.2` | `1.14.0` | | [Microsoft.Kiota.Http.HttpClientLibrary](https://github.com/microsoft/kiota-dotnet) | `1.13.2` | `1.14.0` | | [Microsoft.Kiota.Serialization.Form](https://github.com/microsoft/kiota-dotnet) | `1.13.2` | `1.14.0` | | [Microsoft.Kiota.Serialization.Json](https://github.com/microsoft/kiota-dotnet) | `1.13.2` | `1.14.0` | | [Microsoft.kiota.Serialization.Multipart](https://github.com/microsoft/kiota-dotnet) | `1.13.2` | `1.14.0` | | [Microsoft.Kiota.Serialization.Text](https://github.com/microsoft/kiota-dotnet) | `1.13.2` | `1.14.0` | Updates `Microsoft.Kiota.Abstractions` from 1.13.2 to 1.14.0 - [Release notes](https://github.com/microsoft/kiota-dotnet/releases) - [Changelog](https://github.com/microsoft/kiota-dotnet/blob/main/CHANGELOG.md) - [Commits](https://github.com/microsoft/kiota-dotnet/compare/v1.13.2...v1.14.0) Updates `Microsoft.Kiota.Abstractions` from 1.13.2 to 1.14.0 - [Release notes](https://github.com/microsoft/kiota-dotnet/releases) - [Changelog](https://github.com/microsoft/kiota-dotnet/blob/main/CHANGELOG.md) - [Commits](https://github.com/microsoft/kiota-dotnet/compare/v1.13.2...v1.14.0) Updates `Microsoft.Kiota.Http.HttpClientLibrary` from 1.13.2 to 1.14.0 - [Release notes](https://github.com/microsoft/kiota-dotnet/releases) - [Changelog](https://github.com/microsoft/kiota-dotnet/blob/main/CHANGELOG.md) - [Commits](https://github.com/microsoft/kiota-dotnet/compare/v1.13.2...v1.14.0) Updates `Microsoft.Kiota.Abstractions` from 1.13.2 to 1.14.0 - [Release notes](https://github.com/microsoft/kiota-dotnet/releases) - [Changelog](https://github.com/microsoft/kiota-dotnet/blob/main/CHANGELOG.md) - [Commits](https://github.com/microsoft/kiota-dotnet/compare/v1.13.2...v1.14.0) Updates `Microsoft.Kiota.Serialization.Form` from 1.13.2 to 1.14.0 - [Release notes](https://github.com/microsoft/kiota-dotnet/releases) - [Changelog](https://github.com/microsoft/kiota-dotnet/blob/main/CHANGELOG.md) - [Commits](https://github.com/microsoft/kiota-dotnet/compare/v1.13.2...v1.14.0) Updates `Microsoft.Kiota.Abstractions` from 1.13.2 to 1.14.0 - [Release notes](https://github.com/microsoft/kiota-dotnet/releases) - [Changelog](https://github.com/microsoft/kiota-dotnet/blob/main/CHANGELOG.md) - [Commits](https://github.com/microsoft/kiota-dotnet/compare/v1.13.2...v1.14.0) Updates `Microsoft.Kiota.Serialization.Json` from 1.13.2 to 1.14.0 - [Release notes](https://github.com/microsoft/kiota-dotnet/releases) - [Changelog](https://github.com/microsoft/kiota-dotnet/blob/main/CHANGELOG.md) - [Commits](https://github.com/microsoft/kiota-dotnet/compare/v1.13.2...v1.14.0) Updates `Microsoft.Kiota.Abstractions` from 1.13.2 to 1.14.0 - [Release notes](https://github.com/microsoft/kiota-dotnet/releases) - [Changelog](https://github.com/microsoft/kiota-dotnet/blob/main/CHANGELOG.md) - [Commits](https://github.com/microsoft/kiota-dotnet/compare/v1.13.2...v1.14.0) Updates `Microsoft.kiota.Serialization.Multipart` from 1.13.2 to 1.14.0 - [Release notes](https://github.com/microsoft/kiota-dotnet/releases) - [Changelog](https://github.com/microsoft/kiota-dotnet/blob/main/CHANGELOG.md) - [Commits](https://github.com/microsoft/kiota-dotnet/compare/v1.13.2...v1.14.0) Updates `Microsoft.Kiota.Abstractions` from 1.13.2 to 1.14.0 - [Release notes](https://github.com/microsoft/kiota-dotnet/releases) - [Changelog](https://github.com/microsoft/kiota-dotnet/blob/main/CHANGELOG.md) - [Commits](https://github.com/microsoft/kiota-dotnet/compare/v1.13.2...v1.14.0) Updates `Microsoft.Kiota.Serialization.Text` from 1.13.2 to 1.14.0 - [Release notes](https://github.com/microsoft/kiota-dotnet/releases) - [Changelog](https://github.com/microsoft/kiota-dotnet/blob/main/CHANGELOG.md) - [Commits](https://github.com/microsoft/kiota-dotnet/compare/v1.13.2...v1.14.0) --- updated-dependencies: - dependency-name: Microsoft.Kiota.Abstractions dependency-type: direct:production update-type: version-update:semver-minor dependency-group: kiota-dependencies - dependency-name: Microsoft.Kiota.Abstractions dependency-type: direct:production update-type: version-update:semver-minor dependency-group: kiota-dependencies - dependency-name: Microsoft.Kiota.Http.HttpClientLibrary dependency-type: direct:production update-type: version-update:semver-minor dependency-group: kiota-dependencies - dependency-name: Microsoft.Kiota.Abstractions dependency-type: direct:production update-type: version-update:semver-minor dependency-group: kiota-dependencies - dependency-name: Microsoft.Kiota.Serialization.Form dependency-type: direct:production update-type: version-update:semver-minor dependency-group: kiota-dependencies - dependency-name: Microsoft.Kiota.Abstractions dependency-type: direct:production update-type: version-update:semver-minor dependency-group: kiota-dependencies - dependency-name: Microsoft.Kiota.Serialization.Json dependency-type: direct:production update-type: version-update:semver-minor dependency-group: kiota-dependencies - dependency-name: Microsoft.Kiota.Abstractions dependency-type: direct:production update-type: version-update:semver-minor dependency-group: kiota-dependencies - dependency-name: Microsoft.kiota.Serialization.Multipart dependency-type: direct:production update-type: version-update:semver-minor dependency-group: kiota-dependencies - dependency-name: Microsoft.Kiota.Abstractions dependency-type: direct:production update-type: version-update:semver-minor dependency-group: kiota-dependencies - dependency-name: Microsoft.Kiota.Serialization.Text dependency-type: direct:production update-type: version-update:semver-minor dependency-group: kiota-dependencies ... Signed-off-by: dependabot[bot] --- src/Kiota.Builder/Kiota.Builder.csproj | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/Kiota.Builder/Kiota.Builder.csproj b/src/Kiota.Builder/Kiota.Builder.csproj index bfc9315ac6..8db46610ce 100644 --- a/src/Kiota.Builder/Kiota.Builder.csproj +++ b/src/Kiota.Builder/Kiota.Builder.csproj @@ -38,12 +38,12 @@ - - - - - - + + + + + +