All Versions
15
Latest Version
Avg Release Cycle
26 days
Latest Release
2935 days ago
Changelog History
Page 1
Changelog History
Page 1
-
v0.4.6 Changes
January 09, 2017๐ Bugfixes
- [Core] Entity interface drops type parameter (#178)
๐ Features
- [Repository] Introduced QuerySubscriber (#164)
๐ Improvements
- [Layout] Improve error message (#180)
- [PostgreSQL] enforce pgjdbc-ng and make use of HikariCP underneath (#185)
- Minor components dependency graph improvement (#186)
- [Kotlin] Drop class analyzer requirement (#187)
โฌ๏ธ Upgrades
-
v0.4.5 Changes
November 13, 2016 -
v0.4.4 Changes
October 28, 2016๐ Bugfixes
- [HLC] Absence of local NTP server silently locks es4j up (#163)
- ๐ป [Core] Use of MultiValueIndex results in an exception (#165)
- [PostgreSQL] Map type name in PostgreSQL can get too long and trimmed (#168)
- [Core] Impossible to index non-primitive attributes (#169)
- [Repository] Exceptionally terminated commands still get
result()
called (#170)
๐ Features
- [Core] EntitySubscriber (optional) repository capture (#166)
-
v0.4.3 Changes
October 17, 2016Backwards-incompatible changes
- [Core] OSGi BundleCommandSetProvider and BundleEventSetProvider are replaced with a single, automatically installed OSGiEntitiesProvider that scans all bundles (#161)
๐ Bugfixes
- ๐ฆ [Core] A test package was leaked into the main source set (#162)
- [PostgreSQL] Netty dependency for eventsourcing-postgresql was not OSGi compatible (#158)
โฌ๏ธ Upgrades
- [Core] cqengine 2.8.0 (#159)
-
v0.4.2 Changes
September 21, 2016 -
v0.4.1 Changes
September 14, 2016Backwards-incompatible changes
- [Core] Index definition syntax is simplified for most of cases (when query options are not necessary) (#144)
๐ Bugfixes
- [Repository] Command#events can no longer block publishing commands through the repository (#147)
- [CEP] RFC 3/CEP event layout names were incorrect (#148)
- [PostgreSQL] PostgreSQL is no longer leaking ResultSet when deserializing arrays (#150)
โฌ๏ธ Upgrades
- [Core] cqengine 2.7.1 (#143)
Misc
- A process manager implementation example is provided (#146)
-
v0.4.0 Changes
July 15, 2016Backwards-incompatible changes
- ๐ [Core]
Entity
,Command
andEvent
are now interfaces, the classes were moved to toStandardEntity
,StandardCommand
andStandardEvent
(#67) - [Core]
Model#id()
has been renamed toModel#getId()
for consistency of the interface (#114) - [Core] Entity layouts are now constructor + getters driven, allowing for immutable entities (#83, #87)
- [Layout]
new Layout<>(klass)
has been replaced withLayout.forClass(klass)
(#83) - [Core]
Command<Result>
signature has been changed toCommand<State,Result>
,Command#events
return type has changed toEventStream
to hold the state andCommand#onCompletion
has been renamed to#result
(#77, #84) - [Core] New index definition syntax via
SimpleIndex
andMultiValue
index (#133) - ๐ [Core] Most of repository implementation related code was moved to
com.eventsourcing.repository
(#64) - [Core]
new StandardRepository()
now will use localhost NTP server (#76, #66) - [Core] Renamed
MemoryLockProvider
toLocalLockProvider
(#69, #70) - ๐ [Core]
Journal#commandEventsIterator
has been removed (#69) - ๐ [Core]
MemoryJournal
has been moved toeventsourcing-inmem
(#69) - [Layout] Layout serialization/deserialization framework can be extended to other byte-oriented encodings (#74)
๐ Bugfixes
- [Core] Plugging in indices did not work (#94)
- [Core] Entity static initialization can no longer hang the current thread (#65)
- [H2] MVStoreJournal#journal will no longer into an infinite recursion on
๐ป having an exception during
CommandTerminatedExceptionally
journalling (#82) - [Core] OSGi
StandardRepository#activate()
now waits until repository is started (#92) - [Core] byte[] equality did not work in MemoryIndexEngine (#100)
- โก๏ธ [HLC] Fixed initialization of HybridTimestamp and updating with another HybridTimestamp (#112)
๐ Features
- [CEP] Migrated es4j-cep into the project to maintain version parity (#60)
- [Migrations] Implemented 8/EMT and
LayoutMigration
to standardize migrations (#69) - [Core]
EventCausalityEstablished
event-command causality indexing has been implemented (#69) - ๐ [Core] Better support for Kotlin in
Repository
(#72) - [Queries] Composable model collection queries (#123)
- โ
[Queries]
LatestAssociatedEntryQuery
query has been added (#115) - โ
[Queries]
IsLatestEntity
query has been added (#117) - [Queries]
ModelQueries.lookup
helper for looking up an entity by ID has been added (#116) - [PostgreSQL] Implemented PostgreSQL journal (#79)
- [PostgreSQL] Implemented PostgreSQL equality and navigable indices (#94, #104)
- ๐ [PostgreSQL] Implemented PostgreSQL-based lock provider
PostgreSQLLockProvider
(#98) - [Core] Expose CascadingIndexEngine index decisions through JMX (#94)
- ๐ [Kotlin] Add basic support for Kotlin (#88, #99)
Specification compliance
- [Core] Layout and Property are now 7/LDL compliant (#61)
- [Repository]
AbstractRepository
now adheres to 8/EMT and recordsEntityLayoutIntroduced
(#91) - ๐ป [Repository]
AbstractRepository
now adheres to the exception reporting specified in 9/RIG (#102)
โฌ๏ธ Upgrades
- cqengine 2.7.0 (#135)
Misc
- Source and javadoc jars are now included into distribution (#78)
- ๐ [Core]
-
v0.3.2 Changes
June 15, 2016๐ Features
- [Core] Added an API to iterate over command's events (#46)
- โก๏ธ [Core] If a command had a timestamp prior to publishing, the timestamp will not be overriden and repository's timestamp will be updated (#55)
- โก๏ธ [Core] If an event had a timestamp prior to journalling, the timestamp will not be overriden and repository's timestamp will be updated (#56)
- [Core]
Repository#getTimestamp()
was added (#55)
๐ Bugfixes
- [HLC] HybridTimestamp now follows the layout prescribed in RFC6/HLC (#47)
- ๐ [H2] Current H2 version doesn't export org.h2.mvstore.db in OSGi, making es4j undeployable in OSGi. Own build with a fix is used now (#49)
- ๐ [Core] CascadingIndexEngine's self-referencing in OSGi was fixed (#50)
- [Core] MemoryJournal still recorded normal events even when the command terminated exceptionally (#51)
- [H2] MVStoreJournal command hash keys were wrongfully overwritten (#54)
- โ Outstanding failing tests were fixed (#52, #53)
-
v0.3.1 Changes
June 10, 2016Backwards-incompatible changes
- ๐ [Layout] Character type removed as RFC1/ELF no longer defines it (#30)
๐ Bugfixes
- [Layout] UnknownTypeHandler was losing layout type information, according to RFC1/ELF, it should be kept (#42)
๐ Features
- ๐ [Layout] Added support for RFC1/ELF's Timestamp (#41)
๐ Improvements
- [H2] Slightly faster MVStoreJournal by avoiding extra reads (
tryPut
vsput
) (#32)
โฌ๏ธ Upgrades
-
v0.3.0 Changes
May 19, 2016