Skip to content
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

API diff between .NET 8 RC2 and .NET 8 GA #8919

Merged
merged 4 commits into from
Nov 27, 2023
Merged
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
@@ -0,0 +1,9 @@
# API Difference 8.0-rc2 vs 8.0-ga

API listing follows standard diff formatting.
Lines preceded by a '+' are additions and a '-' indicates removal.

* [Microsoft.AspNetCore.Components.Rendering](8.0-ga_Microsoft.AspNetCore.Components.Rendering.md)
* [Microsoft.AspNetCore.Components.Web](8.0-ga_Microsoft.AspNetCore.Components.Web.md)
* [Microsoft.AspNetCore.Identity.Data](8.0-ga_Microsoft.AspNetCore.Identity.Data.md)

Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Microsoft.AspNetCore.Components.Rendering

``` diff
namespace Microsoft.AspNetCore.Components.Rendering {
public sealed class RenderTreeBuilder : IDisposable {
- public void AddComponentParameter(int sequence, string name, IComponentRenderMode renderMode);
- public void AddComponentRenderMode(IComponentRenderMode renderMode);
+ public void AddComponentRenderMode(IComponentRenderMode? renderMode);
}
}
```

Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Microsoft.AspNetCore.Components.Web

``` diff
namespace Microsoft.AspNetCore.Components.Web {
- public class RenderModeInteractiveAutoAttribute : RenderModeAttribute {
- public RenderModeInteractiveAutoAttribute();
- public RenderModeInteractiveAutoAttribute(bool prerender);
- public override IComponentRenderMode Mode { get; }
- }
- public class RenderModeInteractiveServerAttribute : RenderModeAttribute {
- public RenderModeInteractiveServerAttribute();
- public RenderModeInteractiveServerAttribute(bool prerender);
- public override IComponentRenderMode Mode { get; }
- }
- public class RenderModeInteractiveWebAssemblyAttribute : RenderModeAttribute {
- public RenderModeInteractiveWebAssemblyAttribute();
- public RenderModeInteractiveWebAssemblyAttribute(bool prerender);
- public override IComponentRenderMode Mode { get; }
- }
}
```

Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Microsoft.AspNetCore.Identity.Data

``` diff
namespace Microsoft.AspNetCore.Identity.Data {
public sealed class InfoResponse {
- public required IDictionary<string, string> Claims { get; set; }
}
}
```

Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# API Difference 8.0-rc2 vs 8.0-ga

API listing follows standard diff formatting.
Lines preceded by a '+' are additions and a '-' indicates removal.

* [System.Numerics](8.0-ga_System.Numerics.md)

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# API Difference 8.0-rc2 vs 8.0-ga

API listing follows standard diff formatting.
Lines preceded by a '+' are additions and a '-' indicates removal.


7 changes: 7 additions & 0 deletions release-notes/8.0/preview/api-diff/ga/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# .NET 8.0 GA API Changes

The following API changes were made in .NET 8.0 GA:

- [Microsoft.NETCore.App](./Microsoft.NETCore.App/8.0-ga.md)
- [Microsoft.AspNetCore.App](./Microsoft.AspNetCore.App/8.0-ga.md)
- [Microsoft.WindowsDesktop.App](./Microsoft.WindowsDesktop.App/8.0-ga.md)
Loading