@knorm/postgres
Advanced tools
Comparing version 2.0.1 to 2.0.2
@@ -0,1 +1,8 @@ | ||
## [2.0.2](https://github.com/knorm/postgres/compare/v2.0.1...v2.0.2) (2019-03-13) | ||
### Bug Fixes | ||
* pass query errors to client.release ([035c5b5](https://github.com/knorm/postgres/commit/035c5b5)), closes [/github.com/brianc/node-postgres/issues/1745#issuecomment-469703239](https://github.com//github.com/brianc/node-postgres/issues/1745/issues/issuecomment-469703239) | ||
## [2.0.1](https://github.com/knorm/postgres/compare/v2.0.0...v2.0.1) (2019-02-19) | ||
@@ -2,0 +9,0 @@ |
@@ -75,4 +75,4 @@ const { Knorm } = require('@knorm/knorm'); | ||
async close() { | ||
return this.client.release(); | ||
async close(error) { | ||
return this.client.release(error); | ||
} | ||
@@ -79,0 +79,0 @@ } |
{ | ||
"name": "@knorm/postgres", | ||
"version": "2.0.1", | ||
"version": "2.0.2", | ||
"description": "Postgres plugin for knorm", | ||
@@ -21,3 +21,3 @@ "main": "index.js", | ||
"devDependencies": { | ||
"@knorm/knorm": "2.0.0", | ||
"@knorm/knorm": "2.1.0", | ||
"@knorm/relations": "2.0.0", | ||
@@ -28,4 +28,4 @@ "@semantic-release/changelog": "3.0.2", | ||
"@semantic-release/npm": "5.1.4", | ||
"coveralls": "3.0.2", | ||
"eslint": "5.13.0", | ||
"coveralls": "3.0.3", | ||
"eslint": "5.14.1", | ||
"eslint-config-ganintegrity": "3.1.4", | ||
@@ -35,3 +35,3 @@ "knex": "0.15.2", | ||
"npm-run-all": "4.1.5", | ||
"nyc": "13.1.0", | ||
"nyc": "13.3.0", | ||
"prettier": "1.16.4", | ||
@@ -42,3 +42,3 @@ "semantic-release": "15.13.3", | ||
"unexpected-knex": "2.0.0", | ||
"unexpected-sinon": "10.11.0" | ||
"unexpected-sinon": "10.11.1" | ||
}, | ||
@@ -45,0 +45,0 @@ "directories": { |
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
76192