Comparing version 0.5.4 to 0.5.5
@@ -0,1 +1,9 @@ | ||
v0.5.5 (2014-06-24) | ||
------------------- | ||
[fix] Failed login left open connection pool | ||
v0.5.4 (2014-06-15) | ||
------------------- | ||
[new] Multiple errors handling | ||
v0.5.3 (2014-04-04) | ||
@@ -2,0 +10,0 @@ ------------------- |
@@ -246,2 +246,6 @@ // Generated by CoffeeScript 1.7.1 | ||
_this.pool.release(connection); | ||
if (err) { | ||
_this.pool.destroyAllNow(); | ||
_this.pool = null; | ||
} | ||
return callback(err); | ||
@@ -248,0 +252,0 @@ }; |
@@ -257,2 +257,6 @@ // Generated by CoffeeScript 1.7.1 | ||
_this.pool.release(connection); | ||
if (err) { | ||
_this.pool.destroyAllNow(); | ||
_this.pool = null; | ||
} | ||
return callback(err); | ||
@@ -259,0 +263,0 @@ }; |
@@ -330,2 +330,6 @@ // Generated by CoffeeScript 1.7.1 | ||
_this.pool.release(connection); | ||
if (err) { | ||
_this.pool.destroyAllNow(); | ||
_this.pool = null; | ||
} | ||
return callback(err); | ||
@@ -332,0 +336,0 @@ }; |
@@ -20,3 +20,3 @@ { | ||
], | ||
"version": "0.5.4", | ||
"version": "0.5.5", | ||
"main": "index.js", | ||
@@ -23,0 +23,0 @@ "repository": { |
@@ -21,14 +21,8 @@ # node-mssql [![Dependency Status](https://david-dm.org/patriksimek/node-mssql.png)](https://david-dm.org/patriksimek/node-mssql) [![NPM version](https://badge.fury.io/js/mssql.png)](http://badge.fury.io/js/mssql) | ||
## What's new in 0.5.4 (stable, npm) | ||
## What's new in 0.5.5 (stable, npm) | ||
- Multiple errors handling (`err.precedingErrors`) | ||
- Fix: Failed login left open connection pool | ||
## What's new in 0.5.3 | ||
## What's new in 0.5.x | ||
- Support for [Prepared Statements](#prepared-statement) | ||
- Fixed order of output parameters | ||
- Minor fixes in node-tds driver | ||
## What's new in 0.5.1 | ||
- Updated to new Tedious 0.2.2 | ||
@@ -48,2 +42,6 @@ - Added support for TDS 7.4 | ||
- Default SQL data type for JS String type is now NVarChar (was VarChar) | ||
- Support for [Prepared Statements](#prepared-statement) | ||
- Fixed order of output parameters | ||
- Minor fixes in node-tds driver | ||
- Multiple errors handling (`err.precedingErrors`) | ||
@@ -50,0 +48,0 @@ ## Installation |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
234632
3655
985