Pushkin v0.1.6 Release Notes

Release Date: 2016-12-30 // over 7 years ago
  • ๐Ÿ†• New APN library which allowed to switch to new Apple API for Push notifications (HTTP/2).
    ๐Ÿš€ Made changes so multiple Pushkin instances can use a single database, if needed. In previous versions, if you used multiple instances additional logic was necessary to determine the Pushkin instance which has information on the user that has to receive the push notification. This is not the case now, since the data can be shared. Following this, we advise installing a load balancer in production if you have multiple Pushkin instances, to fully use the benefits of this release.
    โšก๏ธ The centralized database update introduced some useful side effects:

    • ๐ŸŽ RequestProcessor is now a process pool instead of ThreadPool, this will lead to increased performance.
    • Eliminated PostgreSQL HStore dependency.

    Since RequestProcessor is now a process pool and SQLAlchemy connection pool cannot be shared in forked processes we had to turn it off. It is advised
    ๐ŸŽ that in production you use an external connection pool, such as PgBouncer. If you choose not to use PgBouncer this doesn't mean your performance will suffer in comparison to previous version of Pushkin. A boost in performance is to be expected either way.


Previous changes from v0.1.1

  • ๐Ÿ›  Bugfixes:

    • Package test so it would be possible to run tests after module installation