-
Notifications
You must be signed in to change notification settings - Fork 24.8k
Update "What's new in ASP.NET Core in .NET 11" for Preview 3 #36991
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
Merged
wadepickett
merged 5 commits into
main
from
copilot/update-whats-new-aspnet-core-dotnet-11-preview-3-again
Apr 14, 2026
Merged
Changes from 2 commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
df1e9c7
Initial plan
Copilot 78940ab
Add What's New include files for ASP.NET Core .NET 11 Preview 3
Copilot cfbfad2
Apply suggestion from @wadepickett
wadepickett c56505a
Rename preview3 include files to preview-3 to fix build warnings
Copilot 6b21619
Apply suggestion from @wadepickett
wadepickett File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 3 additions & 0 deletions
3
...release-notes/aspnetcore-11/includes/http3-early-request-processing-preview3.md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| ### HTTP/3 starts processing requests earlier | ||
|
|
||
| Kestrel now starts processing HTTP/3 requests without waiting for the control stream and SETTINGS frame first, which reduces first-request latency on new connections. |
19 changes: 19 additions & 0 deletions
19
aspnetcore/release-notes/aspnetcore-11/includes/zstandard-compression-preview3.md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,19 @@ | ||
| ### Zstandard response compression and request decompression | ||
|
|
||
| ASP.NET Core now supports [Zstandard (zstd)](https://facebook.github.io/zstd/) for both response compression and request decompression. This adds zstd support to the existing response-compression and request-decompression middleware and enables it by default. | ||
|
|
||
| ```csharp | ||
| var builder = WebApplication.CreateBuilder(args); | ||
|
|
||
| builder.Services.AddResponseCompression(); | ||
| builder.Services.AddRequestDecompression(); | ||
| builder.Services.Configure<ZstandardCompressionProviderOptions>(options => | ||
| { | ||
| options.CompressionOptions = new ZstandardCompressionOptions | ||
| { | ||
| Quality = 6 // 1-22, higher = better compression, slower | ||
| }; | ||
| }); | ||
| ``` | ||
|
|
||
| Thank you [@manandre](https://github.com/manandre) for this contribution! |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.