Skip to content

Release of new minor version v1.21 #70

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

Merged
merged 20 commits into from
Apr 8, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [1.17.0] - 2025-03-21

### Changed

- Changed `ICommandProcessorFactory`, `ICommandHandlerFactory` and `CommandProcessor<>` to be
registered as transient rather than singleton. This allows `CommandHandler` implementations to use
dependencies registered as scoped.

- Reintroduce `IProjectionFactory` in a slightly modified version to allow consumers to make additional "initialization" of projections.

## [1.17.0] - 2025-03-21

### Fixed

- Ensure that a projection can run in its own scope. This is important as we do not want state to leak from one projection to the other.
Expand Down
2 changes: 1 addition & 1 deletion version.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/main/src/NerdBank.GitVersioning/version.schema.json",
"version": "1.20",
"version": "1.21",
"assemblyVersion": {
"precision": "revision"
},
Expand Down
Loading