v14.0.0
github-actions
released this
08 Oct 19:35
·
182 commits
to master
since this release
14.0.0 (2021-10-08)
Code Refactoring
- convert
ConnectionError
andRequestError
to proper classes (3e489b4)
Features
char
/nchar
/varchar
/nvarchar
/text
/ntext
/uniqueidentifier
values no longer support automatic type coercion (d486a31)- remove
addRow
andgetRowStream
fromBulkLoad
(ca8afd3) - remove
sspichallenge
event onConnection
(f76518b)
BREAKING CHANGES
char
/nchar
/varchar
/nvarchar
/text
/ntext
/uniqueidentifier
values no longer support automatic type coercion, but instead require values to bestring
s.- Constructing a
ConnectionError
orRequestError
now requires to using thenew
keyword. - This removes the
addRow
andgetRowStream
methods fromBulkLoad
instances. You can pass anIterable
(e.g. anArray
orGenerator
) orAsyncIterable
(e.g.stream.Readable
orAsyncGenerator
) with the row data instead. - This removes the
sspichallenge
event onConnection
.