From 255782ccdffef657342e20162193bf33a071b88d Mon Sep 17 00:00:00 2001 From: Cristian Greco Date: Tue, 23 Sep 2025 22:06:40 +0200 Subject: [PATCH 1/4] Prepare release `0.18.0` * [FEATURE] Add `stat_progress_vacuum` collector by @ianbibby * [FEATURE] Add `buffercache_summary` collector by @sfc-gh-pnuttall * [FEATURE] `stat_statements`: export query itself together with `queryId` by @Delorien84 * [ENHANCEMENT] Update Go version by @SuperQ * [ENHANCEMENT] Improve error handling for `Server.Scrape` by @BoweFlex * [ENHANCEMENT] `stat_user_tables`: record table-only size bytes in addition to the total size bytes by @Sticksman * [ENHANCEMENT] (chore) Fix a typo and use `slices.Contains` by @cristiangreco * [ENHANCEMENT] Update mixin to latest changes from `grafana/postgres_exporter` by @cristiangreco, @gaantunes, @v-zhuravlev and @mshahzeb * [ENHANCEMENT] Exclude the metrics fetching session's data from pg_stat_activity by @kmoppel * [BUGFIX] Ensure database connections are always closed by @cristiangreco and @dehaansa Signed-off-by: Cristian Greco --- CHANGELOG.md | 20 ++++++++++++++++++++ VERSION | 2 +- 2 files changed, 21 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d01ceb504..a28638997 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,23 @@ +## main / (unreleased) + +* [CHANGE] ... +* [FEATURE] ... +* [ENHANCEMENT] ... +* [BUGFIX] ... + +## 0.18.0 / 2025-09-23 + +* [FEATURE] Add `stat_progress_vacuum` collector by @ianbibby +* [FEATURE] Add `buffercache_summary` collector by @sfc-gh-pnuttall +* [FEATURE] `stat_statements`: export query itself together with `queryId` by @Delorien84 +* [ENHANCEMENT] Update Go version by @SuperQ +* [ENHANCEMENT] Improve error handling for `Server.Scrape` by @BoweFlex +* [ENHANCEMENT] `stat_user_tables`: record table-only size bytes in addition to the total size bytes by @Sticksman +* [ENHANCEMENT] (chore) Fix a typo and use `slices.Contains` by @cristiangreco +* [ENHANCEMENT] Update mixin to latest changes from `grafana/postgres_exporter` by @cristiangreco, @gaantunes, @v-zhuravlev and @mshahzeb +* [ENHANCEMENT] Exclude the metrics fetching session's data from pg_stat_activity by @kmoppel +* [BUGFIX] Ensure database connections are always closed by @cristiangreco and @dehaansa + ## 0.17.1 / 2025-02-26 * [BUGFIX] Fix: Handle incoming labels with invalid UTF-8 #1131 diff --git a/VERSION b/VERSION index 7cca7711a..66333910a 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.17.1 +0.18.0 From f800b7b18c6de909ed2e93428d6d33f04267c01e Mon Sep 17 00:00:00 2001 From: Cristian Greco Date: Wed, 24 Sep 2025 09:23:03 +0200 Subject: [PATCH 2/4] rm entry about go update Co-authored-by: Joe Adams Signed-off-by: Cristian Greco --- CHANGELOG.md | 1 - 1 file changed, 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a28638997..53bd889eb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,7 +10,6 @@ * [FEATURE] Add `stat_progress_vacuum` collector by @ianbibby * [FEATURE] Add `buffercache_summary` collector by @sfc-gh-pnuttall * [FEATURE] `stat_statements`: export query itself together with `queryId` by @Delorien84 -* [ENHANCEMENT] Update Go version by @SuperQ * [ENHANCEMENT] Improve error handling for `Server.Scrape` by @BoweFlex * [ENHANCEMENT] `stat_user_tables`: record table-only size bytes in addition to the total size bytes by @Sticksman * [ENHANCEMENT] (chore) Fix a typo and use `slices.Contains` by @cristiangreco From 64a77bceb9ed66f523de8d8bb3108dedf23388e7 Mon Sep 17 00:00:00 2001 From: Cristian Greco Date: Thu, 25 Sep 2025 16:07:33 +0200 Subject: [PATCH 3/4] add PRs Signed-off-by: Cristian Greco --- CHANGELOG.md | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 53bd889eb..ea1475063 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,15 +7,16 @@ ## 0.18.0 / 2025-09-23 -* [FEATURE] Add `stat_progress_vacuum` collector by @ianbibby -* [FEATURE] Add `buffercache_summary` collector by @sfc-gh-pnuttall -* [FEATURE] `stat_statements`: export query itself together with `queryId` by @Delorien84 -* [ENHANCEMENT] Improve error handling for `Server.Scrape` by @BoweFlex -* [ENHANCEMENT] `stat_user_tables`: record table-only size bytes in addition to the total size bytes by @Sticksman -* [ENHANCEMENT] (chore) Fix a typo and use `slices.Contains` by @cristiangreco -* [ENHANCEMENT] Update mixin to latest changes from `grafana/postgres_exporter` by @cristiangreco, @gaantunes, @v-zhuravlev and @mshahzeb -* [ENHANCEMENT] Exclude the metrics fetching session's data from pg_stat_activity by @kmoppel -* [BUGFIX] Ensure database connections are always closed by @cristiangreco and @dehaansa +* [FEATURE] Add `stat_progress_vacuum` collector by @ianbibby in https://github.com/prometheus-community/postgres_exporter/pull/1141 +* [FEATURE] Add `buffercache_summary` collector by @sfc-gh-pnuttall in https://github.com/prometheus-community/postgres_exporter/pull/1165 +* [FEATURE] `stat_statements`: export query itself together with `queryId` by @Delorien84 in https://github.com/prometheus-community/postgres_exporter/pull/940 +* [ENHANCEMENT] Improve error handling for `Server.Scrape` by @BoweFlex in https://github.com/prometheus-community/postgres_exporter/pull/1158 +* [ENHANCEMENT] `stat_user_tables`: record table-only size bytes in addition to the total size bytes by @Sticksman Sticksman in https://github.com/prometheus-community/postgres_exporter/pull/1149 +* [ENHANCEMENT] (chore) Fix a typo and use `slices.Contains` by @cristiangreco in https://github.com/prometheus-community/postgres_exporter/pull/1176 +* [ENHANCEMENT] Update mixin to latest changes from `grafana/postgres_exporter` by @cristiangreco, @gaantunes, @v-zhuravlev and @mshahzeb in https://github.com/prometheus-community/postgres_exporter/pull/1179 +* [ENHANCEMENT] Exclude the metrics fetching session's data from pg_stat_activity by @kmoppel in https://github.com/prometheus-community/postgres_exporter/pull/1185 +* [BUGFIX] Ensure database connections are always closed by @cristiangreco and @dehaansa in https://github.com/prometheus-community/postgres_exporter/pull/1177 +* [BUGFIX] Fix superfluous semicolon breaking query in `process_idle` by @sysadmind in https://github.com/prometheus-community/postgres_exporter/pull/1197 ## 0.17.1 / 2025-02-26 From 74156de23c382c892a932c89da69c9ab768cb226 Mon Sep 17 00:00:00 2001 From: Cristian Greco Date: Thu, 25 Sep 2025 16:08:42 +0200 Subject: [PATCH 4/4] update date Signed-off-by: Cristian Greco --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ea1475063..4402fb354 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,7 @@ * [ENHANCEMENT] ... * [BUGFIX] ... -## 0.18.0 / 2025-09-23 +## 0.18.0 / 2025-09-25 * [FEATURE] Add `stat_progress_vacuum` collector by @ianbibby in https://github.com/prometheus-community/postgres_exporter/pull/1141 * [FEATURE] Add `buffercache_summary` collector by @sfc-gh-pnuttall in https://github.com/prometheus-community/postgres_exporter/pull/1165