v0.2.0
Changelog for 0.2.0
The following sections list the changes for 0.2.0.
Summary
- Fix #3: Define only existing image labels
- Chg #1: Add basic documentation
- Chg #2: Pin xgo to golang 1.10 to avoid issues
- Chg #3: Update dependencies
- Chg #3: Timeout for metrics handler
- Chg #3: Panic recover within handlers
Details
-
Bugfix #3: Define only existing image labels
It's possible that a server doesn't provide a image label, so we are setting the right labels ony
with a value if this is really available. -
Change #1: Add basic documentation
Add some basic documentation page which also includes build and installation instructions to
make clear how this project can be installed and used. -
Change #2: Pin xgo to golang 1.10 to avoid issues
There had been issues while using the latest xgo version, let's pin this tag to 1.10 to ensure the
binaries are properly build. -
Change #3: Update dependencies
Just make sure to update all the build dependencies to work with the latest versions available.
-
Change #3: Timeout for metrics handler
We added an additional middleware to properly timeout requests to the metrics endpoint for
long running request. -
Change #3: Panic recover within handlers
To make sure panics are properly handled we added a middleware to recover properly from panics.