Skip to content

Commit

Permalink
Release 0.64.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lfittl committed Jan 7, 2025
1 parent 7499212 commit 9c7e538
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 4 deletions.
29 changes: 29 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,34 @@
# Changelog

## 0.64.0 2025-01-07

* Support for Query Tuning Workbooks
- The collector now optionally executes on-demand query runs for the
Query Tuning feature via the new pganalyze.explain_analyze() helper
that prevents reading table data directly and avoids granting the
collector user unnecessary permissions.
- You can opt into this feature by creating the helper function,
otherwise this new feature is turned off by default
- For easily creating the helper in all databases on a server the
new "--generate-explain-analyze-helper-sql" command is added
- The enable_query_runner setting introduced in 0.63.0 is removed,
since the helper function is now mandatory to use this feature
* Update pg_query to v6 / Postgres 17 parser
* Install script: Add AlmaLinux and Rocky Linux support
* PII filtering bug fixes
- Correctly handle secondary lines that were not analyzed
- Detect bind parameters in CONTEXT as statement_parameter
* Other bug fixes
- Azure: Improve system metrics error handling, and correctly return most recent value
- Add missing MAX_BUFFER_CACHE_MONITORING_GB configuration variable
- Track parent partition size when child partitions are untracked
- Store zero-value table stats when diff doesn't exist
- DB connections: Don't limit to 30 seconds lifetime to avoid timeout bugs
* Routine security updates
- Bump golang.org/x/crypto from 0.25.0 to 0.31.0
- Update golang.org/x/net to v0.33.0


## 0.63.0 2024-11-21

* Fix WebSocket error handling
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.63.0
appVersion: "v0.63.0"
version: 0.64.0
appVersion: "v0.64.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.63.0
export VERSION ?= 0.64.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.63.0"
const CollectorVersion = "0.64.0"
const CollectorNameAndVersion = "pganalyze-collector " + CollectorVersion

0 comments on commit 9c7e538

Please sign in to comment.