pg 8.2.0 → 8.2.1
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 +1 -1
- package/package.json +5 -5
package/lib/connection.js
CHANGED
|
@@ -172,8 +172,8 @@ Connection.prototype.flush = function () {
|
|
|
172
172
|
const syncBuffer = serialize.sync()
|
|
173
173
|
Connection.prototype.sync = function () {
|
|
174
174
|
this._ending = true
|
|
175
|
-
this._send(syncBuffer)
|
|
176
175
|
this._send(flushBuffer)
|
|
176
|
+
this._send(syncBuffer)
|
|
177
177
|
}
|
|
178
178
|
|
|
179
179
|
const endBuffer = serialize.end()
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pg",
|
|
3
|
-
"version": "8.2.
|
|
3
|
+
"version": "8.2.1",
|
|
4
4
|
"description": "PostgreSQL client - pure javascript & libpq with the same API",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"database",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"buffer-writer": "2.0.0",
|
|
23
23
|
"packet-reader": "1.0.0",
|
|
24
|
-
"pg-connection-string": "^2.2.
|
|
25
|
-
"pg-pool": "^3.2.
|
|
26
|
-
"pg-protocol": "^1.2.
|
|
24
|
+
"pg-connection-string": "^2.2.3",
|
|
25
|
+
"pg-pool": "^3.2.1",
|
|
26
|
+
"pg-protocol": "^1.2.4",
|
|
27
27
|
"pg-types": "^2.1.0",
|
|
28
28
|
"pgpass": "1.x",
|
|
29
29
|
"semver": "4.3.2"
|
|
@@ -46,5 +46,5 @@
|
|
|
46
46
|
"engines": {
|
|
47
47
|
"node": ">= 8.0.0"
|
|
48
48
|
},
|
|
49
|
-
"gitHead": "
|
|
49
|
+
"gitHead": "f3136a7d5d5498280924b3e06f47f8ce80dbe4e6"
|
|
50
50
|
}
|