Skip to content
Open
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 src/Cody.Core/Cody.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@
<PackageReference Include="Newtonsoft.Json">
<Version>13.0.1</Version>
</PackageReference>
<PackageReference Include="Sentry" Version="4.13.0" />
<PackageReference Include="Sentry" Version="6.0.0" />
Copy link

Choose a reason for hiding this comment

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

This is a major version bump from 4.13.0 to 6.0.0, which includes significant breaking changes. Notable breaking changes include:

  • Dropped support for older .NET 8 targets (net8.0-android, net8.0-ios, etc.)
  • Removal of SentryLoggingOptions.ExperimentalLogging.MinimumLogLevel
  • Renamed BreadcrumbLevel.Critical to BreadcrumbLevel.Fatal
  • Removed SentrySdk.CaptureUserFeedback (replaced with CaptureFeedback)
  • Several APIs made internal or sealed

While no direct Sentry usage was found in this codebase search, verify that:

  1. All Sentry integration code is compatible with these breaking changes
  2. The application still compiles and runs correctly after this upgrade
  3. Consider testing error reporting functionality to ensure it still works as expected

</ItemGroup>
<ItemGroup />
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
Expand Down
Loading