Comparing version 8.4.1 to 8.5.0
@@ -0,1 +1,10 @@ | ||
<a name="8.5.0"></a> | ||
## 8.5.0 (2019-12-02) | ||
#### Features | ||
* **chain:** use nextTick instead of setImmediate (#1808) ([703470ad](git://github.com/restify/node-restify.git/commit/703470ad)) | ||
<a name="8.4.1"></a> | ||
@@ -2,0 +11,0 @@ ### 8.4.1 (2019-11-27) |
@@ -115,3 +115,5 @@ 'use strict'; | ||
if (!handler || req.closed()) { | ||
setImmediate(done, err, req, res); | ||
process.nextTick(function nextTick() { | ||
return done(err, req, res); | ||
}); | ||
return; | ||
@@ -118,0 +120,0 @@ } |
@@ -77,3 +77,3 @@ { | ||
], | ||
"version": "8.4.1", | ||
"version": "8.5.0", | ||
"repository": { | ||
@@ -80,0 +80,0 @@ "type": "git", |
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
2139018
8350