Skip to content
This repository was archived by the owner on Feb 15, 2023. It is now read-only.

Releases: jbogard/MediatR.Extensions.Microsoft.DependencyInjection

v11.1.0

Choose a tag to compare

@jbogard jbogard released this 15 Feb 13:41

This is the last release of this package. Its contents are folded into the main MediatR package. This release sets the maximum version of MediatR to the last one before the consolidation.

v11.0.0

Choose a tag to compare

@jbogard jbogard released this 30 Sep 09:42

What's Changed

New Contributors

Full Changelog: v10.0.1...v11.0.0

10.0.0

Choose a tag to compare

@jbogard jbogard released this 06 Jan 17:57

In addition to targeting MediatR 10.0.0, this release adds a few new features:

  • Allow changing order of request exception behaviors (#81)
  • Not registering open generics where arity does not match (#109)
  • Pass a function to evaluate types for binding as an additional filter (#107)
  • Updating to 6.0 of Microsoft.Extensions.DependencyInjection to support constrained generics
  • Targeting only netstandard2.1

8.0.1

Choose a tag to compare

@jbogard jbogard released this 30 Jun 15:40

This release adds support for calling AddMediatR multiple times (#77)

7.0.0

Choose a tag to compare

@jbogard jbogard released this 30 Apr 20:23
ab26360

This release targets the 7.0.0 release of MediatR.

It also includes fixes for:

  • Adding multiple pre/post request processors #59
  • Change default lifetime of services to transient #66
  • Making registration methods public #22 #60
  • Signing the package #62
  • Removed AppDomain scanning #70

The last one is a breaking change. It is now required to pass in the assemblies to scan due to loading exceptions. Instead of:

services.AddMediatR();

You'll need:

services.AddMediatR(typeof(Startup), typeof(Core) /* any other assemblies to scan */);