Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

mssql

Package Overview
Dependencies
Maintainers
1
Versions
170
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mssql - npm Package Compare versions

Comparing version 0.5.4 to 0.5.5

8

CHANGELOG.txt

@@ -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 @@ -------------------

4

lib/msnodesql.js

@@ -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 @@ };

2

package.json

@@ -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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc