Releases: andywer/pg-listen
Releases · andywer/pg-listen
v1.2.1
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
Another small update, thanks to @bergundy!
Chores
- Explicitly define & export
Subscriber
interface (#11)
- Updated (mostly dev) dependencies (#13)
v1.1.0
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
Bump to v1.0 🥳🚀
Feels stable enough that it now deserves a major version greater than zero. No noticeable changes.
v0.1.4
Bug fixes
- Use
pg.ClientConfig
type for connection options (#3)
v0.1.3
Bug fixes
- Cancel paranoid checking when closing the pg-listener (#2, by @kesla)
v0.1.2
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.