pg 8.17.1 → 8.17.2

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/connection.js CHANGED
@@ -22,7 +22,6 @@ class Connection extends EventEmitter {
22
22
 
23
23
  this._keepAlive = config.keepAlive
24
24
  this._keepAliveInitialDelayMillis = config.keepAliveInitialDelayMillis
25
- this.lastBuffer = false
26
25
  this.parsedStatements = {}
27
26
  this.ssl = config.ssl || false
28
27
  this._ending = false
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pg",
3
- "version": "8.17.1",
3
+ "version": "8.17.2",
4
4
  "description": "PostgreSQL client - pure javascript & libpq with the same API",
5
5
  "keywords": [
6
6
  "database",
@@ -32,7 +32,7 @@
32
32
  "./lib/*.js": "./lib/*.js"
33
33
  },
34
34
  "dependencies": {
35
- "pg-connection-string": "^2.10.0",
35
+ "pg-connection-string": "^2.10.1",
36
36
  "pg-pool": "^3.11.0",
37
37
  "pg-protocol": "^1.11.0",
38
38
  "pg-types": "2.2.0",
@@ -72,5 +72,5 @@
72
72
  "engines": {
73
73
  "node": ">= 16.0.0"
74
74
  },
75
- "gitHead": "4eb7529a5906f2000faf72b5452e10d95bde2f9e"
75
+ "gitHead": "5b68a115cc90a7b7069fa8c4b0ca51e3447367e9"
76
76
  }