-
Notifications
You must be signed in to change notification settings - Fork 4.9k
API Diff .NET 10.0 RC2 -> 10.0 GA #10148
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
Open
PranavSenthilnathan
wants to merge
4
commits into
main
Choose a base branch
from
apidiff-10-ga-vs-rc2
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+122
−0
Open
Changes from 2 commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
e60ab37
API Diff .NET 10.0 RC2 -> 10.0 GA
PranavSenthilnathan 4c7b695
Fix formatting for markdown linter
PranavSenthilnathan 45f1781
Update release-notes/10.0/preview/ga/api-diff/Microsoft.WindowsDeskto…
jamesmontemagno ea33928
Merge branch 'main' into apidiff-10-ga-vs-rc2
jamesmontemagno 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
10 changes: 10 additions & 0 deletions
10
release-notes/10.0/preview/ga/api-diff/Microsoft.AspNetCore.App/10.0-ga.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,10 @@ | ||
| # API difference between .NET 10.0 RC 2 and .NET 10.0 GA | ||
|
|
||
| API listing follows standard diff formatting. | ||
| Lines preceded by a '+' are additions and a '-' indicates removal. | ||
|
|
||
| * [Microsoft.AspNetCore](10.0-ga_Microsoft.AspNetCore.md) | ||
| * [Microsoft.AspNetCore.Hosting](10.0-ga_Microsoft.AspNetCore.Hosting.md) | ||
| * [Microsoft.AspNetCore.Hosting.Abstractions](10.0-ga_Microsoft.AspNetCore.Hosting.Abstractions.md) | ||
| * [Microsoft.AspNetCore.HttpOverrides](10.0-ga_Microsoft.AspNetCore.HttpOverrides.md) | ||
| * [Microsoft.AspNetCore.Mvc.Core](10.0-ga_Microsoft.AspNetCore.Mvc.Core.md) |
18 changes: 18 additions & 0 deletions
18
...f/Microsoft.AspNetCore.App/10.0-ga_Microsoft.AspNetCore.Hosting.Abstractions.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,18 @@ | ||
| # Microsoft.AspNetCore.Hosting.Abstractions | ||
|
|
||
| ```diff | ||
| namespace Microsoft.AspNetCore.Hosting | ||
| { | ||
| - [System.ObsoleteAttribute("IWebHost is obsolete. Use IHost instead. For more information, visit https://aka.ms/aspnet/deprecate/008.", DiagnosticId = "ASPDEPR008")] | ||
| + [System.ObsoleteAttribute("IWebHost is obsolete. Use IHost instead. For more information, visit https://aka.ms/aspnet/deprecate/008.", DiagnosticId = "ASPDEPR008", UrlFormat = "https://aka.ms/aspnet/deprecate/008")] | ||
| public interface IWebHost : System.IDisposable | ||
| { | ||
| } | ||
| public interface IWebHostBuilder | ||
| { | ||
| - [System.ObsoleteAttribute("IWebHost is obsolete. Use IHost instead. For more information, visit https://aka.ms/aspnet/deprecate/008.", DiagnosticId = "ASPDEPR008")] | ||
| + [System.ObsoleteAttribute("IWebHost is obsolete. Use IHost instead. For more information, visit https://aka.ms/aspnet/deprecate/008.", DiagnosticId = "ASPDEPR008", UrlFormat = "https://aka.ms/aspnet/deprecate/008")] | ||
| Microsoft.AspNetCore.Hosting.IWebHost Build(); | ||
| } | ||
| } | ||
| ``` |
17 changes: 17 additions & 0 deletions
17
...ew/ga/api-diff/Microsoft.AspNetCore.App/10.0-ga_Microsoft.AspNetCore.Hosting.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,17 @@ | ||
| # Microsoft.AspNetCore.Hosting | ||
|
|
||
| ```diff | ||
| namespace Microsoft.AspNetCore.Hosting | ||
| { | ||
| - [System.ObsoleteAttribute("WebHostBuilder is deprecated in favor of HostBuilder and WebApplicationBuilder. For more information, visit https://aka.ms/aspnet/deprecate/004.", DiagnosticId = "ASPDEPR004")] | ||
| + [System.ObsoleteAttribute("WebHostBuilder is deprecated in favor of HostBuilder and WebApplicationBuilder. For more information, visit https://aka.ms/aspnet/deprecate/004.", DiagnosticId = "ASPDEPR004", UrlFormat = "https://aka.ms/aspnet/deprecate/004")] | ||
| public class WebHostBuilder : Microsoft.AspNetCore.Hosting.IWebHostBuilder | ||
| { | ||
| } | ||
| - [System.ObsoleteAttribute("WebHostExtensions is obsolete. Use Host.CreateDefaultBuilder or WebApplication.CreateBuilder instead. For more information, visit https://aka.ms/aspnet/deprecate/008.", DiagnosticId = "ASPDEPR008")] | ||
| + [System.ObsoleteAttribute("WebHostExtensions is obsolete. Use Host.CreateDefaultBuilder or WebApplication.CreateBuilder instead. For more information, visit https://aka.ms/aspnet/deprecate/008.", DiagnosticId = "ASPDEPR008", UrlFormat = "https://aka.ms/aspnet/deprecate/008")] | ||
| public static class WebHostExtensions | ||
| { | ||
| } | ||
| } | ||
| ``` |
21 changes: 21 additions & 0 deletions
21
...api-diff/Microsoft.AspNetCore.App/10.0-ga_Microsoft.AspNetCore.HttpOverrides.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,21 @@ | ||
| # Microsoft.AspNetCore.HttpOverrides | ||
|
|
||
| ```diff | ||
| namespace Microsoft.AspNetCore.Builder | ||
| { | ||
| public class ForwardedHeadersOptions | ||
| { | ||
| - [System.ObsoleteAttribute("Please use KnownIPNetworks instead. For more information, visit https://aka.ms/aspnet/deprecate/005.", DiagnosticId = "ASPDEPR005")] | ||
| + [System.ObsoleteAttribute("Please use KnownIPNetworks instead. For more information, visit https://aka.ms/aspnet/deprecate/005.", DiagnosticId = "ASPDEPR005", UrlFormat = "https://aka.ms/aspnet/deprecate/005")] | ||
| public System.Collections.Generic.IList<Microsoft.AspNetCore.HttpOverrides.IPNetwork> KnownNetworks { get; } | ||
| } | ||
| } | ||
| namespace Microsoft.AspNetCore.HttpOverrides | ||
| { | ||
| - [System.ObsoleteAttribute("Please use System.Net.IPNetwork instead. For more information, visit https://aka.ms/aspnet/deprecate/005.", DiagnosticId = "ASPDEPR005")] | ||
| + [System.ObsoleteAttribute("Please use System.Net.IPNetwork instead. For more information, visit https://aka.ms/aspnet/deprecate/005.", DiagnosticId = "ASPDEPR005", UrlFormat = "https://aka.ms/aspnet/deprecate/005")] | ||
| public class IPNetwork | ||
| { | ||
| } | ||
| } | ||
| ``` |
17 changes: 17 additions & 0 deletions
17
...w/ga/api-diff/Microsoft.AspNetCore.App/10.0-ga_Microsoft.AspNetCore.Mvc.Core.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,17 @@ | ||
| # Microsoft.AspNetCore.Mvc.Core | ||
|
|
||
| ```diff | ||
| namespace Microsoft.AspNetCore.Mvc.Infrastructure | ||
| { | ||
| - [System.ObsoleteAttribute("ActionContextAccessor is obsolete and will be removed in a future version. For more information, visit https://aka.ms/aspnet/deprecate/006.", DiagnosticId = "ASPDEPR006")] | ||
| + [System.ObsoleteAttribute("ActionContextAccessor is obsolete and will be removed in a future version. For more information, visit https://aka.ms/aspnet/deprecate/006.", DiagnosticId = "ASPDEPR006", UrlFormat = "https://aka.ms/aspnet/deprecate/006")] | ||
| public class ActionContextAccessor : Microsoft.AspNetCore.Mvc.Infrastructure.IActionContextAccessor | ||
| { | ||
| } | ||
| - [System.ObsoleteAttribute("IActionContextAccessor is obsolete and will be removed in a future version. For more information, visit https://aka.ms/aspnet/deprecate/006.", DiagnosticId = "ASPDEPR006")] | ||
| + [System.ObsoleteAttribute("IActionContextAccessor is obsolete and will be removed in a future version. For more information, visit https://aka.ms/aspnet/deprecate/006.", DiagnosticId = "ASPDEPR006", UrlFormat = "https://aka.ms/aspnet/deprecate/006")] | ||
| public interface IActionContextAccessor | ||
| { | ||
| } | ||
| } | ||
| ``` |
12 changes: 12 additions & 0 deletions
12
....0/preview/ga/api-diff/Microsoft.AspNetCore.App/10.0-ga_Microsoft.AspNetCore.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,12 @@ | ||
| # Microsoft.AspNetCore | ||
|
|
||
| ```diff | ||
| namespace Microsoft.AspNetCore | ||
| { | ||
| - [System.ObsoleteAttribute("WebHost is obsolete. Use HostBuilder or WebApplicationBuilder instead. For more information, visit https://aka.ms/aspnet/deprecate/008.", DiagnosticId = "ASPDEPR008")] | ||
| + [System.ObsoleteAttribute("WebHost is obsolete. Use HostBuilder or WebApplicationBuilder instead. For more information, visit https://aka.ms/aspnet/deprecate/008.", DiagnosticId = "ASPDEPR008", UrlFormat = "https://aka.ms/aspnet/deprecate/008")] | ||
| public static class WebHost | ||
| { | ||
| } | ||
| } | ||
| ``` |
6 changes: 6 additions & 0 deletions
6
release-notes/10.0/preview/ga/api-diff/Microsoft.NETCore.App/10.0-ga.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,6 @@ | ||
| # API difference between .NET 10.0 RC 2 and .NET 10.0 GA | ||
|
|
||
| API listing follows standard diff formatting. | ||
| Lines preceded by a '+' are additions and a '-' indicates removal. | ||
|
|
||
| * [System.Runtime.Loader](10.0-ga_System.Runtime.Loader.md) |
11 changes: 11 additions & 0 deletions
11
...10.0/preview/ga/api-diff/Microsoft.NETCore.App/10.0-ga_System.Runtime.Loader.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,11 @@ | ||
| # System.Runtime.Loader | ||
|
|
||
| ```diff | ||
| namespace System.Runtime.CompilerServices | ||
| { | ||
| + public sealed class MetadataUpdateDeletedAttribute : System.Attribute | ||
| + { | ||
| + public MetadataUpdateDeletedAttribute(); | ||
| + } | ||
| } | ||
| ``` |
4 changes: 4 additions & 0 deletions
4
release-notes/10.0/preview/ga/api-diff/Microsoft.WindowsDesktop.App/10.0-ga.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,4 @@ | ||
| # API difference between .NET 10.0 RC 2 and .NET 10.0 GA | ||
|
|
||
| API listing follows standard diff formatting. | ||
| Lines preceded by a '+' are additions and a '-' indicates removal. | ||
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,7 @@ | ||
| # .NET 10.0 GA API Changes | ||
|
|
||
| The following API changes were made in .NET 10.0 GA: | ||
|
|
||
| - [Microsoft.NETCore.App](./Microsoft.NETCore.App/10.0-ga.md) | ||
| - [Microsoft.AspNetCore.App](./Microsoft.AspNetCore.App/10.0-ga.md) | ||
| - [Microsoft.WindowsDesktop.App](./Microsoft.WindowsDesktop.App/10.0-ga.md) |
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.