Skip to content

Commit f552e63

Browse files
committed
Release 6.0.0
1 parent ad993f3 commit f552e63

File tree

2 files changed

+15
-10
lines changed

2 files changed

+15
-10
lines changed

CHANGELOG.md

Lines changed: 15 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,23 +8,33 @@ The `Unreleased` section name is replaced by the expected version of next releas
88

99
## [Unreleased]
1010

11+
### Added
12+
### Changed
13+
### Removed
14+
### Fixed
15+
16+
<a name="6.0.0"></a>
17+
## [6.0.0] - 2022-09-16
18+
1119
### Added
1220

1321
- `eqxShipping`: `DynamoStore` and `EventStoreDb` support and Reactor Integration test [#121](https://github.com/jet/dotnet-templates/pull/121)
1422
- `eqxShipping`: Use `Propulsion.MemoryStore`'s `AwaitCompletion` [#121](https://github.com/jet/dotnet-templates/pull/121)
1523
- `eqxShipping`: Use `Propulsion.DynamoStore`+`EventStoreDb`'s `AwaitCompletion` [#121](https://github.com/jet/dotnet-templates/pull/121)
24+
- `proProjector`, `proReactor`: Add, standardize `cosmos`, `dynamo`, `esdb`, `sss` [#122](https://github.com/jet/dotnet-templates/pull/122)
25+
- `eqxwebcs`: Removed lots of boilerplate/wiring (by using `DeciderCore`) [#122](https://github.com/jet/dotnet-templates/pull/122)
26+
- `eqxweb`: Add `dynamo` [#122](https://github.com/jet/dotnet-templates/pull/122)
1627

1728
### Changed
1829

19-
- Target `Equinox` v `4.0.0`, `Propulsion` v `3.0.0`, `FsCodec` v `3.0.0`, `net6.0` [#122](https://github.com/jet/dotnet-templates/pull/122)
30+
- Target `Equinox` v `4.0.0-rc.1`, `Propulsion` v `3.0.0-beta.4`, `FsCodec` v `3.0.0-rc.7.1`, `net6.0` [#122](https://github.com/jet/dotnet-templates/pull/122)
31+
- All EventStoreDB templates (except `proSync`) now use the `*.EventStoreDb` edition (which uses `grpc`) [#122](https://github.com/jet/dotnet-templates/pull/122)
2032

2133
### Removed
2234

2335
- `eqxProjector --source cosmos --kafka --synthesizeSequence`: Removed custom mode [#122](https://github.com/jet/dotnet-templates/pull/122)
2436
- `proReactor`: remove `--filter` (see `proSync`) and `--changeFeedOnly` (see `proReactorCosmos`) [#122](https://github.com/jet/dotnet-templates/pull/122)
2537

26-
### Fixed
27-
2838
<a name="5.3.0"></a>
2939
## [5.3.0] - 2022-07-19
3040

@@ -580,7 +590,8 @@ The `Unreleased` section name is replaced by the expected version of next releas
580590

581591
(For information pertaining to earlier releases, see release notes in https://github.com/jet/dotnet-templates/releases and/or can someone please add it!)
582592

583-
[Unreleased]: https://github.com/jet/dotnet-templates/compare/5.3.0...HEAD
593+
[Unreleased]: https://github.com/jet/dotnet-templates/compare/6.0.0...HEAD
594+
[6.0.0]: https://github.com/jet/dotnet-templates/compare/5.3.0...6.0.0
584595
[5.3.0]: https://github.com/jet/dotnet-templates/compare/5.2.1...5.3.0
585596
[5.2.1]: https://github.com/jet/dotnet-templates/compare/5.2.0...5.2.1
586597
[5.2.0]: https://github.com/jet/dotnet-templates/compare/5.1.0...5.2.0

equinox-patterns/Domain/Infrastructure.fs

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,3 @@ type Accumulator<'e, 's>(originState : 's, fold : 's -> seq<'e> -> 's) =
3030
// /// Projects from the present state including accumulated events
3131
// member _.Query(render : 's -> 'r) : 'r =
3232
// render state
33-
34-
type Equinox.Decider<'e, 's> with
35-
36-
// in baseline V4 API Decider API
37-
member x.Transact(decide) =
38-
x.TransactAsync decide

0 commit comments

Comments
 (0)