This repository has been archived by the owner on Jul 20, 2020. It is now read-only.
Releases: madewithlove/laravel-cqrs-es
Releases · madewithlove/laravel-cqrs-es
1.0.6
1.0.4
Update
- List of Laravel packages to also support more recent versions of Laravel
- Laravel global array helpers
- Dispatcher method
fire
renamed todispatch
1.0.3
Fixed
- Got rid of an unused composer dependency causing problems during installation in some projects
1.0.2
Fixed
- Fixed issue where events process managers were still being executed while replaying the event store
1.0.1
Fixed
- Fixed incorrect binding for EventManagement interface
- Fixed missing parameters when constructing a DbalEventStore
1.0.0
Changed
MethodNameInflector
dependencies are now injected when resolving from the IoC.- Upgraded to broadway 1.0.0
Fixed
Processor
classes now correctly require you to prefix methods withprocess
instead ofproject
.
0.8.0
Added
- Able to easily configure sagas through
broadway.php
Upgrade notes
If you're upgrading, make sure to add the following to your broadway.php
file:
/*
|--------------------------------------------------------------------------
| Saga configuration
|--------------------------------------------------------------------------
| You can choose a driver, possible options are:
|
| mongodb, inmemory
|
*/
'saga' => [
'driver' => 'inmemory',
'mongodb' => [
'collection' => 'sagas',
],
'sagas' => [],
],
0.7.0
Changed
- Upgrade
broadway/broadway
dependency to version 0.10 - Rename
generate:
commands tomake:cqrs
0.6.1
Fixed
- Remove
parent::boot()
call
0.6.0
Changed
- Make
ContextServiceProvider
compatible with Laravel 5.3
Deprecated
- Adding
protected $events
to an aggregates service provider is no longer supported