Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 0.58.0 #590

Merged
merged 9 commits into from
Aug 30, 2024
Merged
Show file tree
Hide file tree
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
# Changelog

## 0.58.0 2024-08-27
msakrejda marked this conversation as resolved.
Show resolved Hide resolved

* 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 with Postgres
configurations like `log_min_duration_statement = 0` that log every statement.
msakrejda marked this conversation as resolved.
Show resolved Hide resolved
* RDS: Update AWS SDK to v1.55.3
- This allows using EKS pod identity; documentation coming soon
* Azure:
- Improve log handling for Flexible Server and Cosmos DB
msakrejda marked this conversation as resolved.
Show resolved Hide resolved
* Crunchy Bridge:
- Fix error handling for error responses from Crunchy Bridge API


## 0.57.1 2024-07-17

* Log Insights:
Expand Down
4 changes: 2 additions & 2 deletions contrib/helm/pganalyze-collector/Chart.yaml
Original file line number Diff line number Diff line change
@@ -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/
Expand Down
2 changes: 1 addition & 1 deletion packages/Makefile
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion util/version.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package util

const CollectorVersion = "0.57.1"
const CollectorVersion = "0.58.0"
const CollectorNameAndVersion = "pganalyze-collector " + CollectorVersion
Loading