Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 23, 2025

Updated MediatR from 12.4.1 to 14.0.0.

Release notes

Sourced from MediatR's releases.

14.0.0

What's Changed

Full Changelog: LuckyPennySoftware/MediatR@v13.1.0...v14.0.0

14.0.0-beta-1

What's Changed

Full Changelog: LuckyPennySoftware/MediatR@v13.1.0...v14.0.0-beta-1

This release is a beta release that introduces .NET 10 support and package signing. Signed packages means going forward packages can be validated against trusted authorities that the package has been published by Lucky Penny Software and not tampered with.

13.1.0

What's Changed

New Contributors

Full Changelog: LuckyPennySoftware/MediatR@v13.0.0...v13.1.0

13.0.0

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

12.5.0

What's Changed

New Contributors

Full Changelog: LuckyPennySoftware/MediatR@v12.4.1...v12.5.0

Commits viewable in compare view.

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

trickpatty and others added 13 commits December 20, 2025 17:04
Expanded the README to provide detailed information about the project, including its purpose, design principles, core capabilities, hardware assumptions, licensing, project status, contributing guidelines, and overall philosophy.
- Add CLAUDE.md with development expectations (DRY, SOLID, DDD, TDD)
- Add CONTRIBUTING.md with GitHub contribution guidelines
- Add CODE_OF_CONDUCT.md based on Contributor Covenant 2.1
- Define conventional commits with Gitmoji standards
- Establish documentation-driven design requirements
- Create docs/PROJECT-OVERVIEW.md with complete product specification
  - Executive summary and vision statement
  - Stakeholder personas and role matrix
  - Core UX principles (glanceable, zero-distraction, etc.)
  - Comprehensive functional scope (10 feature areas)
  - Non-functional requirements (reliability, performance, security)

- Create docs/ARCHITECTURE.md with TOGAF-compliant architecture
  - Architecture principles (business, data, application, technology)
  - Business capability model and process maps
  - Data architecture with domain models and storage strategy
  - Application architecture with bounded contexts
  - Technology reference model and platform matrix
  - Security and integration architecture
  - Deployment architecture for self-hosting

- Create docs/ROADMAP.md with phased implementation plan
  - Six development phases from Foundation to Ecosystem
  - Detailed scope items per phase with checklists
  - Dependency map and critical path
  - Risk register for technical and product risks

- Create 7 Architecture Decision Records (ADRs):
  - ADR-001: TypeScript as Primary Language
  - ADR-002: React as UI Framework
  - ADR-003: Local-First Data Architecture
  - ADR-004: Two-Way Sync Initially Google-Only
  - ADR-005: Magic Import Requires Approval
  - ADR-006: Zero-Distraction Design Principle
  - ADR-007: Self-Hosting as Primary Model

- Update CLAUDE.md with TOGAF EA principles and governance
  - Add links to new documentation
  - Add Architecture Development Method (ADM) phases
  - Add core architecture principles (BP, DP, AP, TP)
  - Add architecture governance process
  - Expand scopes for new functional areas
Major architectural pivot from local-first TypeScript/React to Azure-hosted
multi-tenant SaaS platform:

- Backend: C#/.NET 10 with Clean Architecture
- Web/Display: TypeScript/Angular 19+ with Electron
- Mobile: Native iOS (Swift/SwiftUI) and Android (Kotlin/Compose)
- Cloud: Azure PaaS services (CosmosDB, Functions, App Service, B2C)
- IaC: Bicep with Azure Verified Modules (AVMs)

Updated documentation:
- ARCHITECTURE.md: Complete Azure architecture with data models
- PROJECT-OVERVIEW.md: Multi-tenant deployment model and device linking
- ROADMAP.md: 6-phase implementation plan for new stack
- CLAUDE.md: Updated principles and development commands

New ADRs (ADR-001 through ADR-010):
- .NET 10 backend, Angular web framework, Azure cloud platform
- Native mobile apps, CosmosDB data store, multi-tenant architecture
- Bicep/AVMs for IaC, Magic Import approval, Zero-distraction principle
- Azure AD B2C for identity

Removed superseded ADRs (TypeScript, React, local-first, self-hosting)
…tion

Replace external identity provider with in-house passwordless-first
authentication system supporting:

- Passkeys (WebAuthn/FIDO2) as primary method
- Hardware security keys (YubiKey, etc.)
- Email OTP / Magic links for passwordless
- Social sign-on (Google, Apple, Microsoft)
- Email/password with MFA as fallback

Updated documentation:
- ADR-010: Complete rewrite for passwordless architecture
- ARCHITECTURE.md: Updated security diagrams and requirements
- ROADMAP.md: Updated auth tasks for passkey integration
- CLAUDE.md: Updated auth scope description

Key benefits:
- Phishing-resistant authentication
- Better UX with biometrics
- No per-authentication costs
- Full control over auth flows
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Dec 23, 2025

Labels

The following labels could not be found: .net, dependencies, nuget. Please create them before Dependabot can add them to a pull request.

Please fix the above issues or remove invalid values from dependabot.yml.

@dependabot dependabot bot force-pushed the dependabot/nuget/MediatR-14.0.0 branch from d8afa3b to b7523e0 Compare December 24, 2025 01:19
---
updated-dependencies:
- dependency-name: MediatR
  dependency-version: 14.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Dec 24, 2025

OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting @dependabot ignore this major version or @dependabot ignore this minor version. You can also ignore all major, minor, or patch releases for a dependency by adding an ignore condition with the desired update_types to your config file.

If you change your mind, just re-open this PR and I'll resolve any conflicts on it.

@dependabot dependabot bot deleted the dependabot/nuget/MediatR-14.0.0 branch December 24, 2025 14:31
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.

4 participants