diff --git a/CHANGELOG.md b/CHANGELOG.md index a80cc8412..8de90e0e9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,21 @@ # Changelog +## 0.57.1 2024-07-17 + +* Log Insights: + - Fix handling of syntax error events when STATEMENT is missing + - Support multi-line logs with AlloyDB +* Test run: Improve handling of interrupts via CTRL+C (SIGINT) + - Avoid collector hanging, and don't print summary + - Allow HTTP clients to be cancelled to avoid shutdown delays +* Add option to avoid collecting distributed index stats for Citus + - This allows setting the `DISABLE_CITUS_SCHEMA_STATS` / `disable_citus_schema_stats` + setting to the "index" value, which will cause the collector to + skip collecting index statistics for Citus distributed tables + (which can time out when there is a significant count of indexes) +* Install script: Avoid deprecated usage of apt-key command + + ## 0.57.0 2024-06-19 * Log Insights: Add support for receiving logs via OpenTelemetry diff --git a/contrib/helm/pganalyze-collector/Chart.yaml b/contrib/helm/pganalyze-collector/Chart.yaml index d9430afc1..f64cecba4 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.57.0 -appVersion: "v0.57.0" +version: 0.57.1 +appVersion: "v0.57.1" type: application description: pganalyze statistics collector home: https://pganalyze.com/ diff --git a/packages/Makefile b/packages/Makefile index 379aea26b..24d00aaeb 100644 --- a/packages/Makefile +++ b/packages/Makefile @@ -1,5 +1,5 @@ export NAME ?= pganalyze-collector -export VERSION ?= 0.57.0 +export VERSION ?= 0.57.1 export GIT_VERSION ?= v$(VERSION) #export GIT_VERSION=HEAD #export GIT_VERSION=618e85ce5ed5365bc7d9d9da866fdeb73bac5a55 diff --git a/util/version.go b/util/version.go index 298f4c077..07fbfe51a 100644 --- a/util/version.go +++ b/util/version.go @@ -1,4 +1,4 @@ package util -const CollectorVersion = "0.57.0" +const CollectorVersion = "0.57.1" const CollectorNameAndVersion = "pganalyze-collector " + CollectorVersion