From 6346bb9e35b797c6b04d954e1e6645fa1d186c90 Mon Sep 17 00:00:00 2001 From: thewahome Date: Fri, 10 Jan 2025 15:07:36 +0300 Subject: [PATCH 1/5] use null instead of undefined --- .../src/commands/generate/generateClientCommand.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vscode/microsoft-kiota/src/commands/generate/generateClientCommand.ts b/vscode/microsoft-kiota/src/commands/generate/generateClientCommand.ts index e65cebaf85..849426bdf5 100644 --- a/vscode/microsoft-kiota/src/commands/generate/generateClientCommand.ts +++ b/vscode/microsoft-kiota/src/commands/generate/generateClientCommand.ts @@ -201,7 +201,7 @@ export class GenerateClientCommand extends Command { settings.cleanOutput, settings.disableValidationRules, ConsumerOperation.Add, - undefined, + null, '', config.workingDirectory ); @@ -247,7 +247,7 @@ export class GenerateClientCommand extends Command { settings.cleanOutput, settings.disableValidationRules, ConsumerOperation.Add, - undefined, + null, '', config.workingDirectory ); From b7586aaad6f5b79637dd0d3795f7e3570a846979 Mon Sep 17 00:00:00 2001 From: thewahome Date: Fri, 10 Jan 2025 16:24:56 +0300 Subject: [PATCH 2/5] add changelog file --- CHANGELOG.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 32b1b2a4c7..2875899168 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,11 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 -## [Unreleased] +## [1.22.1] - 2025-01-10 ### Added ### Changed +Fixed a bug in the VS Code extension plugin generation [#5978](https://github.com/microsoft/kiota/issues/5978) ## [1.22.0] - 2025-01-09 From abf1c3dbe5d94a5a0ace89b2f5e2da3e314a3dfe Mon Sep 17 00:00:00 2001 From: thewahome Date: Fri, 10 Jan 2025 16:25:08 +0300 Subject: [PATCH 3/5] update version numbers --- src/Kiota.Builder/Kiota.Builder.csproj | 2 +- src/kiota/kiota.csproj | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Kiota.Builder/Kiota.Builder.csproj b/src/Kiota.Builder/Kiota.Builder.csproj index fa2971d235..b799adfda1 100644 --- a/src/Kiota.Builder/Kiota.Builder.csproj +++ b/src/Kiota.Builder/Kiota.Builder.csproj @@ -15,7 +15,7 @@ Microsoft.OpenApi.Kiota.Builder Microsoft.OpenApi.Kiota.Builder ./nupkg - 1.23.0 + 1.22.1 $(VersionSuffix) https://github.com/microsoft/kiota/releases diff --git a/src/kiota/kiota.csproj b/src/kiota/kiota.csproj index 378d2ad0ca..4815878b01 100644 --- a/src/kiota/kiota.csproj +++ b/src/kiota/kiota.csproj @@ -15,7 +15,7 @@ Microsoft.OpenApi.Kiota Microsoft.OpenApi.Kiota ./nupkg - 1.23.0 + 1.22.1 $(VersionSuffix) https://github.com/microsoft/kiota/releases From 3913af26897b49279438b3d37d65e4478d05de0f Mon Sep 17 00:00:00 2001 From: thewahome Date: Fri, 10 Jan 2025 16:32:30 +0300 Subject: [PATCH 4/5] update changelog entry --- CHANGELOG.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2875899168..7febe48231 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,12 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## [Unreleased] + +### Added + +### Changed + ## [1.22.1] - 2025-01-10 ### Added ### Changed -Fixed a bug in the VS Code extension plugin generation [#5978](https://github.com/microsoft/kiota/issues/5978) +- Fixed a bug in the VS Code extension plugin generation [#5978](https://github.com/microsoft/kiota/issues/5978) ## [1.22.0] - 2025-01-09 From 89cdb9d67bef7df6e2fee4d558906e88e568c6f7 Mon Sep 17 00:00:00 2001 From: thewahome Date: Fri, 10 Jan 2025 16:40:03 +0300 Subject: [PATCH 5/5] update extension changelog file --- vscode/microsoft-kiota/CHANGELOG.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/vscode/microsoft-kiota/CHANGELOG.md b/vscode/microsoft-kiota/CHANGELOG.md index 94c3f08309..e1a6bf8573 100644 --- a/vscode/microsoft-kiota/CHANGELOG.md +++ b/vscode/microsoft-kiota/CHANGELOG.md @@ -8,6 +8,13 @@ All notable changes to this project will be documented in this file. ### Changed +## [1.22.100000001] - 2025-01-10 + +### Added + +### Changed +- Fixed a bug in the VS Code extension plugin generation [#5978](https://github.com/microsoft/kiota/issues/5978) + ## [1.20.000000001] - 2024-11-07 ## [1.19.100000001] - 2024-10-03