From 120b7e4613fb8820e7c0e634e554bda48162dc2c Mon Sep 17 00:00:00 2001 From: Maciek Sakrejda Date: Wed, 13 Nov 2024 10:47:43 -0800 Subject: [PATCH] Release 0.62.0 (#631) --- CHANGELOG.md | 15 +++++++++++++++ contrib/helm/pganalyze-collector/Chart.yaml | 4 ++-- packages/Makefile | 2 +- util/version.go | 2 +- 4 files changed, 19 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 55a5b3037..2fb5393a9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,20 @@ # Changelog +## 0.62.0 2024-11-13 + +* Fix PII filtering for detail log lines + - Due to a bug in 0.60.0, all detail log lines (lines that add additional + context to the primary log message) were unnecessarily redacted +* Add DB_URL_FILE and DB_PASSWORD_FILE ([@Munksgaard](https://github.com/Munksgaard)) + - This allows passing sensitive DB passwords through files instead of environment + variables. This makes collector work better with [systemd + credentials](https://systemd.io/CREDENTIALS/) and NixOS flakes. +* Collect query plan information on Amazon Aurora + - This collects query plans and statistics in full snapshots using the [aurora_stat_plans](https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora_stat_plans.html) function. +* Update systemd file to use MemoryMax instead of MemoryLimit + - The latter is [deprecated](https://www.freedesktop.org/software/systemd/man/latest/systemd.resource-control.html#MemoryMax=bytes) + + ## 0.61.0 2024-10-23 * Store query texts in temporary file before fingerprinting them diff --git a/contrib/helm/pganalyze-collector/Chart.yaml b/contrib/helm/pganalyze-collector/Chart.yaml index cd1bf9757..3314d9461 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.61.0 -appVersion: "v0.61.0" +version: 0.62.0 +appVersion: "v0.62.0" type: application description: pganalyze statistics collector home: https://pganalyze.com/ diff --git a/packages/Makefile b/packages/Makefile index dae10ecc1..1f6ccafb8 100644 --- a/packages/Makefile +++ b/packages/Makefile @@ -1,5 +1,5 @@ export NAME ?= pganalyze-collector -export VERSION ?= 0.61.0 +export VERSION ?= 0.62.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 673865066..694d4cf32 100644 --- a/util/version.go +++ b/util/version.go @@ -1,4 +1,4 @@ package util -const CollectorVersion = "0.61.0" +const CollectorVersion = "0.62.0" const CollectorNameAndVersion = "pganalyze-collector " + CollectorVersion