Skip to content
This repository was archived by the owner on Aug 10, 2023. It is now read-only.

Commit 8d84723

Browse files
committed
Merge pull request #8 from restify/client-closed
bringing over changes from core 5.x branch
2 parents 6c76a36 + 70c941e commit 8d84723

4 files changed

Lines changed: 16 additions & 16 deletions

File tree

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ lint: node_modules $(ESLINT) $(SRCS)
6161
.PHONY: nsp
6262
nsp: node_modules $(NSP)
6363
@$(NPM) shrinkwrap --dev
64-
@($(NSP) audit-shrinkwrap || echo 1) | $(NSP_BADGE)
64+
@($(NSP) check || echo 1) | $(NSP_BADGE)
6565
@rm $(SHRINKWRAP)
6666

6767

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
[![Dependency Status](https://david-dm.org/restify/plugins.svg)](https://david-dm.org/restify/plugins)
77
[![devDependency Status](https://david-dm.org/restify/plugins/dev-status.svg)](https://david-dm.org/restify/plugins#info=devDependencies)
88
[![bitHound Score](https://www.bithound.io/github/restify/plugins/badges/score.svg)](https://www.bithound.io/github/restify/plugins/master)
9-
[![NSP Status](https://img.shields.io/badge/NSP%20status-no%20vulnerabilities-green.svg)](https://travis-ci.org/restify/plugins)
9+
[![NSP Status](https://img.shields.io/badge/NSP%20status-vulnerabilities%20found-red.svg)](https://travis-ci.org/restify/plugins)
1010

1111
> A collection of core restify plugins
1212

lib/plugins/audit.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,8 @@ function auditLogger(options) {
7777
version: req.version(),
7878
body: options.body === true ?
7979
req.body : undefined,
80-
timers: timers
80+
timers: timers,
81+
clientClosed: req.clientClosed
8182
});
8283
},
8384
res: function auditResponseSerializer(res) {

package.json

Lines changed: 12 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -80,31 +80,30 @@
8080
"url": "https://github.com/restify/plugins/issues"
8181
},
8282
"devDependencies": {
83-
"chai": "^3.2.0",
84-
"coveralls": "^2.11.4",
85-
"eslint": "^1.3.1",
86-
"istanbul": "^0.3.19",
87-
"jscs": "^2.1.1",
83+
"chai": "^3.4.1",
84+
"coveralls": "^2.11.6",
85+
"eslint": "^1.10.3",
86+
"istanbul": "^0.4.1",
87+
"jscs": "^2.7.0",
8888
"mkdirp": "^0.5.1",
89-
"mocha": "^2.3.2",
90-
"nsp": "^1.1.0",
91-
"restify": "^4.0.2",
92-
"restify-clients": "^1.1.0",
89+
"mocha": "^2.3.4",
90+
"nsp": "^2.1.0",
91+
"restify": "^4.0.3",
92+
"restify-clients": "^1.1.1",
9393
"rimraf": "^2.4.3"
9494
},
9595
"dependencies": {
96-
"assert-plus": "^0.1.5",
96+
"assert-plus": "^0.2.0",
9797
"bunyan": "^1.5.1",
98-
"crypto": "0.0.3",
9998
"csv": "^0.4.6",
10099
"escape-regexp-component": "^1.0.2",
101100
"formidable": "^1.0.17",
102101
"http-signature": "^0.11.0",
103102
"lru-cache": "^2.6.5",
104103
"mime": "^1.3.4",
105104
"once": "^1.3.2",
106-
"qs": "^5.0.0",
107-
"restify-errors": "^3.0.0",
105+
"qs": "^5.2.0",
106+
"restify-errors": "^3.1.0",
108107
"vasync": "^1.6.3"
109108
}
110109
}

0 commit comments

Comments
 (0)