pg 8.3.2 → 8.3.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/client.js +1 -1
- package/package.json +2 -2
package/lib/client.js
CHANGED
|
@@ -215,7 +215,7 @@ class Client extends EventEmitter {
|
|
|
215
215
|
} else if (this.password !== null) {
|
|
216
216
|
cb()
|
|
217
217
|
} else {
|
|
218
|
-
pgPass(this.connectionParameters,
|
|
218
|
+
pgPass(this.connectionParameters, (pass) => {
|
|
219
219
|
if (undefined !== pass) {
|
|
220
220
|
this.connectionParameters.password = this.password = pass
|
|
221
221
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pg",
|
|
3
|
-
"version": "8.3.
|
|
3
|
+
"version": "8.3.3",
|
|
4
4
|
"description": "PostgreSQL client - pure javascript & libpq with the same API",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"database",
|
|
@@ -46,5 +46,5 @@
|
|
|
46
46
|
"engines": {
|
|
47
47
|
"node": ">= 8.0.0"
|
|
48
48
|
},
|
|
49
|
-
"gitHead": "
|
|
49
|
+
"gitHead": "95b5daadaade40ea343c0d3ad09ab230fa2ade4c"
|
|
50
50
|
}
|