Skip to content

Commit

Permalink
API diff between .NET 8 RC2 and .NET 8 GA (#8919)
Browse files Browse the repository at this point in the history
* README.md

* AspNetCore

* NETCore

* WindowsDesktop
  • Loading branch information
carlossanlop committed Nov 27, 2023
1 parent 849cba3 commit 9cadcea
Show file tree
Hide file tree
Showing 8 changed files with 117 additions and 0 deletions.
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)

0 comments on commit 9cadcea

Please sign in to comment.