0.6.0
What's Changed
- add Scala Steward by @patriknw in #193
- disable replay-filter by @patriknw in #196
- cleanup some more slice and entity_type columns by @patriknw in #202
- scala-library 2.13.8 (was 2.13.6) by @scala-steward in #200
- sbt 1.5.8 (was 1.5.6) by @scala-steward in #201
- sbt-header 5.6.0 (was 5.2.0) by @scala-steward in #199
- sbt-java-formatter 0.7.0 (was 0.4.4) by @scala-steward in #198
- paradox-theme-akka, ... 0.42 (was 0.39) by @scala-steward in #197
- Projection magement clear/set offset by @patriknw in #203
- Adjust log level for 'Rejecting unexpected sequence number' by @patriknw in #205
- Store tags, but no query yet by @patriknw in #206
- make it possible to configure a connection from url by @octonato in #207
- Upper bound on db_timestamp in eventsBySlices query, #178 by @patriknw in #210
- Fix currentEventsBySlices may end to early when more than one event with same timestamp, #211 by @patriknw
- add executeDdls for several ddl statements in same tx by @patriknw in #209
- Update to Yugabyte 2.12.1 by @patriknw in #213
Schema changes
If you have an existing database you should make the following migration.
Add the tags
column:
ALTER TABLE event_journal ADD tags TEXT ARRAY;
ALTER TABLE durable_state ADD tags TEXT ARRAY;
For Postgres the slice index has been changed to:
DROP INDEX event_journal_slice_idx;
CREATE INDEX IF NOT EXISTS event_journal_slice_idx ON event_journal(slice, entity_type, db_timestamp, seq_nr);
DROP INDEX durable_state_slice_idx;
CREATE INDEX IF NOT EXISTS durable_state_slice_idx ON durable_state(slice, entity_type, db_timestamp, revision);
For Yugabyte the slice index has been changed to:
DROP INDEX event_journal_slice_idx;
CREATE INDEX IF NOT EXISTS event_journal_slice_idx ON event_journal(slice ASC, entity_type ASC, db_timestamp ASC, seq_nr ASC, persistence_id, deleted)
SPLIT AT VALUES ((127), (255), (383), (511), (639), (767), (895));
DROP INDEX durable_state_slice_idx;
CREATE INDEX IF NOT EXISTS durable_state_slice_idx ON durable_state(slice ASC, entity_type ASC, db_timestamp ASC, revision ASC, persistence_id)
SPLIT AT VALUES ((127), (255), (383), (511), (639), (767), (895));
New Contributors
- @scala-steward made their first contribution in #200
Full Changelog: v0.5.0...v0.6.0