Skip to content

Releases: vitaly-t/pg-promise

11.5.3

02 Aug 12:31

Choose a tag to compare

  • Following up on driver fix-update, see issue #888

11.5.2

28 Jul 11:26

Choose a tag to compare

This update is to clarify the full range of environments officially supported:

  • PostgreSql v10 - v15
  • NodeJS v14 - v18

It is worth noting that:

  • It may work with PostgreSql v9, but it is no longer officially supported.
  • It should work with NodeJS v20, but it is not officially supported yet (we support LTS versions of NodeJS only).

The CI has been updated accordingly. No functional changes.

11.5.1

23 Jul 11:30

Choose a tag to compare

  • Updated dependencies, including the driver, to v8.11.1
  • Fixed #884 - CI build issue in test

11.5.0

27 May 10:19

Choose a tag to compare

  • Many dependencies updated, including Postgres driver.
  • Minor documentation updates.

Please note that at the time of publishing this, GitHub CI started showing problems again, unrelated to the project. All tests pass locally fine, disregard Failed Build status for the time being.

11.4.3

18 Mar 12:34

Choose a tag to compare

  • Updated dependencies
  • Marked method batch as deprecated.

11.4.2

17 Mar 23:27

Choose a tag to compare

  • Dev dependencies updated
  • Semantic refactoring of the code

11.4.1

10 Mar 11:06

Choose a tag to compare

  • Corrected TypeScript signature for the Pool's property log.

11.4.0

10 Mar 10:59

Choose a tag to compare

  • Updated dependencies: "pg" -> "8.10.0" and "pg-query-stream" -> "4.4.0"
  • Extended IPool TypeScript declaration with properties expiredCount + log. The latter in case you want to log what the pool is doing:
db.$pool.log = (msg: string, err?: any) => {
    console.log('Pool:', msg, err); // report what the pool is doing
}

11.3.0

21 Feb 22:05

Choose a tag to compare

  • Following #867, amended missed connection + default properties within TypeScript declarations:
    • lock_timeout - abort any statement that waits longer than the specified duration
    • idle_in_transaction_session_timeout - terminate any session with an open transaction that has been idle for longer

11.2.0

28 Jan 07:35

Choose a tag to compare

Quick follow up on issues within the previous release:

  • Corrected type of stream property to Socket
  • Temporarily disabled CI for PG v14 and v15, until the integration issue is resolved.