Skip to content

Releases: akka/akka-persistence-r2dbc

0.7.7

23 Jun 13:26
8a720fa
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.7.6...v0.7.7

0.7.6

22 Jun 12:58
8cc6579
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.7.5...v0.7.6

0.7.5

03 Jun 11:33
d12db6f
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.7.4...v0.7.5

0.7.4

13 May 14:05
146ec2a
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.7.3...v0.7.4

0.7.3

10 May 11:45
92b7a0f
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.7.2...v0.7.3

0.7.2

06 May 10:55
14057a2
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.7.1...v0.7.2

0.7.1

07 Apr 11:59
72560ee
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.6.1...v0.7.1

0.6.1

07 Mar 14:12
0676989
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.6.0...v0.6.1

0.6.0

24 Feb 15:16
3dbd9f6
Compare
Choose a tag to compare

What's Changed

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

Full Changelog: v0.5.0...v0.6.0

0.5.0

27 Jan 15:17
febb34a
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.4.1...v0.5.0