Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 0.61.0 #623

Merged
merged 2 commits into from
Oct 23, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 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
Loading