Task 032: Migrate from MediatR to TimeWarp.Mediator#554
Merged
StevenTCramer merged 11 commits intoAug 20, 2025
Merged
Conversation
…Mediator 13.0.0 - Bump TimeWarpStateVersion from 11.0.3 to 12.0.0-beta.1 - Replace MediatR 12.4.1 with TimeWarp.Mediator 13.0.0 in Directory.Packages.props
…t files - Update TimeWarp.State.csproj - Update TimeWarp.State.Plus.csproj - Update Test.App.Contracts.csproj - Update package tags to reference TimeWarp.Mediator
- Update global using statements in 7 files - Update explicit using in RoutesState_Clone_Tests.cs - Remove unnecessary MediatR using from Sample02Wasm - Add TimeWarp.Mediator using to Sample02Wasm Program.cs for IPipelineBehavior
TimeWarp.Mediator uses the corrected spelling 'AddMediator' instead of 'AddMediatR'
Update package version references in all sample projects to test the migration
- Add HTTP profile to launchSettings.json - Fix JSON formatting in launchSettings.json - Update RunTestApp.ps1 to use 'dotnet run' with HTTP profile instead of 'dotnet watch'
Update global.json to support .NET 10 preview for development
Auto-generated lock file updates from package restore
Update references from MediatR.Contracts.dll to TimeWarp.Mediator.Contracts.dll in TimeWarpStateActionAnalyser_Tests.cs
- Update XML comments to reference Mediator instead of MediatR - Fix analyzer test to use TimeWarp.Mediator.Contracts.dll - Update SVG diagram to replace MediatR with Mediator - Clean up all remaining textual references to MediatR 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Migrate TimeWarp.State from MediatR 12.4.1 to TimeWarp.Mediator 13.0.0 (version 12.0.0-beta.1)
Changes
MediatRtoTimeWarp.MediatorAddMediatRtoAddMediator(corrected spelling)Testing
Migration Notes
TimeWarp.Mediator is a fork of MediatR that maintains full API compatibility. The main changes are:
MediatR→TimeWarp.Mediatorusing MediatR→using TimeWarp.MediatorAddMediatR→AddMediatorAll interfaces (IRequest, IRequestHandler, IMediator, ISender, IPublisher) and behaviors work unchanged.
Known Issues
CI/CD Note
This PR will NOT publish to NuGet. Publishing only occurs on release creation via the release-publish.yml workflow.
Closes #32
🤖 Generated with Claude Code
Co-Authored-By: Claude noreply@anthropic.com