Releases: Kros-sk/Kros.AspNetCore
Releases · Kros-sk/Kros.AspNetCore
Kros.AspNetCore v1.1.2
Bugfix
- #25 Fix bug with email claim
Kros.AspNetCore v1.1.1
UnauthorizedAccessException
is converted to 401 status code.
Kros.Swagger.Extensions v1.0.0
- #10 Added Kros.Swagger.Extensions
Kros.ApplicationInsights.Extensions v1.0.0
- #13 Added Kros.ApplicationInsights.Extensions
Kros.AspNetCore v1.1.0
Changes:
- #19 Add necessary things for authentication and authorization.
Kros.MediatR.Extensions v1.1.0-alpha4
mediatr-v_1.1.0alpha4 Update Kros.MediatR.Extensions.csproj
Kros.MediatR.Extensions v1.1.0-alpha2
mediatr-v_1.1.0alpha2 Update Kros.MediatR.Extensions.csproj
Kros.MediatR.Extensions v1.1.0-alpha1
Changes
- #15 - Add capability for ignoring request for checking null response
Sometime you need request (Query), which can return null
and you don't want throw NotFoundException
.
You can use new overload method AddMediatRNullCheckPostProcessor
services.AddMediatRNullCheckPostProcessor((o) =>
{
o.IgnoreRequest<CreateDefaultUserCommand>();
o.IgnoreRequest<AnotherCommand>();
});
Kros.AspNetCore v1.0.2-Alpha
Kros.MediatR.Extensions v1.0.2
Changes
- #6 - Add reference to
MediatR.Extensions.Microsoft.DependencyInjection