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.
Files changed (2) hide show
  1. package/lib/client.js +1 -1
  2. 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, function (pass) {
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.2",
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": "acfbafac82641ef909d9d6235d46d38378c67864"
49
+ "gitHead": "95b5daadaade40ea343c0d3ad09ab230fa2ade4c"
50
50
  }