Skip to content

Releases: spatie/laravel-event-sourcing

6.0.4

06 Dec 05:37
Compare
Choose a tag to compare
  • Don't mutate original events in FakeAggregateRoot::getRecordedEventsWithoutUuid (#296)

6.0.3

28 Nov 19:26
9e82f62
Compare
Choose a tag to compare

What's Changed

Full Changelog: 6.0.2...6.0.3

6.0.2

26 Nov 11:50
Compare
Choose a tag to compare
  • Skip retrieve on aggregate::fake (#294)

6.0.1

26 Nov 05:15
Compare
Choose a tag to compare
  • Fix for aggregate root testing without a database #292

6.0.0

24 Nov 10:04
bbc3682
Compare
Choose a tag to compare
  • Support PHP 8.1
  • The EventHandler interface was changed in order to use the spatie/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

17 Nov 13:25
76e17bc
Compare
Choose a tag to compare

What's Changed

  • Fixed tests/VersionedEventTest.php::a_versioned_event_can_be_restored by @etahamer in #286
  • Set minimum version of illuminate/database to ^8.34 by @etahamer in #290

Full Changelog: 5.0.7...5.0.8

5.0.7

17 Nov 08:59
887dd79
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 5.0.6...5.0.7

5.0.6

12 Sep 10:34
dfcaddb
Compare
Choose a tag to compare
  • fix AggregateRoot return types for static analysis (#251)

5.0.5

26 Jul 03:37
Compare
Choose a tag to compare
  • Use jsonb in migration stubs instead of json (#237)

5.0.4

15 Jun 03:55
Compare
Choose a tag to compare
  • Fix visual glitch in event-sourcing:list command where event handlers wouldn't be shown