diff --git a/CHANGELOG.md b/CHANGELOG.md index 8de90e0e9..d5a1b524b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,27 @@ # Changelog +## 0.58.0 2024-08-30 + +* Log Insights: Revamp log parsing mechanism + - The new mechanism is more performant and allows for arbitrary + log_line_prefix settings. The new parsing mechanism is the default, but you + can set `db_log_line_prefix = legacy` in the config file or + `LOG_LINE_PREFIX=legacy` in the environment to revert to the old mechanism. +* Log Insights: Redact parameters from utility statements by default + - Statements like `CREATE USER u WITH PASSWORD 'passw0rd'` can leak sensitive + data into Log Insights, so they are now redacted by default. Note that these + statements are usually very fast, and are normally only logged in edge cases, + like a lock wait problem relating to the statement. +* RDS: Update AWS SDK to v1.55.3 + - This allows using EKS pod identity; documentation coming soon +* Azure: + - Ensure correct log handling for all Flexible Server events (don't accidentally treat them as Single Server events) + - Support log parsing for Azure Database for Cosmos DB Postgres +* Crunchy Bridge: + - Fix error handling for error responses from Crunchy Bridge API +* Fix hang on exit with the `--discover-log-location` flag + + ## 0.57.1 2024-07-17 * Log Insights: diff --git a/contrib/helm/pganalyze-collector/Chart.yaml b/contrib/helm/pganalyze-collector/Chart.yaml index f64cecba4..929f32e44 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.1 -appVersion: "v0.57.1" +version: 0.58.0 +appVersion: "v0.58.0" type: application description: pganalyze statistics collector home: https://pganalyze.com/ diff --git a/packages/Makefile b/packages/Makefile index 24d00aaeb..e30d73731 100644 --- a/packages/Makefile +++ b/packages/Makefile @@ -1,5 +1,5 @@ export NAME ?= pganalyze-collector -export VERSION ?= 0.57.1 +export VERSION ?= 0.58.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 07fbfe51a..b26e998bf 100644 --- a/util/version.go +++ b/util/version.go @@ -1,4 +1,4 @@ package util -const CollectorVersion = "0.57.1" +const CollectorVersion = "0.58.0" const CollectorNameAndVersion = "pganalyze-collector " + CollectorVersion