From 827ce6b74448b4cd3cafa301e8dee2cbc7fe3bb8 Mon Sep 17 00:00:00 2001 From: Keiko Oda Date: Sat, 3 Feb 2024 09:12:26 +0900 Subject: [PATCH] Release 0.53.0 (#499) * Release 0.53.0 * Update CHANGELOG.md Co-authored-by: Lukas Fittl --------- Co-authored-by: Lukas Fittl --- CHANGELOG.md | 8 ++++++++ contrib/helm/pganalyze-collector/Chart.yaml | 4 ++-- packages/Makefile | 2 +- util/version.go | 2 +- 4 files changed, 12 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 44ae52924..e3683f32e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 0.53.0 2024-02-02 + +* Track extended statistics created with `CREATE STATISTICS` + - This is utilized by pganalyze Index Advisor to better detect functional dependencies, and improve multi-column index recommendations + - To allow the collector to access external statistics data you need to create the new "get_relation_stats_ext" helper function (see https://github.com/pganalyze/collector?tab=readme-ov-file#setting-up-a-restricted-monitoring-user) +* Docker image: Don't reload when calling "test" command + + ## 0.52.4 2023-12-21 * Log Insights: Add support for receiving syslog over TLS diff --git a/contrib/helm/pganalyze-collector/Chart.yaml b/contrib/helm/pganalyze-collector/Chart.yaml index 64835e234..e9b94a5b8 100644 --- a/contrib/helm/pganalyze-collector/Chart.yaml +++ b/contrib/helm/pganalyze-collector/Chart.yaml @@ -1,7 +1,7 @@ apiVersion: v2 name: pganalyze-collector -version: 0.52.4 -appVersion: "v0.52.4" +version: 0.53.0 +appVersion: "v0.53.0" type: application description: pganalyze statistics collector home: https://pganalyze.com/ diff --git a/packages/Makefile b/packages/Makefile index 108012d4c..72575b8b5 100644 --- a/packages/Makefile +++ b/packages/Makefile @@ -1,5 +1,5 @@ export NAME ?= pganalyze-collector -export VERSION ?= 0.52.4 +export VERSION ?= 0.53.0 export GIT_VERSION ?= v$(VERSION) #export GIT_VERSION=HEAD #export GIT_VERSION=618e85ce5ed5365bc7d9d9da866fdeb73bac5a55 diff --git a/util/version.go b/util/version.go index 835b6c234..46de66433 100644 --- a/util/version.go +++ b/util/version.go @@ -1,4 +1,4 @@ package util -const CollectorVersion = "0.52.4" +const CollectorVersion = "0.53.0" const CollectorNameAndVersion = "pganalyze-collector " + CollectorVersion