Skip to content

Commit

Permalink
Release 0.56.0 (#536)
Browse files Browse the repository at this point in the history
  • Loading branch information
keiko713 authored Apr 19, 2024
1 parent e523b7d commit f104806
Show file tree
Hide file tree
Showing 4 changed files with 37 additions and 4 deletions.
33 changes: 33 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,38 @@
# Changelog

## 0.56.0 2024-04-19

* Improve the collector test output
- In addition to the existing test output, the new summary is added to provide
a consolidated result showing the state of the collector setup
- Add more verbose output for the `--test-explain` flag
* Amazon RDS/Aurora: Use 5432 as a default DB port
- Previously IAM authentication would fail with "PAM authentication failed"
when the port was not explicitly set in the collector configuration
* Update pg_stat_statements logic
- Support updated fields in Postgres 17
* Autovacuum:
- Add support for updated log format (frozen:) in Postgres 16+
* Publish Helm Chart package
- The Helm Chart repository can be accessed via https://charts.pganalyze.com/
- The collector chart is available at `pganalyze/pganalyze-collector`
- The oldest available package version is 0.55.0
* Docker image: Support taking additional arguments for `test`, `test-explain`, `collector`
- Previously, adding the verbose flag like `test -v` wasn't working. With this
update, the additional arguments are now correctly passed to the process and
`test -v` will run the test with verbose mode
* Docker image: Update the internal collector config file location
- When the Docker container is passed the `CONFIG_CONTENTS` environment variable,
the file used to be written to `/home/pganalyze/.pganalyze_collector.conf`
location, and then read by the collector
- Instead, this file is now written to the `/config/pganalyze-collector.conf`
location - this fixes problems when having a read-only root filesystem
* Add `--generate-stats-helper-sql` helper command
- This command generates a SQL script that can be passed to `psql` to install
stats helpers (e.g. for collecting column stats) on all configured databases
for the specified server


## 0.55.0 2024-03-27

* Add integration with Tembo
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.55.0
appVersion: "v0.55.0"
version: 0.56.0
appVersion: "v0.56.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.55.0
export VERSION ?= 0.56.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.55.0"
const CollectorVersion = "0.56.0"
const CollectorNameAndVersion = "pganalyze-collector " + CollectorVersion

0 comments on commit f104806

Please sign in to comment.