Skip to content

Releases: vitaly-t/pg-promise

11.1.0

28 Jan 07:08

Choose a tag to compare

  • Upgraded the underlying driver; see its changes.
  • Added property stream to the connection parameters in TypeScript declarations.

Please ignore CI errors that are due to this issue, which can be addressed later.

11.0.2

30 Dec 23:39

Choose a tag to compare

CI integration added, thanks to @dplewis

11.0.1

30 Dec 19:04

Choose a tag to compare

Removed use of operator ??=, which was causing error under NodeJS version < 15.

11.0.0

29 Dec 23:16

Choose a tag to compare

BREAKING CHANGES

  • Initialization option noLocking and all the locking logic has been removed. It was a bit of an over-engineering thing.
  • Parameters for events connect, disconnect and receive have changed (wrapped into an object)
  • Connection option poolSize has been retired. You should just use option max now, for the pool size.
  • NodeJS v14 is now the required minimum

OTHER CHANGES

  • Documentation updates
  • DEV dependencies updated

10.15.4

27 Nov 11:53

Choose a tag to compare

  • Fixes #854 TypeScript declaration issue.

10.15.3

24 Nov 09:57

Choose a tag to compare

10.15.2

22 Nov 10:24

Choose a tag to compare

  • Fixing #853 (crash in NodeJS v12)

10.15.1

21 Nov 21:19

Choose a tag to compare

  • Event error now reports query + params even for regular query errors (see pr #852)

10.15.0

17 Nov 06:31

Choose a tag to compare

  • Minimum version of NodeJS required is now v12.0.0 (was v8.0.0 previously). See the check.

10.14.2

17 Nov 06:20

Choose a tag to compare

  • Assertions were refactored internally, so now they can be overridden via global.pgPromiseAssert. See assert-options module.
  • Improved Buffer detection
  • Documentation updates