Skip to content

v0.2.0

Compare
Choose a tag to compare
@tboerger tboerger released this 12 Jan 00:35
· 393 commits to master since this release
v0.2.0
c6dcb86

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.

    #3

  • 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.

    #1

  • 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.

    #2

  • Change #3: Update dependencies

    Just make sure to update all the build dependencies to work with the latest versions available.

    #3

  • Change #3: Timeout for metrics handler

    We added an additional middleware to properly timeout requests to the metrics endpoint for
    long running request.

    #3

  • Change #3: Panic recover within handlers

    To make sure panics are properly handled we added a middleware to recover properly from panics.

    #3