All Versions
33
Latest Version
Avg Release Cycle
11 days
Latest Release
1465 days ago
Changelog History
Page 4
Changelog History
Page 4
-
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_timeout
now has been removed from thedefaults
of the driver, and propertyconnectionTimeoutMillis
added 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.