Skip to content

Releases: spatie/laravel-event-sourcing

7.0.0

20 Jan 16:50
Compare
Choose a tag to compare

What's Changed

Full Changelog: 6.0.5...7.0.0

6.0.5

17 Jan 13:22
Compare
Choose a tag to compare

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

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)