Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update dependency mediatr to v12 #939

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Feb 14, 2023

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
MediatR 9.0.0 -> 12.4.1 age adoption passing confidence

Release Notes

jbogard/MediatR (MediatR)

v12.4.1

What's Changed

Full Changelog: jbogard/MediatR@v12.4.0...v12.4.1

v12.4.0

What's Changed

Full Changelog: jbogard/MediatR@v12.3.0...v12.4.0

v12.3.0

What's Changed

New Contributors

Full Changelog: jbogard/MediatR@v12.2.0...v12.3.0

v12.2.0

What's Changed

Full Changelog: jbogard/MediatR@v12.1.1...v12.2.0

v12.1.1

What's Changed

Full Changelog: jbogard/MediatR@v12.1.0...v12.1.1

v12.1.0

Migration Guide

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

What's Changed
New Contributors

Full Changelog: jbogard/MediatR@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

What's Changed
New Contributors

Full Changelog: jbogard/MediatR@v12.0.0...v12.0.1

v12.0.0

What's Changed
New Contributors

Migration Guide
Full Changelog: jbogard/MediatR@v11.1.0...v12.0.0

v11.1.0

What's Changed
New Contributors

Full Changelog: jbogard/MediatR@v11.0.0...v11.1.0

v11.0.0

What's Changed
New Contributors

Full Changelog: jbogard/MediatR@v10.0.1...v11.0.0
Migration Guide: https://github.com/jbogard/MediatR/wiki/Migration-Guide-10.x-to-11.0

v10.0.1: 10.0.1

This is a patch release to support the latest Contracts package, which changed its targets to netstandard2.0 and net461.

Although MediatR supports only netstandard2.1 and above, it should not force the consumers of the contracts as such.

v10.0.0: 10.0.0

This release adds support for IAsyncEnumerable<T>. A new request type, IStreamRequest<T> represents a request to create a stream, with a new handler type IStreamRequestHandler<TRequest, TResponse> to handle. An example:

public class StreamPing : IStreamRequest<Pong>
{
    public string? Message { get; init; }
}

public class PingStreamHandler : IStreamRequestHandler<StreamPing, Pong>
{
    public async IAsyncEnumerable<Pong> Handle(StreamPing request, 
        [EnumeratorCancellation] CancellationToken cancellationToken)
    {
        yield return await Task.Run(() => new Pong { Message = request.Message + " Pang" }, cancellationToken);
    }
}

Where the work inside of the handler would likely be calling some other streaming API, such as gRPC, EF Core streaming support, Dapper streaming etc.

There are also separate behaviors, with IStreamPipelineBehavior that are separate from the normal IPipelineBehavior.

With the addition of IAsyncEnumerable, this release now targets netstandard2.1 exclusively.

There are some breaking API changes, called out in the 10.0 migration guide.


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@github-actions github-actions bot added this to the v0.19.8 milestone Feb 14, 2023
@renovate renovate bot force-pushed the renovate/mediatr-12.x branch from b13f0fd to de0f273 Compare February 24, 2023 00:06
@renovate renovate bot force-pushed the renovate/mediatr-12.x branch from de0f273 to d22658c Compare March 15, 2023 18:43
@renovate renovate bot force-pushed the renovate/mediatr-12.x branch 2 times, most recently from d9400c8 to 13a2cd3 Compare July 10, 2023 17:20
@renovate renovate bot force-pushed the renovate/mediatr-12.x branch from 13a2cd3 to dc943d7 Compare September 19, 2023 11:15
@JoeRobich JoeRobich modified the milestones: v0.19.8, v0.19.9 Sep 20, 2023
@renovate renovate bot force-pushed the renovate/mediatr-12.x branch 2 times, most recently from dcff6f7 to df8924d Compare September 21, 2023 21:04
@JoeRobich JoeRobich modified the milestones: v0.19.9, v0.19.10 Sep 22, 2023
@renovate renovate bot force-pushed the renovate/mediatr-12.x branch from df8924d to 97e9b74 Compare October 2, 2023 17:08
@renovate renovate bot force-pushed the renovate/mediatr-12.x branch from 97e9b74 to 90275e2 Compare October 26, 2023 21:33
@renovate renovate bot force-pushed the renovate/mediatr-12.x branch from 90275e2 to 8586e65 Compare November 17, 2023 18:13
@renovate renovate bot changed the title Update dependency MediatR to v12 chore(deps): update dependency mediatr to v12 Nov 20, 2023
@renovate renovate bot force-pushed the renovate/mediatr-12.x branch from 8586e65 to 92b9e96 Compare December 12, 2023 06:44
@renovate renovate bot force-pushed the renovate/mediatr-12.x branch 2 times, most recently from 6d647f7 to cacb828 Compare January 2, 2024 03:58
@renovate renovate bot force-pushed the renovate/mediatr-12.x branch 3 times, most recently from 771241d to 15204bd Compare January 14, 2024 21:17
@renovate renovate bot force-pushed the renovate/mediatr-12.x branch 2 times, most recently from bc126cd to b98ba46 Compare March 10, 2024 01:14
@renovate renovate bot force-pushed the renovate/mediatr-12.x branch from b98ba46 to 6187bde Compare May 29, 2024 00:03
@renovate renovate bot force-pushed the renovate/mediatr-12.x branch from 6187bde to d82bae1 Compare June 6, 2024 23:14
@renovate renovate bot force-pushed the renovate/mediatr-12.x branch 2 times, most recently from 72f7003 to 1e7ba6f Compare July 23, 2024 20:31
@renovate renovate bot force-pushed the renovate/mediatr-12.x branch from 1e7ba6f to 6ae5baa Compare September 3, 2024 04:15
@renovate renovate bot force-pushed the renovate/mediatr-12.x branch from 6ae5baa to 4d81390 Compare September 9, 2024 14:47
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant