pg 7.18.0 → 7.18.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 +0 -10
- package/package.json +2 -2
package/lib/connection.js
CHANGED
|
@@ -115,17 +115,7 @@ Connection.prototype.connect = function (port, host) {
|
|
|
115
115
|
}
|
|
116
116
|
self.stream = tls.connect(options)
|
|
117
117
|
self.stream.on('error', reportStreamError)
|
|
118
|
-
|
|
119
|
-
// send SSLRequest packet
|
|
120
|
-
const buff = Buffer.alloc(8)
|
|
121
|
-
buff.writeUInt32BE(8)
|
|
122
|
-
buff.writeUInt32BE(80877103, 4)
|
|
123
|
-
if (self.stream.writable) {
|
|
124
|
-
self.stream.write(buff)
|
|
125
|
-
}
|
|
126
|
-
|
|
127
118
|
self.attachListeners(self.stream)
|
|
128
|
-
|
|
129
119
|
self.emit('sslconnect')
|
|
130
120
|
})
|
|
131
121
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pg",
|
|
3
|
-
"version": "7.18.
|
|
3
|
+
"version": "7.18.1",
|
|
4
4
|
"description": "PostgreSQL client - pure javascript & libpq with the same API",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"database",
|
|
@@ -53,5 +53,5 @@
|
|
|
53
53
|
"engines": {
|
|
54
54
|
"node": ">= 4.5.0"
|
|
55
55
|
},
|
|
56
|
-
"gitHead": "
|
|
56
|
+
"gitHead": "b3f0728a1102772a5c6320c78c2533354d78a39b"
|
|
57
57
|
}
|