diff options
Diffstat (limited to 'node_modules/finalhandler')
-rw-r--r-- | node_modules/finalhandler/HISTORY.md | 19 | ||||
-rw-r--r-- | node_modules/finalhandler/index.js | 3 | ||||
-rw-r--r-- | node_modules/finalhandler/package.json | 19 |
3 files changed, 32 insertions, 9 deletions
diff --git a/node_modules/finalhandler/HISTORY.md b/node_modules/finalhandler/HISTORY.md index efd871b58..b1ff016f0 100644 --- a/node_modules/finalhandler/HISTORY.md +++ b/node_modules/finalhandler/HISTORY.md @@ -1,3 +1,22 @@ +1.0.3 / 2017-05-16 +================== + + * deps: debug@2.6.7 + - deps: ms@2.0.0 + +1.0.2 / 2017-04-22 +================== + + * deps: debug@2.6.4 + - deps: ms@0.7.3 + +1.0.1 / 2017-03-21 +================== + + * Fix missing `</html>` in HTML document + * deps: debug@2.6.3 + - Fix: `DEBUG_MAX_ARRAY_LENGTH` + 1.0.0 / 2017-02-15 ================== diff --git a/node_modules/finalhandler/index.js b/node_modules/finalhandler/index.js index f3847e3bf..87974ca03 100644 --- a/node_modules/finalhandler/index.js +++ b/node_modules/finalhandler/index.js @@ -53,7 +53,8 @@ function createHtmlDocument (message) { '</head>\n' + '<body>\n' + '<pre>' + body + '</pre>\n' + - '</body>\n' + '</body>\n' + + '</html>\n' } /** diff --git a/node_modules/finalhandler/package.json b/node_modules/finalhandler/package.json index 7a77d9023..5129d92ad 100644 --- a/node_modules/finalhandler/package.json +++ b/node_modules/finalhandler/package.json @@ -1,12 +1,12 @@ { "name": "finalhandler", "description": "Node.js final http responder", - "version": "1.0.0", + "version": "1.0.3", "author": "Douglas Christopher Wilson <doug@somethingdoug.com>", "license": "MIT", "repository": "pillarjs/finalhandler", "dependencies": { - "debug": "2.6.1", + "debug": "2.6.7", "encodeurl": "~1.0.1", "escape-html": "~1.0.3", "on-finished": "~2.3.0", @@ -15,14 +15,17 @@ "unpipe": "~1.0.0" }, "devDependencies": { - "eslint": "3.15.0", - "eslint-config-standard": "6.2.1", - "eslint-plugin-markdown": "1.0.0-beta.3", - "eslint-plugin-promise": "3.3.2", - "eslint-plugin-standard": "2.0.1", + "eslint": "3.19.0", + "eslint-config-standard": "10.2.1", + "eslint-plugin-import": "2.2.0", + "eslint-plugin-markdown": "1.0.0-beta.6", + "eslint-plugin-node": "4.2.2", + "eslint-plugin-promise": "3.5.0", + "eslint-plugin-standard": "3.0.1", "istanbul": "0.4.5", "mocha": "2.5.3", - "readable-stream": "2.1.2", + "readable-stream": "2.2.9", + "safe-buffer": "5.0.1", "supertest": "1.1.0" }, "files": [ |