Skip to content

Commit

Permalink
Release 0.62.0 (#631)
Browse files Browse the repository at this point in the history
  • Loading branch information
msakrejda authored Nov 13, 2024
1 parent 0840691 commit 120b7e4
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 4 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
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.61.0
appVersion: "v0.61.0"
version: 0.62.0
appVersion: "v0.62.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.61.0
export VERSION ?= 0.62.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.61.0"
const CollectorVersion = "0.62.0"
const CollectorNameAndVersion = "pganalyze-collector " + CollectorVersion

0 comments on commit 120b7e4

Please sign in to comment.