tedious

Node TDS module for connecting to SQL Server databases.

MIT License

Downloads
7.7M
Stars
1.6K
Committers
96

Bot releases are visible (Hide)

tedious - v11.0.4

Published by github-actions[bot] over 3 years ago

11.0.4 (2021-02-10)

Bug Fixes

  • varchar & varbinary to use exact length in type_info (46972ef)
tedious - v11.0.3

Published by github-actions[bot] over 3 years ago

11.0.3 (2021-01-24)

Bug Fixes

  • leave no dangling sockets on connect timeout (4104691)
tedious - v11.0.2

Published by github-actions[bot] over 3 years ago

11.0.2 (2021-01-23)

Bug Fixes

  • make BulkLoad.setTimeout actually cancel the request after the given timeout (4fe6fb9)
tedious - v11.0.1

Published by github-actions[bot] almost 4 years ago

11.0.1 (2021-01-14)

Bug Fixes

tedious - v11.0.0

Published by github-actions[bot] almost 4 years ago

11.0.0 (2021-01-13)

chore

  • drop support for Node.js 6.x and 8.x (714f9e2)

BREAKING CHANGES

  • tedious no longer supports Node.js 6.x and 8.x.
tedious - v10.0.0

Published by github-actions[bot] almost 4 years ago

10.0.0 (2021-01-13)

Features

  • change validateBulkLoadParameters default to true (5497b14)
  • no longer connect automatically when calling new Connection (16b10bf)

BREAKING CHANGES

  • Creating a new Connection instance will no longer establish a connection to the server automatically. Please use the new connect helper function or call the .connect method on the newly created Connection object instead.
  • This changes the default value of the validateBulkLoadParameters option from false to true. If you don't explicitly specify a value for this option, you might run into unexpected validation errors when loading data via BulkLoad. Set this to false explicitly to restore existing behavior, or true for proper parameter validation (recommended).
tedious - v9.2.3

Published by github-actions[bot] almost 4 years ago

9.2.3 (2020-12-23)

Bug Fixes

  • improve azure authentication performance (ac56c34)
tedious - v9.2.2

Published by github-actions[bot] almost 4 years ago

9.2.2 (2020-12-21)

Bug Fixes

  • add domain option for AAD username & pass (769bc97)
tedious - v9.2.1

Published by github-actions[bot] about 4 years ago

9.2.1 (2020-08-17)

Bug Fixes

  • connect callback could miss err argument (3477f58)
tedious - v9.2.0

Published by github-actions[bot] about 4 years ago

9.2.0 (2020-08-16)

Features

  • allow validating bulk load parameters (bb176fd)
tedious - v9.1.1

Published by github-actions[bot] about 4 years ago

9.1.1 (2020-08-12)

Bug Fixes

  • correctly handle invalid packet headers (20fb765)
tedious - v9.1.0

Published by github-actions[bot] about 4 years ago

9.1.0 (2020-07-30)

Features

  • add options.workstationId (9e75346)
tedious - v9.0.1

Published by github-actions[bot] over 4 years ago

9.0.1 (2020-06-28)

Bug Fixes

  • improve UniqueIdentifier data type validation (820dd23)
tedious - v9.0.0

Published by github-actions[bot] over 4 years ago

9.0.0 (2020-06-23)

Features

  • change default value of trustServerCertificate (afd4027)

BREAKING CHANGES

  • This changes the default value from true to false. This might lead to encrypted connections not being established if the server's certificate can not be validated against the default list of CAs.

You can either explicitly set trustServerCertificate to true (not recommended, as it disables certificate validation) or specify a custom CA list via the cryptoCredentialsDetails connection option.

tedious - v8.3.1

Published by github-actions[bot] over 4 years ago

8.3.1 (2020-06-23)

Bug Fixes

  • use proper servername for TLS after redirect (81cb31c)
tedious - v8.3.0

Published by arthurschreiber over 4 years ago

8.3.0 (2020-04-13)

Features

  • deprecate automatically establishing a connection (79f2747)
tedious - v8.2.0

Published by arthurschreiber over 4 years ago

8.2.0 (2020-03-15)

Features

  • deprecate trustServerCertificate default being true (1231e09)
tedious - v8.1.1

Published by arthurschreiber over 4 years ago

8.1.1 (2020-03-08)

Bug Fixes

  • validate isolation level (325ee0f)
tedious - v8.1.0

Published by arthurschreiber over 4 years ago

8.1.0 (2020-03-07)

Features

  • improve performance for large requests (6b1d2e4)
tedious - v8.0.1

Published by arthurschreiber almost 5 years ago

8.0.1 (2020-01-07)

Bug Fixes

  • properly cancel requests in BUILDING_CLIENT_REQUEST state (62ff4a1)