Releases: tediousjs/tedious
Releases · tediousjs/tedious
v14.3.0
14.3.0 (2022-02-02)
Features
- rename
domain
to tenantId
when using azure ad password (2150a9c)
v14.2.0
14.2.0 (2022-01-23)
Features
- allow specifying the
clientId
when using azure-active-directory-password
auth (95e98a1)
v14.1.0
14.1.0 (2022-01-12)
Features
- deprecate default value for trustServerCertificate (ea7f990)
v14.0.0
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 string
s.
- 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
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
13.1.0 (2021-09-28)
Features
- deprecate
BulkLoad.addRow
and BulkLoad.getRowStream
(91c7701)
- deprecate the
sspichallenge
event (aa0f790)
v13.0.5
13.0.5 (2021-09-28)
Bug Fixes
- prevent bulkload values from being validated twice (4017c39)
v13.0.4
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
13.0.3 (2021-09-19)
Bug Fixes
- prevent
Object
prototype pollution to affect rows or column metadata objects (e112237)
v13.0.2
13.0.2 (2021-09-19)
Bug Fixes
- do not modify objects passed to
Request.addOutputParameter
or Request.addParameter
(f1acd07)