Skip to content

Releases: tediousjs/tedious

v14.0.0

08 Oct 19:35
b2d0fa2
Compare
Choose a tag to compare

14.0.0 (2021-10-08)

Code Refactoring

  • convert ConnectionError and RequestError to proper classes (3e489b4)

Features

  • char/nchar/varchar/nvarchar/text/ntext/uniqueidentifier values no longer support automatic type coercion (d486a31)
  • remove addRow and getRowStream from BulkLoad (ca8afd3)
  • remove sspichallenge event on Connection (f76518b)

BREAKING CHANGES

  • char/nchar/varchar/nvarchar/text/ntext/uniqueidentifier values no longer support automatic type coercion, but instead require values to be strings.
  • Constructing a ConnectionError or RequestError now requires to using the new keyword.
  • This removes the addRow and getRowStream methods from BulkLoad instances. You can pass an Iterable (e.g. an Array or Generator) or AsyncIterable (e.g. stream.Readable or AsyncGenerator) with the row data instead.
  • This removes the sspichallenge event on Connection.

v13.2.0

08 Oct 17:06
87bc413
Compare
Choose a tag to compare

13.2.0 (2021-10-08)

Features

  • deprecate automatic type coercion from objects to strings (6ff0e1e)
  • deprecate calling ConnectionError or RequestError constructors without new keyword (888cde1)

v13.1.0

28 Sep 21:27
778985a
Compare
Choose a tag to compare

13.1.0 (2021-09-28)

Features

  • deprecate BulkLoad.addRow and BulkLoad.getRowStream (91c7701)
  • deprecate the sspichallenge event (aa0f790)

v13.0.5

28 Sep 16:06
47aafd1
Compare
Choose a tag to compare

13.0.5 (2021-09-28)

Bug Fixes

  • prevent bulkload values from being validated twice (4017c39)

v13.0.4

25 Sep 20:56
3eb0dcf
Compare
Choose a tag to compare

13.0.4 (2021-09-25)

Bug Fixes

  • do not specify handle as an output parameter when calling sp_execute/sp_unprepare (fe4bc69)

v13.0.3

19 Sep 16:59
7aea4fa
Compare
Choose a tag to compare

13.0.3 (2021-09-19)

Bug Fixes

  • prevent Object prototype pollution to affect rows or column metadata objects (e112237)

v13.0.2

19 Sep 15:27
4196d85
Compare
Choose a tag to compare

13.0.2 (2021-09-19)

Bug Fixes

  • do not modify objects passed to Request.addOutputParameter or Request.addParameter (f1acd07)

v13.0.1

17 Sep 16:55
ded1d8c
Compare
Choose a tag to compare

13.0.1 (2021-09-17)

Bug Fixes

  • correctly handle encoding of varchar/char values in TVP parameters (63e2747)

v13.0.0

12 Sep 14:25
6b8bd41
Compare
Choose a tag to compare

13.0.0 (2021-09-12)

Features

  • convert @azure/ms-rest-nodeauth to identity (8eca444)

BREAKING CHANGES

  • This introduces breaking changes as it replaces the previously used adal-node package for Azure authentication with the new @azure/identity package. Because of difference in these two libraries we had to remove support for the msiEndpoint option of
    the azure-active-directory-msi-vm authentication method, and the msiEndpoint and msiSecret options of the azure-active-directory-msi-app-service authentication option.

    There could also be other changes in authentication behavior, so be careful when upgrading if you're using one of the Azure specific authentication methods.

v12.3.0

12 Sep 09:14
7b4be33
Compare
Choose a tag to compare

12.3.0 (2021-09-12)

Features

  • deprecate azure authentication options that will be removed (596e575)