v14.0.0
·
203 commits
to master
since this release
14.0.0 (2021-10-08)
Code Refactoring
- convert
ConnectionErrorandRequestErrorto proper classes (3e489b4)
Features
char/nchar/varchar/nvarchar/text/ntext/uniqueidentifiervalues no longer support automatic type coercion (d486a31)- remove
addRowandgetRowStreamfromBulkLoad(ca8afd3) - remove
sspichallengeevent onConnection(f76518b)
BREAKING CHANGES
char/nchar/varchar/nvarchar/text/ntext/uniqueidentifiervalues no longer support automatic type coercion, but instead require values to bestrings.- Constructing a
ConnectionErrororRequestErrornow requires to using thenewkeyword. - This removes the
addRowandgetRowStreammethods fromBulkLoadinstances. You can pass anIterable(e.g. anArrayorGenerator) orAsyncIterable(e.g.stream.ReadableorAsyncGenerator) with the row data instead. - This removes the
sspichallengeevent onConnection.