Skip to content

Releases: prooph/event-store-doctrine-adapter

3.3.0 Release

13 Oct 05:14
v3.3.0

Choose a tag to compare

Added

  • load / replay events in chunks for better memory usage (#35)

Removed

  • nothing

Fixed

  • nothing

3.2.1 Release

28 Jun 20:17

Choose a tag to compare

#Fixed

  • #37 better concurrency exception message

3.2 Release

27 Jun 15:03

Choose a tag to compare

Added

  • #36 add concurrency exception

Fixed

  • #36 Remove "aggregate_type" from unique index and create unique index on the fly

3.1.1 Release

14 May 06:29

Choose a tag to compare

Changed:

  • Improved database schema
  • Update to interop config 1.0
  • Bugfix for factory
  • Update dependend minimum requirements

3.1 Release

08 May 18:34

Choose a tag to compare

Changed

3.0 Release

22 Nov 22:59

Choose a tag to compare

This version is compatible with prooph/event-store v6.0 only and supports iterator event streams and replay functionality.

Added

  • #16 Replay functionality
  • #13 Event stream as iterator

Changed

  • #28 requires doctrine dbal >= 2.5 as 2.4 does not work on PHP7
  • #23 Use interop-config to reduce factory code

Fixed

  • #20 Namespace organisation in tests

v3.0-beta.1 Release

21 Oct 21:08

Choose a tag to compare

v3.0-beta.1 Release Pre-release
Pre-release

Beta release with support for upcoming prooph/event-store v6

Milestone: v3.0

3.0-beta.2 Release

23 Oct 18:49

Choose a tag to compare

3.0-beta.2 Release Pre-release
Pre-release

Fixed

  • #25 Wrong event order while replaying events of multiple aggregates managed with a single stream

2.0 Release

08 Sep 20:23

Choose a tag to compare

Version 2.0 of the DoctrineEventStore adapter ships with support for prooph/event-store 5.0 and prooph/common 3.3. Furthermore, the adapter no longer takes a configuration array as constructor argument but instead requires all dependencies to be injected in the constructor. A new container-aware factory will help you set up the adapter.

Added

  • DoctrineEventStoreAdapterFactory that works with a ``Interop\Container` to help you set up the adapter

Changed

  • The adapter now requires all dependencies in the constructor instead of a configuration array - BC Break
  • The adapter now works with a Prooph\Common\Messaging\MessageFactory to translate persisted events back to event objects
  • The adapter now works with a Prooph\Common\Messaging\MessageConverter to translate event object into PHP arrays
  • The adapter now works with a Prooph\EventStore\Adapter\PayloadSerializer to serialize/unserialize event payload data

Removed

  • The table column event_class is no longer needed as the ``MessageFactory` is responsible of creating the correct event object based on the event name and event data
  • Inheritance support is removed by adding the final keyword to the adapter class

2.0-beta.1 Release

04 Sep 17:14

Choose a tag to compare

2.0-beta.1 Release Pre-release
Pre-release
Merge pull request #11 from prooph/php7-and-hhvm

test php7 on travis