Comparing version 3.0.3 to 3.0.4
# Changelog | ||
## [3.0.4] - 5 Apr 2022 | ||
- Ensure drain only dequeues if ready - fixes #303 2e5f017 | ||
## [3.0.3] - 4 Apr 2022 | ||
- Run tests with github actions b536d0d | ||
- Add custom socket option - fixes #284 5413f0c | ||
- Fix sql function overload type inference (#294) 3c4e90a | ||
- Update deno std to 0.132 and enable last tests 50762d4 | ||
- Send proper client-encoding - Fixes #288 e5b8554 | ||
## [3.0.2] - 31 Mar 2022 | ||
@@ -4,0 +14,0 @@ - Fix BigInt handling 36a70df |
@@ -302,3 +302,3 @@ const net = require('net') | ||
function drain() { | ||
onopen(connection) | ||
!query && onopen(connection) | ||
} | ||
@@ -305,0 +305,0 @@ |
{ | ||
"name": "postgres", | ||
"version": "3.0.3", | ||
"version": "3.0.4", | ||
"description": "Fastest full featured PostgreSQL client for Node.js", | ||
@@ -5,0 +5,0 @@ "type": "module", |
@@ -302,3 +302,3 @@ import net from 'net' | ||
function drain() { | ||
onopen(connection) | ||
!query && onopen(connection) | ||
} | ||
@@ -305,0 +305,0 @@ |
187818