Skip to content

Commit

Permalink
Release 0.53.0 (#499)
Browse files Browse the repository at this point in the history
* Release 0.53.0

* Update CHANGELOG.md

Co-authored-by: Lukas Fittl <[email protected]>

---------

Co-authored-by: Lukas Fittl <[email protected]>
  • Loading branch information
keiko713 and lfittl authored Feb 3, 2024
1 parent 209e9ae commit 827ce6b
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 4 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.53.0 2024-02-02

* Track extended statistics created with `CREATE STATISTICS`
- This is utilized by pganalyze Index Advisor to better detect functional dependencies, and improve multi-column index recommendations
- To allow the collector to access external statistics data you need to create the new "get_relation_stats_ext" helper function (see https://github.com/pganalyze/collector?tab=readme-ov-file#setting-up-a-restricted-monitoring-user)
* Docker image: Don't reload when calling "test" command


## 0.52.4 2023-12-21

* Log Insights: Add support for receiving syslog over TLS
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.52.4
appVersion: "v0.52.4"
version: 0.53.0
appVersion: "v0.53.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.52.4
export VERSION ?= 0.53.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.52.4"
const CollectorVersion = "0.53.0"
const CollectorNameAndVersion = "pganalyze-collector " + CollectorVersion

0 comments on commit 827ce6b

Please sign in to comment.