Skip to content

Releases: tediousjs/tedious

1.0.0

01 Aug 11:14
Compare
Choose a tag to compare
  • Start of semantic versioning, and commitment to stable API until v2.0.0.

0.3.0

01 Aug 11:15
Compare
Choose a tag to compare
  • #156 Added support for default connection isolation level (Bryan J. Ross)
  • Added support for returning camel cased columns (Bryan J. Ross)
  • Added support for building lib on Windows (Bryan J. Ross)

0.1.5

01 Aug 11:15
Compare
Choose a tag to compare
  • #94 Emit connect event with error (if connecting) or emit errorMessage event on socket error. (Daniel Rapp)
  • #96 Emit event after request callback. (Matheus Kautzmann)

0.1.4

01 Aug 11:17
Compare
Choose a tag to compare
  • #80 Add placeholder event handlers to suppress crash in final. (Nicholas Penree)
  • #83 Better default values for options in default sql statement. (Kevin Pullin)
  • #73 Expose collected rows in request callback and done* events.
  • #85 Add connection.reset function, to reset connection to initial state.
  • #86 Make encrypted connections work with node v0.10.
  • #91 Honour optional appName property in config.options.
  • Add support for using Real in parameterized statements.
  • Correct value for Request's completion callback's rowCount argument for statements other than select.

0.1.3

01 Aug 11:17
Compare
Choose a tag to compare
  • #75 Support Text as a parameter type. (Zach Aller)
  • #72 New example, showing insert statement using parameters of different types. (Will Munn)
  • #70 Support for duplicate column names in result sets. (Nadeem)

0.1.2

01 Aug 11:18
Compare
Choose a tag to compare
  • #66 Column not accessible by column name when the name is numeric.
  • #67 Support for XML data type in result sets.

0.1.0

01 Aug 11:18
Compare
Choose a tag to compare
  • Support GUID, BigInt and Float as a parameter types. (Zach Aller)
  • Support for windows936 encoding. (lastonesky)
  • Same format for GUIDs in results and parameters. (Cort Fritz)

0.0.7

01 Aug 11:19
Compare
Choose a tag to compare
  • Support for transactions.
  • Experimental support for secure connections.
  • Some support for TDS 7.1, for connecting to SQL Server 2000. (Phil Dodderidge)

0.0.6

01 Aug 11:19
Compare
Choose a tag to compare
  • Remove post-install script hook. It won't run (as is) on Windows, and doesn't really add anything useful.

0.0.5

01 Aug 11:20
Compare
Choose a tag to compare
  • Instead of publishing CoffeeScript files and compiling them at runtime, the CoffeeScript is compiled before publishing. Only Javascript files are pubslished and installed.
  • Support for preparing and executing SQL.
  • #25 When the value of tinyint, smallint or int parameters are 0, do not send their value as null.
  • #22 Support for DATABASE_MIRRORING_PARTNER environment change notification.
  • Support for using bit, smalldatetime and datetime types in parameterised statements.
  • #32 Support for using varchar(max) and nvarchar(max) in parameterised statements.
  • Use iconv-lite instead of iconv. This means that tedious is back to pure Javascript, including its dependencies.