From a2910f19cec6783f21ae514c52b21fa9e30f7e8e Mon Sep 17 00:00:00 2001 From: Luca Comellini Date: Thu, 23 Apr 2020 09:12:02 -0700 Subject: [PATCH] Release 0.7.0 --- CHANGELOG.md | 16 ++++++++++++++++ Makefile | 2 +- README.md | 4 ++-- 3 files changed, 19 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ad4279c2..06655118 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,21 @@ # Changelog +### 0.7.0 + +FEATURES: +* [86](https://github.com/nginxinc/nginx-prometheus-exporter/pull/86): Implemented TLS client certificate authentication. Thanks to [Fabian Lüpke](https://github.com/Fluepke). + +BUGFIXES: +* [96](https://github.com/nginxinc/nginx-prometheus-exporter/pull/96): Add const labels to upMetric. Thanks to [Robert Toth](https://github.com/robert-toth). + +UPGRADE: +* Use the 0.7.0 image from our DockerHub: `nginx/nginx-prometheus-exporter:0.7.0` +* Download the latest binaries from [GitHub releases page](https://github.com/nginxinc/nginx-prometheus-exporter/releases/tag/v0.7.0). + +COMPATIBILITY: +* NGINX 0.1.18 or newer. +* NGINX Plus R19 or newer. + ### 0.6.0 FEATURES: diff --git a/Makefile b/Makefile index a32316db..98977877 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -VERSION = 0.6.0 +VERSION = 0.7.0 TAG = $(VERSION) PREFIX = nginx/nginx-prometheus-exporter diff --git a/README.md b/README.md index 5dad3683..d5753e22 100644 --- a/README.md +++ b/README.md @@ -30,13 +30,13 @@ To start the exporter we use the [docker run](https://docs.docker.com/engine/ref * To export NGINX metrics, run: ``` - $ docker run -p 9113:9113 nginx/nginx-prometheus-exporter:0.6.0 -nginx.scrape-uri http://:8080/stub_status + $ docker run -p 9113:9113 nginx/nginx-prometheus-exporter:0.7.0 -nginx.scrape-uri http://:8080/stub_status ``` where `` is the IP address/DNS name, through which NGINX is available. * To export NGINX Plus metrics, run: ``` - $ docker run -p 9113:9113 nginx/nginx-prometheus-exporter:0.6.0 -nginx.plus -nginx.scrape-uri http://:8080/api + $ docker run -p 9113:9113 nginx/nginx-prometheus-exporter:0.7.0 -nginx.plus -nginx.scrape-uri http://:8080/api ``` where `` is the IP address/DNS name, through which NGINX Plus is available.