All Versions
33
Latest Version
Avg Release Cycle
11 days
Latest Release
1465 days ago

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 the defaults of the driver, and property connectionTimeoutMillis 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.