Releases: spatie/laravel-event-sourcing
Releases · spatie/laravel-event-sourcing
7.0.0
6.0.5
What's Changed
- Add v4 to v5 upgrade overview to UPGRADING.md by @inxilpro in #297
- Typo fix in documentation - subtracting is also a transaction by @ndeblauw in #303
- Repaired URLs to current documentation version. by @Mul-tiMedia in #304
- Add line break to increase readability by @craigpotter in #305
- Change event_version column type from int to unsigned tinyint by @rapkis in #306
Full Changelog: 6.0.4...6.0.5
6.0.4
6.0.3
6.0.2
6.0.1
6.0.0
- Support PHP 8.1
- The
EventHandler
interface was changed in order to use thespatie/better-types
package:
- public function handles(): array;
+ public function handles(StoredEvent $storedEvent): bool;
- public function handle(StoredEvent $event);
+ public function handle(StoredEvent $storedEvent): void;
5.0.8
5.0.7
What's Changed
- Update introduction.md by @WouterBrouwers in #266
- Update installation-setup.md by @WouterBrouwers in #265
- Update introduction.md by @WouterBrouwers in #264
- Update using-projectors-to-transform-events.md by @WouterBrouwers in #263
- Update using-aggregates-to-make-decisions-based-on-the-past.md by @WouterBrouwers in #262
- Update creating-and-configuring-projectors.md by @WouterBrouwers in #261
- Update thinking-in-events.md by @WouterBrouwers in #260
- Update writing-your-first-reactor.md by @WouterBrouwers in #259
- Update writing-your-first-aggregate.md by @WouterBrouwers in #258
- Update replaying-events.md by @WouterBrouwers in #257
- Update storing-metadata.md by @WouterBrouwers in #256
- fix broken link to the course by @macbookandrew in #253
- Fix urls pointing to previous version by @quintenbuis in #269
- [Docs] Add
EloquentStoredEvent
import to example by @stevebauman in #273 - [Docs] Add missing opening bracket for
Account
model by @stevebauman in #272 - [Docs] Fix wrong operator for onMoneySubtracted by @avosalmon in #279
- Changed cursor() into lazyById() to preserve memory when working with large amount of events by @etahamer in #284
New Contributors
- @WouterBrouwers made their first contribution in #266
- @macbookandrew made their first contribution in #253
- @quintenbuis made their first contribution in #269
- @stevebauman made their first contribution in #273
- @avosalmon made their first contribution in #279
- @etahamer made their first contribution in #284
Full Changelog: 5.0.6...5.0.7