This repository has been archived by the owner on Feb 15, 2023. It is now read-only.
Releases: jbogard/MediatR.Extensions.Microsoft.DependencyInjection
Releases · jbogard/MediatR.Extensions.Microsoft.DependencyInjection
v11.1.0
v11.0.0
What's Changed
- docs: Update README with lifetimes of IPublisher and ISender by @christianfosli in #120
New Contributors
- @christianfosli made their first contribution in #120
Full Changelog: v10.0.1...v11.0.0
10.0.0
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
7.0.0
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 */);