Skip to content
Merged
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
11 changes: 9 additions & 2 deletions DebugProbe.AspNetCore/DebugProbe.AspNetCore.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<NoWarn>1591</NoWarn>

<PackageId>DebugProbe.AspNetCore</PackageId>
<Version>1.6.5</Version>
<Version>1.6.6</Version>

<Authors>Georgi Hristov</Authors>

Expand All @@ -17,7 +17,14 @@
<PackageTags>aspnetcore;debugging;http;middleware;diagnostics;tracing;observability;api-debugging;developer-tools;trace-comparison;environment-comparison</PackageTags>

<PackageReleaseNotes>
Fixes response size tracking to report the actual number of bytes sent to the client instead of the captured body size. Adds validation for MaxBodyCaptureSizeKb to reject negative values while allowing 0 to disable body capture. Updates Microsoft.AspNetCore.TestHost to 8.0.28 and xunit.runner.visualstudio to 3.1.5.
## What's New

- Added configurable RoutePrefix support for customizing DebugProbe endpoints.
- Fixed endpoint mapping to respect production UI configuration.
- Fixed outgoing HTTP body capture stream preservation.
- Fixed outgoing HTTP body capture to avoid reading beyond the configured limit.

Thanks to @DevSars24 for the community contributions.
</PackageReleaseNotes>

<PackageIcon>icon.png</PackageIcon>
Expand Down
Loading