Skip to content

0.18.0

Compare
Choose a tag to compare
@oskardudycz oskardudycz released this 27 Aug 19:25
· 224 commits to main since this release

🚀 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

##📝 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