Releases: nWidart/Laravel-broadway
Releases · nWidart/Laravel-broadway
2.0.2
2.0.1
Added
Support for laravel 5.5
Version 2.0.0
This is solely a compatibility update for broadway/broadway 1.0.0.
Please read their UPGRADE GUIDE to see what needs updating in your codebase.
Notice: Broadway has split out a bunch of packages from its main repository (dbal / elasticsearch / sagas); This package has opted to require only the new dbal package. If you depend on ElasticSearch you will need to require it yourself.
composer require broadway/read-model-elasticsearch
Version 1.0.0
Added
- Support for laravel 5.4
Changed
- Updated broadway to 0.10
- Fixed DBAL connection using connection name instead of driver for pdo driver. (#17)
- Event store uuid column changed to char (#15)
- Make the stream decorator and enrichers available (#12)
- Create correct version of ElasticSearch client (#8)
- Fix error instantiating ElasticSearch client (#6)
Removed
- Dropped support for laravel 5.0
Version 0.3.0
Added
- Support for laravel 5
- Default concrete class for
AggregateFactoryInterface
(bound toPublicConstructorAggregateFactory
)
Changed
- Registering Command Handlers : new public api for registering command handlers
- Registering Projectors : new public api for registering projectors
Removed
- Dropped support for laravel 4
Version 0.2.1
Added
- Migration: Event Store table now has an id column auto incremented.
- Migration: Event Store table now has a uniqueness constraint on the
uuid
andplayhead
Changed
- Composer: Adding a prefer stable option in
composer.json
- Composer: Adding Elasticsearch package as a suggested package. Not included by default.
- Migration: Event Store table now use the correct types
Version 0.2
Added
- New command:
php artisan broadway:event-store:migrate table_name
to create the event store table - Read Model: A factory is now instantiating the read model implementation based on the setting
- Read Model: An In Memory read model driver is now available
- Event Store: A factory is now instantiating the event store implementation based on the setting
- Event Store: An In Memory event store driver is now available
Changed
- IoC key name of the Elasticsearch client from
elastic-search
toElasticsearch
- Config: Change the read-model key name of
elastic-search
toelasticsearch
Version 0.1 Beta Release
First version of Laravel-Broadway.