From 82069333ebdc50381ea03b183b072aadefac7c99 Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Thu, 26 Sep 2024 17:25:24 +0300 Subject: [PATCH 1/2] Removed registration of default serialization and deserialization classes --- src/kiota/Handlers/Client/GenerateHandler.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/kiota/Handlers/Client/GenerateHandler.cs b/src/kiota/Handlers/Client/GenerateHandler.cs index 9911911515..7c9ce9d01a 100644 --- a/src/kiota/Handlers/Client/GenerateHandler.cs +++ b/src/kiota/Handlers/Client/GenerateHandler.cs @@ -53,7 +53,6 @@ public override async Task InvokeAsync(InvocationContext context) var generationConfiguration = new GenerationConfiguration(); var requests = !refresh && manifest is not null && manifest.ApiDependencies.TryGetValue(clientEntry.Key, out var value) ? value.Requests : []; clientEntry.Value.UpdateGenerationConfigurationFromApiClientConfiguration(generationConfiguration, clientEntry.Key, requests); - DefaultSerializersAndDeserializers(generationConfiguration); generationConfiguration.ClearCache = refresh; generationConfiguration.CleanOutput = refresh; generationConfiguration.Operation = ConsumerOperation.Generate; From 45445c9878528c5b44bafe1bbf925548b7c8795c Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Thu, 26 Sep 2024 22:56:05 +0300 Subject: [PATCH 2/2] Updated changelog --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index f183569be3..9406ae9ed7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -27,6 +27,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - 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) - Updated schema link in plugin manifest to the correct url. [#5441](https://github.com/microsoft/kiota/issues/5441) +- Removed registration of default serialization and deserialization classes in client constructor. [#5478](https://github.com/microsoft/kiota/pull/5478) ## [1.18.0] - 2024-09-05