Skip to content

Commit

Permalink
Release v0.54.0
Browse files Browse the repository at this point in the history
  • Loading branch information
keiko713 committed Feb 23, 2024
1 parent dd0a679 commit 214326b
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 4 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## 0.54.0 2024-02-23

* Update pg_query_go to v5 / Postgres 16 parser
* Bugfix: Skip collecting extended statistics for Postgres 11 and below
- Since the system view `pg_stats_ext` was introduced starting with Postgres
12, this was causing the issue of collecting any schema data on Postgres 11
and below


## 0.53.0 2024-02-02

* Track extended statistics created with `CREATE STATISTICS`
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.53.0
appVersion: "v0.53.0"
version: 0.53.1
appVersion: "v0.54.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.53.0
export VERSION ?= 0.54.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.53.0"
const CollectorVersion = "0.54.0"
const CollectorNameAndVersion = "pganalyze-collector " + CollectorVersion

0 comments on commit 214326b

Please sign in to comment.