All Versions
48
Latest Version
Avg Release Cycle
85 days
Latest Release
103 days ago
Changelog History
Page 5
Changelog History
Page 5
-
v10.4.3 Changes
February 08, 2020- Improving error reporting for event handlers.
- ๐จ Refactoring strings to use ES6 syntax everywhere.
- โก๏ธ DEV dependencies updated.
-
v10.4.2 Changes
February 02, 2020- ๐ Improved errors + warnings reporting.
-
v10.4.1 Changes
February 02, 2020- โ Removed manakin dependency, replacing it with a simpler local implementation.
- โก๏ธ Updated most of dependencies, both for PROD and DEV.
-
v10.4.0 Changes
January 30, 2020 -
v10.4.0-beta.5 Changes
January 30, 2020- ๐ Updated the driver to v7.18.1 (critical update for SSL support)
-
v10.4.0-beta.4 Changes
January 29, 2020- โก๏ธ Updated dependencies, including the driver to v7.18.0
-
v10.3.5 Changes
January 12, 2020- ๐ Fixed #680, and potentially similar connectivity issues, to auto-kill non-queryable connections.
This is an important overall-connectivity fix on the base driver, which sometimes would give us a dead connection.
-
v10.3.4 Changes
January 12, 2020- ๐ Fixed #682
- ๐ Minor code refactoring + documentation updates
๐ There has been a discrepancy with the driver, as it's undergone many changes when it comes to supporting connection timeouts.
๐ Property
connect_timeoutnow has been removed from thedefaultsof the driver, and propertyconnectionTimeoutMillisadded to the connection parameters, which is the only correct way to set the connection timeout:const db = pgp({ database: 'my-db'/\* other connection properties \*/connectionTimeoutMillis: 2000 // set connection timeout to 2 seconds});Note that this change affects only TypeScript clients.