From c5be8ed01505295df78d71c6cb9980fb293264fa Mon Sep 17 00:00:00 2001 From: samwelkanda Date: Wed, 25 Sep 2024 05:58:26 +0300 Subject: [PATCH 1/2] Use updated schema link in manifest --- src/Kiota.Builder/Plugins/PluginsGenerationService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Kiota.Builder/Plugins/PluginsGenerationService.cs b/src/Kiota.Builder/Plugins/PluginsGenerationService.cs index e91a2b87a..ce6e0dcae 100644 --- a/src/Kiota.Builder/Plugins/PluginsGenerationService.cs +++ b/src/Kiota.Builder/Plugins/PluginsGenerationService.cs @@ -264,7 +264,7 @@ public partial class PluginsGenerationService var manifestInfo = ExtractInfoFromDocument(OAIDocument.Info); var pluginManifestDocument = new PluginManifestDocument { - Schema = "https://aka.ms/json-schemas/copilot-extensions/v2.1/plugin.schema.json", + Schema = "https://developer.microsoft.com/json-schemas/copilot/plugin/v2.1/schema.json", SchemaVersion = "v2.1", NameForHuman = OAIDocument.Info?.Title.CleanupXMLString(), DescriptionForHuman = descriptionForHuman, From 1ea8a2425e4c14a45e39f61bc90d148657b1c7d0 Mon Sep 17 00:00:00 2001 From: samwelkanda Date: Wed, 25 Sep 2024 06:05:54 +0300 Subject: [PATCH 2/2] Add changelog entry --- CHANGELOG.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e9e44af4f..f183569be 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,13 +19,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Fixed a bug where a path segment named "item" after a single parameter path segment would derail generation. [#4814](https://github.com/microsoft/kiota/issues/4814) - Fixed a bug where collection/array of primitive types members for union/intersection types would be ignored. [#5283](https://github.com/microsoft/kiota/issues/5283) - Updated dependencies command and view to reflect the availability of bundles. [#5317](https://github.com/microsoft/kiota/issues/5317) -- Fixed a when generating a plugin when only an operation is selected in the root node in the extension. [#5300](https://github.com/microsoft/kiota/issues/5300) +- Fixed a bug when generating a plugin when only an operation is selected in the root node in the extension. [#5300](https://github.com/microsoft/kiota/issues/5300) - Fixed a bug where function descriptions in plugin manifest defaults to path summary instead of description. [#5301](https://github.com/microsoft/kiota/issues/5301) - Fixed a bug where TypeScript would not properly build URIs with uppercase first characters query parameter names.[#5382](https://github.com/microsoft/kiota/issues/5382) -- Fixed a bug where the description special characters are encoded. [5286](https://github.com/microsoft/kiota/issues/5286) +- Fixed a bug where the description special characters are encoded. [#5286](https://github.com/microsoft/kiota/issues/5286) - Fixed a bug where python constructor parameters are being cast to strings leading to bugs as the types is unknown on graph call. [microsoftgraph/msgraph-sdk-python#165](https://github.com/microsoftgraph/msgraph-sdk-python/issues/165) - Fixed a bug where child path segment from single parameter path segment would be incorrectly escaped. [#5433](https://github.com/microsoft/kiota/issues/5433) -- Fixed inconsistent typing information generated for `ParsableFactory` and stream return types in python [kiota-abstractions-python#533](https://github.com/microsoft/kiota-abstractions-python/issues/333) +- Fixed inconsistent typing information generated for `ParsableFactory` and stream return types in python [kiota-abstractions-python#533](https://github.com/microsoft/kiota-abstractions-python/issues/333) +- Updated schema link in plugin manifest to the correct url. [#5441](https://github.com/microsoft/kiota/issues/5441) ## [1.18.0] - 2024-09-05