From 176a0ed44325a8114616d7398060cce7e9fbc397 Mon Sep 17 00:00:00 2001 From: Lukas Fittl Date: Wed, 23 Oct 2024 13:20:33 -0700 Subject: [PATCH] Release 0.61.0 --- CHANGELOG.md | 16 ++++++++++++++++ contrib/helm/pganalyze-collector/Chart.yaml | 4 ++-- packages/Makefile | 2 +- util/version.go | 2 +- 4 files changed, 20 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 452fe5d66..503d951ac 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,21 @@ # Changelog +## 0.61.0 2024-10-23 + +* Store query texts in temporary file before fingerprinting them + - This fixes an increase in reported runtime of collector queries, + due to a slow loading of the result set introduced in release 0.60.0 +* Log Insights: Use more specific log parsing regexp + - This avoids incorrectly sending application/database/role identifiers longer + than 63 characters (Postgres' built-in limit) when there are parsing issues +* Show error when pg_stat_statements version is below 1.9 with Postgres 14+ + - Old pg_stat_statements extension schemas don't correctly include the + "toplevel" attribute, and can cause bogus query statistics when there + is a mismatch between the extension schema and the shared library code +* Track cluster identifier (cluster ID) as part of system information +* Keep fetching column stats with outdated helper function on Postgres < 17 + + ## 0.60.0 2024-10-15 WARNING: For Enterprise Server releases older than 2024.10 using [a separate collector installation](https://pganalyze.com/docs/enterprise/setup/separate-collector-install), this release is partially incompatible. Log Insights will not receive any data if using this collector version. Enterprise Server installations using an integrated collector are not affected, nor are Scale and Production plans. diff --git a/contrib/helm/pganalyze-collector/Chart.yaml b/contrib/helm/pganalyze-collector/Chart.yaml index d3ba44b6a..cd1bf9757 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.60.0 -appVersion: "v0.60.0" +version: 0.61.0 +appVersion: "v0.61.0" type: application description: pganalyze statistics collector home: https://pganalyze.com/ diff --git a/packages/Makefile b/packages/Makefile index 2ce13f8a0..dae10ecc1 100644 --- a/packages/Makefile +++ b/packages/Makefile @@ -1,5 +1,5 @@ export NAME ?= pganalyze-collector -export VERSION ?= 0.60.0 +export VERSION ?= 0.61.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 c6a799957..673865066 100644 --- a/util/version.go +++ b/util/version.go @@ -1,4 +1,4 @@ package util -const CollectorVersion = "0.60.0" +const CollectorVersion = "0.61.0" const CollectorNameAndVersion = "pganalyze-collector " + CollectorVersion