Points of note for those upgrading from an earlier version of this library:
- Instead of using `print` to log messages to the console, the Python logging module is now used instead: https://github.com/Opus10/django-pgpubsub/pull/51
- A migration is required to pick up changes to both the `Notification` model and to the test models in the `tests` app.
- DISABLE_SERVER_SIDE_CURSORS should be False. See https://github.com/Opus10/django-pgpubsub/issues/38.
**New-Features**
- In built [logging](https://github.com/Opus10/django-pgpubsub/pull/51) using the Python logging module.
- [Ability to process notifications with backward incompatible changes in django models](https://github.com/Opus10/django-pgpubsub/issues/38): see the "Model migrations" section of the READ ME for more.
- [Reduced memory consumption when consuming notifications](https://github.com/Opus10/django-pgpubsub/issues/38).
**Bug Fixes**
- [Bring back Django 2.2. support](https://github.com/Opus10/django-pgpubsub/pull/28)
- [Fix deserialization of trigger channels](https://github.com/Opus10/django-pgpubsub/pull/34) with some follow up fixes.
- [Recovery handles errors consistently with the usual listener process](https://github.com/Opus10/django-pgpubsub/pull/42)
Special thanks to romank0 for the amazing work done towards this release!