Skip to content

Releases: tediousjs/tedious

v11.0.6

08 Mar 20:46
f6e1681
Compare
Choose a tag to compare

11.0.6 (2021-03-08)

Bug Fixes

  • cleanup cancel handlers from bulk load (eaf297f)
  • do not set a cancellation timer if request is cancelled before it is fully sent off (37f9084)
  • restore cancellation of long running requests (4ec403d)

v11.0.5

21 Feb 21:16
15fcec6
Compare
Choose a tag to compare

11.0.5 (2021-02-21)

Bug Fixes

  • clean up cancel event handlers to prevent memory leak (775b239)

v11.0.4

10 Feb 21:40
6c3fb8b
Compare
Choose a tag to compare

11.0.4 (2021-02-10)

Bug Fixes

  • varchar & varbinary to use exact length in type_info (46972ef)

v11.0.3

24 Jan 16:38
e7b43e3
Compare
Choose a tag to compare

11.0.3 (2021-01-24)

Bug Fixes

  • leave no dangling sockets on connect timeout (4104691)

v11.0.2

23 Jan 15:11
850ecbc
Compare
Choose a tag to compare

11.0.2 (2021-01-23)

Bug Fixes

  • make BulkLoad.setTimeout actually cancel the request after the given timeout (4fe6fb9)

v11.0.1

14 Jan 15:07
0be52c5
Compare
Choose a tag to compare

11.0.1 (2021-01-14)

Bug Fixes

v11.0.0

13 Jan 22:21
236b9c2
Compare
Choose a tag to compare

11.0.0 (2021-01-13)

chore

  • drop support for Node.js 6.x and 8.x (714f9e2)

BREAKING CHANGES

  • tedious no longer supports Node.js 6.x and 8.x.

v10.0.0

13 Jan 22:04
b4a1f5a
Compare
Choose a tag to compare

10.0.0 (2021-01-13)

Features

  • change validateBulkLoadParameters default to true (5497b14)
  • no longer connect automatically when calling new Connection (16b10bf)

BREAKING CHANGES

  • Creating a new Connection instance will no longer establish a connection to the server automatically. Please use the new connect helper function or call the .connect method on the newly created Connection object instead.
  • This changes the default value of the validateBulkLoadParameters option from false to true. If you don't explicitly specify a value for this option, you might run into unexpected validation errors when loading data via BulkLoad. Set this to false explicitly to restore existing behavior, or true for proper parameter validation (recommended).

v9.2.3

23 Dec 17:02
8153535
Compare
Choose a tag to compare

9.2.3 (2020-12-23)

Bug Fixes

  • improve azure authentication performance (ac56c34)

v9.2.2

21 Dec 16:39
3725a76
Compare
Choose a tag to compare

9.2.2 (2020-12-21)

Bug Fixes

  • add domain option for AAD username & pass (769bc97)