Skip to content

v14.0.0

Compare
Choose a tag to compare
@github-actions github-actions released this 08 Oct 19:35
· 182 commits to master since this release
b2d0fa2

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.