Skip to content

Commit

Permalink
Release 0.50.0 (#422)
Browse files Browse the repository at this point in the history
  • Loading branch information
lfittl authored Jun 5, 2023
1 parent 4f07e7d commit 6d5c65d
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 4 deletions.
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,29 @@
# Changelog

## 0.50.0 2023-06-05

* Track TOAST table name, reltuples and relpages
* Reload collector config after successful test run
- If you have previously run "--reload --test" you can now simply run "--reload"
- To restore the old behaviour, pass the "--no-reload" flag together with "--test"
* RPM packages: Ensure collector gets started after reboot
- Due to a packaging oversight, the pganalyze-collector service was not correctly
enabled in systemd, which caused the collector to not start after a system reboot
- If you are upgrading, the package upgrade script will automatically fix this for you
* Collector install script: Add Amazon Linux 2023, refresh other versions
* Azure Database for PostgreSQL / Azure Cosmos DB for PostgreSQL
- Add support for Azure Kubernetes Service (AKS) Workload Identity
- To utilize this integration, follow the regular Azure instructions for workload
identity - the relevant environment variables will be automatically recognized
* Amazon RDS:
- auto_explain and slow query log: Look for "[Your log message was truncated]" marker
in the middle of multi-line log messages, not just at the end
- This can occur due to limitations of the AWS API - this way the log line is
correctly marked as truncated, instead of as a parsing error
* Heroku Postgres:
- Rewrite syslog parsing code and inline it, to avoid "lpx" library license ambiguity


## 0.49.2 2023-03-30

* Bugfix: Ensure all relation information will be sent out even with a lock
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.49.2
appVersion: "v0.49.2"
version: 0.50.0
appVersion: "v0.50.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.49.2
export VERSION ?= 0.50.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.49.2"
const CollectorVersion = "0.50.0"
const CollectorNameAndVersion = "pganalyze-collector " + CollectorVersion

0 comments on commit 6d5c65d

Please sign in to comment.