healthcheck-ping
Advanced tools
Comparing version 1.0.0 to 1.1.0
@@ -0,3 +1,20 @@ | ||
## 1.1.0 (April 3, 2016) | ||
### Enhancements | ||
* Use named function for healthcheck route function (#16) | ||
### Dependency Upgrades | ||
* Update eslint to version 2.6.0 🚀 (#15) | ||
* Update eslint-config-holidaycheck to version 0.6.0 🚀 (#14) | ||
* Update supertest-as-promised to version 3.1.0 🚀 (#13) | ||
* Update eslint to version 2.5.3 🚀 (#11) | ||
* Update coveralls to version 2.11.9 🚀 (#7) | ||
* Update eslint to version 2.4.0 🚀 (#5) | ||
* Update eslint to version 2.3.0 🚀 (#2) | ||
* Update pr-log to version 1.4.0 🚀 (#4) | ||
1.0.0 (29 February, 2016) | ||
Initial release |
'use strict'; | ||
module.exports = function (req, res) { | ||
module.exports = function healthcheck(req, res) { | ||
res.status(200).json({ status: 'OK' }).end(); | ||
}; |
{ | ||
"name": "healthcheck-ping", | ||
"version": "1.0.0", | ||
"version": "1.1.0", | ||
"description": "Express middleware exposing a health check endpoint", | ||
@@ -17,5 +17,5 @@ "main": "lib/healthcheckMiddleware", | ||
"devDependencies": { | ||
"coveralls": "2.11.8", | ||
"eslint": "2.2.0", | ||
"eslint-config-holidaycheck": "0.2.0", | ||
"coveralls": "2.11.9", | ||
"eslint": "2.6.0", | ||
"eslint-config-holidaycheck": "0.6.0", | ||
"chai": "3.5.0", | ||
@@ -26,5 +26,5 @@ "mocha": "2.4.5", | ||
"supertest": "1.2.0", | ||
"supertest-as-promised": "3.0.0", | ||
"supertest-as-promised": "3.1.0", | ||
"istanbul": "0.4.2", | ||
"pr-log": "1.3.0" | ||
"pr-log": "1.4.0" | ||
}, | ||
@@ -31,0 +31,0 @@ "scripts": { |
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
5005