Skip to content

Commit

Permalink
Release 0.61.0 (#623)
Browse files Browse the repository at this point in the history
  • Loading branch information
lfittl authored Oct 23, 2024
1 parent d487aca commit 636bc09
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 4 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# Changelog

## 0.61.0 2024-10-23

* Store query texts in temporary file before fingerprinting them
- This fixes an increase in reported runtime of collector queries,
due to a slow loading of the result set introduced in release 0.60.0
* Log Insights: Use more specific log parsing regexp
- This avoids incorrectly sending application/database/role identifiers longer
than 63 characters (Postgres' built-in limit) when there are parsing issues
* Show test error when pg_stat_statements version is below 1.9 with Postgres 14+
- Old pg_stat_statements extension schemas don't correctly include the
"toplevel" attribute, and can cause bogus query statistics when there
is a mismatch between the extension schema and the shared library code
* Track cluster identifier (cluster ID) as part of system information
* Keep fetching column stats with outdated helper function on Postgres < 17


## 0.60.0 2024-10-15

WARNING: For Enterprise Server releases older than 2024.10 using [a separate collector installation](https://pganalyze.com/docs/enterprise/setup/separate-collector-install), this release is partially incompatible. Log Insights will not receive any data if using this collector version. Enterprise Server installations using an integrated collector are not affected, nor are Scale and Production plans.
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.60.0
appVersion: "v0.60.0"
version: 0.61.0
appVersion: "v0.61.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.60.0
export VERSION ?= 0.61.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.60.0"
const CollectorVersion = "0.61.0"
const CollectorNameAndVersion = "pganalyze-collector " + CollectorVersion

0 comments on commit 636bc09

Please sign in to comment.