Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,6 @@
Pulled transitively via Microsoft.Graph / Azure.AI.Projects in the
ManagedAgentTelemetry.Host sample. Now that the sample uses
ANcpLua.NET.Sdk.Web, NU1903 escalates from warning to error in CI. -->
<PackageVersion Include="Microsoft.Kiota.Abstractions" Version="1.22.2"/>
<PackageVersion Include="Microsoft.Kiota.Abstractions" Version="2.0.0"/>
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Badge Keep Kiota packages on a single major version

Pinning only Microsoft.Kiota.Abstractions to 2.0.0 here can create a mixed Kiota dependency graph for ManagedAgentTelemetry.Host (via Microsoft.Graph/Azure.AI.Projects), where Microsoft.Graph.Core and Kiota serializers remain on 1.x while abstractions is forced to 2.x. Kiota 2.0 removed/changed abstraction APIs, so this mismatch can surface as TypeLoadException/MissingMethodException when Graph requests deserialize responses. Please either keep the transitive security pin on a compatible 1.x line or upgrade the full Kiota stack (and upstream Graph/Azure packages) together.

Useful? React with 👍 / 👎.

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Badge Keep Kiota dependencies on a single major line

Upgrading only Microsoft.Kiota.Abstractions to 2.0.0 here creates a mixed-major Kiota dependency graph in the sample path that brings in Graph/Foundry transitive Kiota packages, because CPM transitive pinning applies this package but does not automatically align the rest of the Kiota family. Kiota 2.0 removes abstraction APIs called out as breaking changes (for example IAsyncParseNodeFactory and old deserialize members), so keeping serializers/auth/http packages on 1.x while forcing abstractions to 2.x can surface runtime MissingMethodException/TypeLoadException during request parsing. Please pin or upgrade the Kiota stack as a set (or remain on 1.22.x across the stack) instead of bumping only abstractions.

Useful? React with 👍 / 👎.

</ItemGroup>
</Project>
Loading