Comparing version 0.6.0 to 0.6.1
# Changelog | ||
## 0.6.1 (2021-02-16) | ||
* **Bug fix:** Fix for error handling on `db.end()` by merging [#90](https://github.com/voxpelli/node-pg-pubsub/pull/90). Thanks @chasay! | ||
## 0.6.0 (2021-02-16) | ||
@@ -10,2 +14,7 @@ | ||
## 0.5.1-0 (2020-01-15) | ||
* **Breaking change:** Require at least Postgres 9.4 | ||
* **Fix:** Add proactive connection closing, fixing [#82](https://github.com/voxpelli/node-pg-pubsub/issues/82). | ||
## 0.5.0 (2019-08-10) | ||
@@ -12,0 +21,0 @@ |
@@ -52,3 +52,3 @@ // @ts-check | ||
client.end(err => { | ||
log('Received error when disconnecting from database in error callback:' + err.message); | ||
log('Received error when disconnecting from database in error callback: ' + (err && err.message)); | ||
}); | ||
@@ -55,0 +55,0 @@ }); |
{ | ||
"name": "pg-pubsub", | ||
"version": "0.6.0", | ||
"version": "0.6.1", | ||
"description": "A Publish/Subscribe implementation on top of PostgreSQL NOTIFY/LISTEN", | ||
@@ -75,3 +75,3 @@ "homepage": "http://github.com/voxpelli/node-pg-pubsub", | ||
"dependency-check": "^4.1.0", | ||
"dotenv": "^8.0.0", | ||
"dotenv": "^8.2.0", | ||
"eslint": "^7.20.0", | ||
@@ -78,0 +78,0 @@ "eslint-config-standard": "^16.0.2", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
21947
0