diff --git a/CHANGELOG.md b/CHANGELOG.md index 137a155..780b686 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ All notable changes to this project will be documented in this file. Dates are displayed in UTC. +#### [v1.3.0](https://github.com/Phara0h/sky-puppy/compare/v1.2.0...v1.3.0) + +> 4 November 2020 + +- +Fixed bugs and added pretty console logs + +- Fixed `last_unhealthy_total_duration` and `last_healthy_total_duration` bug reporting the wrong elapsed time. +- Fixed `healthy` status getting reported even when unhealthy/down has not yet been reported. +- Fixed bug relating to console title displaying config version instead of application version. +- Added new console logs (see sample config for details) +- Added 2 new test-server routes +[`bd98346`](https://github.com/Phara0h/sky-puppy/commit/bd9834615c809569f714ac4dcc01ab00838f73cf) + #### [v1.2.0](https://github.com/Phara0h/sky-puppy/compare/v1.1.2...v1.2.0) > 3 November 2020 diff --git a/README.md b/README.md index 227a389..8c62941 100644 --- a/README.md +++ b/README.md @@ -131,7 +131,12 @@ Sky Puppy looks for a file called `sky-puppy-config.json` in the folder it is ra } }, "skypuppy": { - "version": "1.0.0" + "version": "1.0.0", + "log": { + "enable": true, + "colors": true, + "level": "info" + } } } @@ -141,6 +146,20 @@ Sky Puppy looks for a file called `sky-puppy-config.json` in the folder it is ra All notable changes to this project will be documented in this file. Dates are displayed in UTC. +#### [v1.3.0](https://github.com/Phara0h/sky-puppy/compare/v1.2.0...v1.3.0) + +> 4 November 2020 + +- +Fixed bugs and added pretty console logs + +- Fixed `last_unhealthy_total_duration` and `last_healthy_total_duration` bug reporting the wrong elapsed time. +- Fixed `healthy` status getting reported even when unhealthy/down has not yet been reported. +- Fixed bug relating to console title displaying config version instead of application version. +- Added new console logs (see sample config for details) +- Added 2 new test-server routes +[`bd98346`](https://github.com/Phara0h/sky-puppy/commit/bd9834615c809569f714ac4dcc01ab00838f73cf) + #### [v1.2.0](https://github.com/Phara0h/sky-puppy/compare/v1.1.2...v1.2.0) > 3 November 2020 diff --git a/package.json b/package.json index 3b991ad..9d5e0a9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "sky-puppy", - "version": "1.2.0", + "version": "1.3.0", "description": "A easy to use reliable health checking service with Prometheus export", "main": "./src/index.js", "scripts": {