7.0.0 Preview 1 #910
Unanswered
commonsensesoftware
asked this question in
Q&A
Replies: 1 comment 1 reply
-
As far as I understand, MapGroup is not fully implemented with .NET7, see dotnet/aspnetcore#41433 |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
This is the first preview release for ASP.NET Core with .NET 7.0 support. No additional work is planned, but there are some breaking changes that can be tried, tested, and discussed before promoting to the official release.
Features
ASP.NET Core
IProblemDetailsFactory
toIProblemDetails
MapGroup
in Minimal APIsVersioning Minimal APIs still requires a version set which collates configured API versions, but the new
MapGroup
support makes the setup more natural.ASP.NET Core with OData
9.0
9.0
could cause complication or require a major version bump for OData packages hereBreaking Changes
IVersionedEndpointConventionBuilder
andVersionedEndpointConventionBuilder
have been removed and are no longer necessaryDefaultApiVersionSetBuilderFactory
now has a parameterless, default constructorIVersionedEndpointConventionBuilder WithApiVersionSet(IEndpointConventionBuilder, ApiVersionSet)
is nowTBuilder WithApiVersionSet<TBuilder>(TBuilder, ApiVersionSet) where TBuilder : notnull, IEndpointConventionBuilder
ProblemDetails
implementationIProblemDetailsFactory
has been removed and is supplanted by the built-inIProblemDetailsService
IServiceCollection.AddProblemDetails()
must be called to addProblemDetails
If you have additional input or feedback, please provide them in the discussion. This will be the one and only time to discuss it before the release becomes official.
This discussion was created from the release 7.0.0 Preview 1.
Beta Was this translation helpful? Give feedback.
All reactions