Comparing version 3.3.2 to 3.3.3
@@ -0,1 +1,6 @@ | ||
3.3.3 / 2014-11-09 | ||
================== | ||
* Correctly invoke async callback asynchronously | ||
3.3.2 / 2014-10-28 | ||
@@ -88,2 +93,10 @@ ================== | ||
2.27.3 / 2014-11-09 | ||
=================== | ||
* Correctly invoke async callback asynchronously | ||
* deps: csurf@~1.6.3 | ||
- bump csrf | ||
- bump http-errors | ||
2.27.2 / 2014-10-28 | ||
@@ -90,0 +103,0 @@ =================== |
@@ -25,2 +25,7 @@ /*! | ||
/* istanbul ignore next */ | ||
var defer = typeof setImmediate === 'function' | ||
? setImmediate | ||
: function(fn){ process.nextTick(fn.bind.apply(fn, arguments)) } | ||
/** | ||
@@ -118,3 +123,3 @@ * Utilize the given middleware `handle` to the given `route`, | ||
if (!layer) { | ||
done(err); | ||
defer(done, err); | ||
return; | ||
@@ -121,0 +126,0 @@ } |
{ | ||
"name": "connect", | ||
"description": "High performance middleware framework", | ||
"version": "3.3.2", | ||
"version": "3.3.3", | ||
"author": "TJ Holowaychuk <tj@vision-media.ca> (http://tjholowaychuk.com)", | ||
@@ -27,4 +27,4 @@ "contributors": [ | ||
"istanbul": "0.3.2", | ||
"mocha": "~2.0.0", | ||
"should": "~4.1.0", | ||
"mocha": "~2.0.1", | ||
"should": "~4.2.1", | ||
"supertest": "~0.14.0" | ||
@@ -31,0 +31,0 @@ }, |
@@ -62,3 +62,3 @@ # Connect | ||
The core of Connect is "using" middleware. Middleware are added as a "stack" | ||
where incoming requests will execure each middleware one-by-one until a middleware | ||
where incoming requests will execute each middleware one-by-one until a middleware | ||
does not call `next()` within it. | ||
@@ -65,0 +65,0 @@ |
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
72980
222