Skip to content

Releases: LuckyPennySoftware/MediatR

v13.1.0

24 Oct 15:20
dfdd556

Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v13.0.0...v13.1.0

v13.0.0

02 Jul 14:26

Choose a tag to compare

Full Changelog: v12.5.0...v13.0.0

  • Added support for .NET Standard 2.0
  • Requiring license key
  • Moving from Apache license to dual commercial/OSS license

To set your license key:

services.AddMediatR(cfg => {
    cfg.LicenseKey = "<License key here>";
});

You can obtain your license key at MediatR.io

v12.5.0

01 Apr 15:57
8a64581

Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v12.4.1...v12.5.0

v12.4.1

09 Sep 14:07
fb30902

Choose a tag to compare

What's Changed

Full Changelog: v12.4.0...v12.4.1

v12.4.0

23 Jul 19:24
cac76be

Choose a tag to compare

What's Changed

  • Add Support For Generic Handlers With Multiple Generic Type Parameters by @zachpainter77 in #1048

Full Changelog: v12.3.0...v12.4.0

v12.3.0

06 Jun 20:02
3b8bf44

Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v12.2.0...v12.3.0

v12.2.0

17 Nov 16:22
6baaeef

Choose a tag to compare

What's Changed

  • Adding tests and upgrading to .NET 8 preview by @jbogard in #955
  • Adding configuration to auto-register request processors by @jbogard in #970
  • Installing .NET 8 by @jbogard in #972

Full Changelog: v12.1.1...v12.2.0

v12.1.1

10 Jul 15:59
c295291

Choose a tag to compare

What's Changed

  • Fixing registration problem; moving exception behaviors first so that… by @jbogard in #925

Full Changelog: v12.1.0...v12.1.1

v12.1.0

07 Jul 19:46

Choose a tag to compare

Migration Guide

https://github.com/jbogard/MediatR/wiki/Migration-Guide-12.0-to-12.1

What's Changed

New Contributors

Full Changelog: v12.0.1...v12.1.0

This release removes all scanning around behaviors, stream behaviors, and pre/post processors. That proved too problematic so you MUST register each of these explicitly with the appropriate registration methods inside AddMediatR. This also ensures that the order of behaviors and pre/post processors reflects the explicit order of registration. With the scanning approach, you couldn't control the order.

v12.0.1

23 Feb 21:50
cbb16f9

Choose a tag to compare

What's Changed

  • Use actual request type in new 'Send' method by @remcoros in #844
  • Fixing request contract package by @jbogard in #856
  • Downgrade 7.0.0 Microsoft extensions packages to 6.0.0 by @asimmon in #852
  • Fixing test by @jbogard in #858
  • Skip unnecessary BCL package reference if targeting .NET 6 or later by @asimmon in #857

New Contributors

Full Changelog: v12.0.0...v12.0.1