Skip to content

Releases: Kros-sk/Kros.AspNetCore

Kros.AspNetCore v1.1.2

12 Jun 08:04
3e146fe
Compare
Choose a tag to compare

Bugfix

  • #25 Fix bug with email claim

Kros.AspNetCore v1.1.1

04 Jun 11:11
Compare
Choose a tag to compare
  • UnauthorizedAccessException is converted to 401 status code.

Kros.Swagger.Extensions v1.0.0

03 Jun 16:27
Compare
Choose a tag to compare
  • #10 Added Kros.Swagger.Extensions

Kros.ApplicationInsights.Extensions v1.0.0

03 Jun 16:26
Compare
Choose a tag to compare
  • #13 Added Kros.ApplicationInsights.Extensions

Kros.AspNetCore v1.1.0

28 May 10:45
ad846be
Compare
Choose a tag to compare

Changes:

  • #19 Add necessary things for authentication and authorization.

Kros.MediatR.Extensions v1.1.0-alpha4

23 May 11:05
03fe4c5
Compare
Choose a tag to compare
Pre-release
mediatr-v_1.1.0alpha4

Update Kros.MediatR.Extensions.csproj

Kros.MediatR.Extensions v1.1.0-alpha2

23 May 10:39
76093a3
Compare
Choose a tag to compare
Pre-release
mediatr-v_1.1.0alpha2

Update Kros.MediatR.Extensions.csproj

Kros.MediatR.Extensions v1.1.0-alpha1

07 May 06:15
12835ad
Compare
Choose a tag to compare

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

03 May 08:57
Compare
Choose a tag to compare
Pre-release

Changes:

  • #11 - Added BaseStartup class.
  • #12 - Added CORS support.

Kros.MediatR.Extensions v1.0.2

24 Apr 11:43
f8f2440
Compare
Choose a tag to compare

Changes

  • #6 - Add reference to MediatR.Extensions.Microsoft.DependencyInjection