Skip to content

Commit

Permalink
added release 3.5.0 to the notes
Browse files Browse the repository at this point in the history
  • Loading branch information
idugalic committed Jul 14, 2023
1 parent 617332a commit 6997b41
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions src/pages/release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,21 @@ fun <C, S, E> EventSourcingAggregate<C, S, E>.handleConcurrently(

Deprecating factory functions in favor of constructor-like functions.

```kotlin
@Deprecated(
message = "Use EventSourcingLockingAggregate constructor-like function instead",
replaceWith = ReplaceWith("EventSourcingLockingAggregate(decider, eventRepository)")
)
fun <C, S, E, V> eventSourcingLockingAggregate(
decider: IDecider<C, S, E>,
eventRepository: EventLockingRepository<C, E, V>
): EventSourcingLockingAggregate<C, S, E, V> =
object : EventSourcingLockingAggregate<C, S, E, V>,
EventLockingRepository<C, E, V> by eventRepository,
IDecider<C, S, E> by decider {}

```


**Full Changelog**: https://github.com/fraktalio/fmodel/compare/v3.4.0...v3.5.0

Expand Down

0 comments on commit 6997b41

Please sign in to comment.