From 77d4003c72f054ac435df1223deac17b1f8858ea Mon Sep 17 00:00:00 2001 From: Arthur Silva Sens Date: Tue, 27 Feb 2024 11:33:22 -0300 Subject: [PATCH 1/2] Add 1.19.0 changelog (#1451) Signed-off-by: Arthur Silva Sens --- CHANGELOG.md | 7 +++++++ VERSION | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 74b9aba..a457477 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ ## Unreleased +## 1.19.0 / 2023-02-27 + +The module `prometheus/common v0.48.0` introduced a bug when used together with client_golang. If your project uses client_golang and you want to use `prometheus/common v0.48.0` or higher, please update client_golang to v1.19.0. + +* [CHANGE] Minimum required go version is now 1.20 (we also test client_golang against new 1.22 version). #1445 #1449 +* [FEATURE] collectors: Add version collector. #1422 #1427 + ## 1.18.0 / 2023-12-22 * [FEATURE] promlint: Allow creation of custom metric validations. #1311 diff --git a/VERSION b/VERSION index 84cc529..815d5ca 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.18.0 +1.19.0 From 0aa8c9f68b59bbb17c8c871eb89d615ad19998ed Mon Sep 17 00:00:00 2001 From: Arthur Silva Sens Date: Wed, 28 Feb 2024 19:31:27 -0300 Subject: [PATCH 2/2] Rephrase incompatibility with common v0.48.0 Signed-off-by: Arthur Silva Sens --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a457477..ec1c03a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ ## 1.19.0 / 2023-02-27 -The module `prometheus/common v0.48.0` introduced a bug when used together with client_golang. If your project uses client_golang and you want to use `prometheus/common v0.48.0` or higher, please update client_golang to v1.19.0. +The module `prometheus/common v0.48.0` introduced an incompatibility when used together with client_golang (See https://github.com/prometheus/client_golang/pull/1448 for more details). If your project uses client_golang and you want to use `prometheus/common v0.48.0` or higher, please update client_golang to v1.19.0. * [CHANGE] Minimum required go version is now 1.20 (we also test client_golang against new 1.22 version). #1445 #1449 * [FEATURE] collectors: Add version collector. #1422 #1427