# Change Log All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). ## [0.18.0] - 2018-05-23 - Allow specifying a subscription batch size ## [0.17.0] - 2018-03-22 ### Added - Allow changing the event class using Event#with - Allow upcasting events using custom event classes ## [0.16.1] - 2018-01-17 - Fixed bug with Sequel gem expecting processes_event_types to be an Array ## [0.16.0] - 2018-01-02 ### Added - Added additional logging for retries to the ExponentialBackoffRetry error handler - Remove `processes_events` and related methods in favour of `process` class method. You can no longer override `process` and subscribe to all events. If you want to subscribe to all events you can call the `process` class method with no events. process do |event| # all events will be subscribed to end process Foobar do |event| # Foobar events will be subscribed to end ## [0.15.0] - 2017-11-29 ### Added - Added in the first version of the yard documentation. ### Changed - Improved EventProcessingError messages - Fixed typo in constant name `EventSourcery::EventProcessing::ErrorHandlers::ConstantRetry::DEFAULT_RETRY_INTERVAL` - Fixed typo in constant name `EventSourcery::EventProcessing::ErrorHandlers::ExponentialBackoffRetry::DEFAULT_RETRY_INTERVAL` - Fixed typo in constant name `EventSourcery::EventProcessing::ErrorHandlers::ExponentialBackoffRetry::MAX_RETRY_INTERVAL` - Errors of type `Exception` are now logged before being allowed to propagate. ## [0.14.0] - 2016-06-21 ### Added - Added `Event#to_h` method. This returns a hash of the event attributes. - Added `Event#with` method. This provides a way to create a new event identical to the old event except for the provided changes. - `Event#initialize` accepts `aggregate_id` parameter that either is a strings or responds to `to_str`. ## [0.13.0] - 2016-06-16 ### Added - The core Event class accepts `causation_id` to allow event stores to add support for tracking causation ids with events. - The core Memory event store saves the `causation_id` and `correlation_id`. ### Changed - The event store shared RSpec examples specify event stores should save the `causation_id` and `correlation_id`. ### Removed - The `processing_event` method from the memory tracker. It was intended to be a mechanism to wrap processing and tracker updates which appears to be universally unused at this point. ## [0.12.0] - 2017-06-01 ### Removed - Removed usage `#shutdown!` as it should be a private method within custom PollWaiters. An example of how event_sourcery-postgres has implemented `#shutdown!` can be found [here](https://github.com/envato/event_sourcery-postgres/pull/5) ## [0.11.2] - 2017-05-29 ### Fixed - Fixed: default poll waiter now implements `shutdown!` ## [0.11.1] - 2017-05-29 ### Fixed - Use `processor.class.name` to set ESP process name - Convert `processor_name` symbol to string explicitly ## [0.11.0] - 2017-05-26 ### Added - Make Event processing error handler class Configurable - Add exponential back off retry error handler ## [0.10.0] - 2017-05-24 ### Added - The core Event class accepts `correlation_id` to allow event stores to add support for tracking correlation IDs with events. - `Repository#save` for saving aggregate instances. - Configuration option to define custom event body serializers. ### Fixed - Resolved Sequel deprecation notice when loading events from the Postgres event store. ### Changed - Aggregates no longer save events directly to an event sink. They must be passed back to the repository for saving with `repository.save(aggregate)`. - `AggregateRoot#apply_event` signature has changed from accepting an event or a hash to accepting an event class followed by what would normally go in the constructor of the event. ### Removed - Postgres specific code has moved to the [event_sourcery-postgres](https://github.com/envato/event_sourcery-postgres) gem. Config options for postgres have moved to `EventSourcery::Postgres.config`. ## [0.9.0] - 2017-05-02 ### Added - Add `table_prefix` method to `TableOwner` to declare a table name prefix for all tables in a projector or reactor. ### Changed - Schema change: the `writeEvents` function has been refactored slightly. - The `Event` class no longer uses `Virtus.value_object`. - `AggregateRoot` and `Repository` are namespaced under `EventSourcery` instead of `EventSourcery::Command`. - `EventSourcery::Postgres` namespace has been extracted from `EventSourcery::(EventStore|EventProcessing)::Postgres` in preparation for moving all Postgres related code into a separate gem. - An advisory lock has replaced the exclusive table lock used to synchronise event inserts. ### Removed - EventSourcery no longer depends on Virtus. - `Command` and `CommandHandler` have been removed. [Unreleased]: https://github.com/envato/event_sourcery/compare/v0.16.0...HEAD [0.16.0]: https://github.com/envato/event_sourcery/compare/v0.15.0...v0.16.0 [0.15.0]: https://github.com/envato/event_sourcery/compare/v0.14.0...v0.15.0 [0.14.0]: https://github.com/envato/event_sourcery/compare/v0.13.0...v0.14.0 [0.13.0]: https://github.com/envato/event_sourcery/compare/v0.12.0...v0.13.0 [0.12.0]: https://github.com/envato/event_sourcery/compare/v0.11.2...v0.12.0 [0.11.2]: https://github.com/envato/event_sourcery/compare/v0.11.1...v0.11.2 [0.11.1]: https://github.com/envato/event_sourcery/compare/v0.11.0...v0.11.1 [0.11.0]: https://github.com/envato/event_sourcery/compare/v0.10.0...v0.11.0 [0.10.0]: https://github.com/envato/event_sourcery/compare/v0.9.0...v0.10.0 [0.9.0]: https://github.com/envato/event_sourcery/compare/v0.8.0...v0.9.0