Skip to content
This repository has been archived by the owner on Jul 20, 2020. It is now read-only.

Releases: madewithlove/laravel-cqrs-es

1.0.6

23 Mar 18:27
e312d6f
Compare
Choose a tag to compare

Add

  • Support for Laravel 7

1.0.4

11 Mar 10:30
57af220
Compare
Choose a tag to compare

Update

  • List of Laravel packages to also support more recent versions of Laravel
  • Laravel global array helpers
  • Dispatcher method fire renamed to dispatch

1.0.3

12 Jul 07:01
Compare
Choose a tag to compare

Fixed

  • Got rid of an unused composer dependency causing problems during installation in some projects

1.0.2

09 Aug 08:49
8ff1fb5
Compare
Choose a tag to compare

Fixed

  • Fixed issue where events process managers were still being executed while replaying the event store

1.0.1

15 Mar 19:46
9621254
Compare
Choose a tag to compare

Fixed

  • Fixed incorrect binding for EventManagement interface
  • Fixed missing parameters when constructing a DbalEventStore

1.0.0

15 Mar 19:35
23e763b
Compare
Choose a tag to compare

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 with process instead of project.

0.8.0

18 Jan 18:20
5121a18
Compare
Choose a tag to compare

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

02 Jan 19:09
c6acd38
Compare
Choose a tag to compare

Changed

  • Upgrade broadway/broadway dependency to version 0.10
  • Rename generate: commands to make:cqrs

0.6.1

16 Dec 12:28
c704d72
Compare
Choose a tag to compare

Fixed

  • Remove parent::boot() call

0.6.0

16 Dec 12:23
ecde3c8
Compare
Choose a tag to compare
0.6.0 Pre-release
Pre-release

Changed

  • Make ContextServiceProvider compatible with Laravel 5.3

Deprecated

  • Adding protected $events to an aggregates service provider is no longer supported