-
Notifications
You must be signed in to change notification settings - Fork 0
deps: Update dependency Microsoft.Kiota.Abstractions to v2 #67
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -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"/> | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Upgrading only Useful? React with 👍 / 👎. |
||
| </ItemGroup> | ||
| </Project> | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pinning only
Microsoft.Kiota.Abstractionsto2.0.0here can create a mixed Kiota dependency graph forManagedAgentTelemetry.Host(viaMicrosoft.Graph/Azure.AI.Projects), whereMicrosoft.Graph.Coreand 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 asTypeLoadException/MissingMethodExceptionwhen 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 👍 / 👎.