Skip to content

Releases: andywer/pg-listen

v1.2.1

06 May 07:20
1b7bbb9
Compare
Choose a tag to compare

Just a tiny fix to get rid of an annoying error message on start.

Bug fixes

  • Fix Cannot find module "pg-native" error message (#15)
  • Fix one situation where a re-connection error might not have been logged (#17)

v1.2.0

17 Mar 12:37
e1a5404
Compare
Choose a tag to compare

Another small update, thanks to @bergundy!

Chores

  • Explicitly define & export Subscriber interface (#11)
  • Updated (mostly dev) dependencies (#13)

v1.1.0

14 Jan 19:25
25dedc2
Compare
Choose a tag to compare

A small update: Introducing a CommonJS default export convenience hack.

New features

  • Additionally to the ES module default export, you can now require() from the package without .default (#6)
- const createSubscriber = require("pg-listen").default
+ const createSubscriber = require("pg-listen")

Note: require("pg-listen").default will still work.

v1.0

13 Jan 13:55
0026904
Compare
Choose a tag to compare

Bump to v1.0 🥳🚀

Feels stable enough that it now deserves a major version greater than zero. No noticeable changes.

v0.1.4

05 Nov 20:23
849892c
Compare
Choose a tag to compare

Bug fixes

  • Use pg.ClientConfig type for connection options (#3)

v0.1.3

16 Oct 20:43
1e9b3c2
Compare
Choose a tag to compare

Bug fixes

  • Cancel paranoid checking when closing the pg-listener (#2, by @kesla)

v0.1.2

16 Oct 20:42
7af512e
Compare
Choose a tag to compare

Initial release.

v0.1.0 had a typo in the package.json peerDependencies property and v0.1.1 was lacking files that should have been published.