Skip to content
Open
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@

<ItemGroup>
<PackageReference Include="Microsoft.Graph" Version="5.51.0" />
<!-- Pin Graph.Core to 4.0.1 to resolve CVE in transitive Microsoft.Kiota.Abstractions (GHSA-7j59-v9qr-6fq9) -->
<PackageReference Include="Microsoft.Graph.Core" Version="4.0.1" />
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

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

But are you sure Microsoft.Graph works with this version of Graph.Core? Wouldn't it better to upgrade Microsoft.Graph to the latest version?

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

Is pinning Microsoft.Graph.Core to 4.0.1 under an unchanged Microsoft.Graph 5.51.0 the reco?

</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@

<ItemGroup>
<PackageReference Include="Microsoft.Graph.Beta" Version="5.56.0-preview" />
<!-- Pin Graph.Core to 4.0.1 to resolve CVE in transitive Microsoft.Kiota.Abstractions (GHSA-7j59-v9qr-6fq9) -->
<PackageReference Include="Microsoft.Graph.Core" Version="4.0.1" />
</ItemGroup>

<ItemGroup>
Expand Down
Loading