All Versions
48
Latest Version
Avg Release Cycle
85 days
Latest Release
103 days ago

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
  • v10.4.0 Changes

    January 30, 2020
    • โšก๏ธ Updated driver to the latest 7.18.1, see #687
    • โฌ‡๏ธ Dropped support for pg-query-stream < 3.0.0, see #695
    • โฌ‡๏ธ Dropped support for Nodejs < 8.0.0 (because of the new streams)
  • 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_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.