Skip to content

Commit

Permalink
Release 0.51.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lfittl committed Aug 12, 2023
1 parent 767c896 commit d8f578c
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 4 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# Changelog

## 0.51.0 2023-08-12

* Autovacuum:
- Add support for updated log format in Postgres 15+
- Remember unqualified name for "skipping vacuum" log events
- Add more cases for "canceling autovacuum task" log context line
- Track n_ins_since_vacuum value to determine when insert-based autovacuum was triggered
* AWS Aurora: Correctly detect Aurora reader instances as replicas
* Self-managed servers: Use log_timezone setting to determine log timezone if possible
* Azure: Fix partition selection issue in Azure log processing
* Helm chart: Improve default security settings
* Update Go version to 1.21
* Packages:
- Switch to SHA256 signatures to fix RHEL9 install errors
- Drop Ubuntu 16.04, 18.04 and Debian 10 (Buster) support, as they are no longer supported


## 0.50.1 2023-06-29

* Bugfix: Return correct exit code with the data collection test run
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.50.1
appVersion: "v0.50.1"
version: 0.51.0
appVersion: "v0.51.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.50.1
export VERSION ?= 0.51.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.50.1"
const CollectorVersion = "0.51.0"
const CollectorNameAndVersion = "pganalyze-collector " + CollectorVersion

0 comments on commit d8f578c

Please sign in to comment.