Skip to content

Releases: prooph/event-store-mongodb-adapter

3.0.1 Release

26 Aug 18:11
7324a5d
Compare
Choose a tag to compare

Fixed

3.0.0 Release

16 Aug 10:35
5d15a0f
Compare
Choose a tag to compare

Added

  • Use MongoDB 4.0 multi document transactions
  • Requires MongoDB >= 4.0
  • Requires MongoDB PHP Driver >= 1.5.2
  • Creates collection indexes in background

2.5.0 Release

08 Jul 19:58
v2.5.0
ec5a5ac
Compare
Choose a tag to compare

Added

  • #63 Allow to disable MongoDB $isolated

2.4.1 Release

21 Feb 12:02
v2.4.1
Compare
Choose a tag to compare

Added

  • compound index for transaction_id and expire_at (#61)

It is necessary to add this index manually to existing collection streams. Run this in your mongo shell:

db.[your stream collection].createIndex({"transaction_id" : 1, "expire_at" : 1})

2.4.0 Release

22 Jul 18:46
Compare
Choose a tag to compare

Fixed

  • #59 Create missing index for replaying

2.3.0 Release

05 Jul 10:01
Compare
Choose a tag to compare

Additions

  • Allow PHP 7

2.2 Release

28 Jun 20:18
Compare
Choose a tag to compare

#Fixed

  • #58 better concurrency handling

2.1.1 Release

14 May 07:01
Compare
Choose a tag to compare

Changed:

  • Update mininum requirements
  • Better build matrix for travis

2.1 Release

08 May 18:37
Compare
Choose a tag to compare

Changed

2.0.3 Bugfix Release

01 Apr 13:55
Compare
Choose a tag to compare

Fixes

  • Wrong indexes on transaction_id and expire_at were removed