0.18.0
🚀 What's New
- Added default implementation of PostgreSQL event store session It automatically reuses a single connection inside the same command handler. That cut the time to at least a half for command handling processing. by @oskardudycz in #110
- Added also capability to migrate, return string and print schema for PostgreSQL event store. You can do it with:
// migrate
await eventStore.schema.migrate();
// print
eventStore.schema.print();
// return
const sql = evenStore.schema.sql();
There'll be a follow-up release with the command line utility. by @oskardudycz in #110
- Added benchmark configuration to generate schema upfront by @oskardudycz in #109, #110
##📝 What's Changed
- Updated to Pongo 0.13.0 and other peer dependencies This is technically a breaking change, as some dependencies were bumped by a major version. by @oskardudycz in #113
- Updated TS config to fix debugging by @oskardudycz in #114
Full Changelog: 0.17.0...0.18.0