Skip to content

Releases: kylefarris/node-querybuilder

v2.0.0

01 Feb 15:54
Compare
Choose a tag to compare

This release provides support for MS SQL through the tedious driver.

Breaking Changes

  • Changed the Query Builder instantiation syntax
  • Passing an empty array to where_in and where_not_in no longer throws an error (#34)

General Enhancements/Changes/Features

  • Added mssql (t-sql) support using tedious as the underlying driver
  • Updated class files to use new ES6 class syntax for easier-maintainability
  • Added new options:
    • pool_min (minimum number of pooled connections (mssql driver only))
    • acquireTimeout (milliseconds before a timeout occurs during the connection acquisition)
  • Added new query building method: returning() to allow for insert IDs to be returned. See docs for more info.
  • Added new tests

Bug Fixes

Version 2 Beta 1

26 Jul 21:37
Compare
Choose a tag to compare
Version 2 Beta 1 Pre-release
Pre-release

This release provides support for MS SQL through the tedious driver.

Breaking Changes

  • Changed the Query Builder instantiation syntax
  • Passing an empty array to where_in and where_not_in no longer throws an error (#34)

General Enhancements/Changes/Features

  • Added mssql (t-sql) support using tedious as the underlying driver
  • Updated class files to use new ES6 class syntax for easier-maintainability
  • Added new options:
    • pool_min (minimum number of pooled connections (mssql driver only))
    • acquireTimeout (milliseconds before a timeout occurs during the connection acquisition)
  • Added new query building method: returning() to allow for insert IDs to be returned. See docs for more info.
  • Added new tests

Bug Fixes

First Release to NPM

30 Jun 19:25
Compare
Choose a tag to compare

This is the version that I've decided to start with when publishing to NPM. This version only has MySQL/MariaDB support.