All Versions
25
Latest Version
Avg Release Cycle
26 days
Latest Release
23 days ago
Changelog History
Page 1
Changelog History
Page 1
-
v4.11.0 Changes
March 25, 2021- ➕ Add BeforeConnect callback to pgxpool.Config (Robert Froehlich)
- ➕ Add Ping method to pgxpool.Conn (davidsbond)
- ➕ Added a kitlog level log adapter (Fabrice Aneche)
- 👉 Make ScanArgError public to allow identification of offending column (Pau Sanchez)
- ➕ Add *pgxpool.AcquireFunc
- ➕ Add BeginFunc and BeginTxFunc
- Add prefer_simple_protocol to connection string
- ➕ Add logging on CopyFrom (Patrick Hemmer)
- ➕ Add comment support when sanitizing SQL queries (Rusakow Andrew)
- Do not panic on double close of pgxpool.Pool (Matt Schultz)
- Avoid panic on SendBatch on closed Tx (Matt Schultz)
- ⚡️ Update pgconn to v1.8.1
- ⚡️ Update pgtype to v1.7.0
-
v4.10.1 Changes
December 19, 2020- 🛠 Fix panic on Query error with nil stmtcache.
-
v4.10.0 Changes
December 03, 2020- ➕ Add CopyFromSlice to simplify CopyFrom usage (Egon Elbre)
- ✂ Remove broken prepared statements from stmtcache (Ethan Pailes)
- stdlib: consider any Ping error as fatal
- ⚡️ Update puddle to v1.1.3 - this fixes an issue where concurrent Acquires can hang when a connection cannot be established
- ⚡️ Update pgtype to v1.6.2
-
v4.9.2 Changes
November 03, 2020⚡️ The underlying library updates fix an issue where appending to a scanned slice could corrupt other data.
- ⚡️ Update pgconn to v1.7.2
- ⚡️ Update pgproto3 to v2.0.6
-
v4.9.1 Changes
October 31, 2020- ⚡️ Update pgconn to v1.7.1
- ⚡️ Update pgtype to v1.6.1
- 🛠 Fix SendBatch of all prepared statements with statement cache disabled
-
v4.9.0 Changes
September 26, 2020- pgxpool now waits for connection cleanup to finish before making room in pool for another connection. This prevents temporarily exceeding max pool size.
- 🛠 Fix when scanning a column to nil to skip it on the first row but scanning it to a real value on a subsequent row.
- 🛠 Fix prefer simple protocol with prepared statements. (Jinzhu)
- 🛠 Fix FieldDescriptions not being available on Rows before calling Next the first time.
- ⚡️ Various minor fixes in updated versions of pgconn, pgtype, and puddle.
-
v4.8.1 Changes
July 29, 2020- ⚡️ Update pgconn to v1.6.4
- Fix deadlock on error after CommandComplete but before ReadyForQuery
- Fix panic on parsing DSN with trailing '='
- ⚡️ Update pgconn to v1.6.4
-
v4.8.0 Changes
July 22, 2020- 👍 All argument types supported by native pgx should now also work through database/sql
- ⚡️ Update pgconn to v1.6.3
- ⚡️ Update pgtype to v1.4.2
-
v4.7.2 Changes
July 14, 2020- 👌 Improve performance of Columns() (zikaeroh)
- 🛠 Fix fatal Commit() failure not being considered fatal
- ⚡️ Update pgconn to v1.6.2
- ⚡️ Update pgtype to v1.4.1
-
v4.7.1 Changes
June 29, 2020- 🛠 Fix stdlib decoding error with certain order and combination of fields