Skip to content

Commit

Permalink
Release 0.60.0 (#611)
Browse files Browse the repository at this point in the history
  • Loading branch information
seanlinsley authored Oct 16, 2024
1 parent b138a52 commit 177debc
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 4 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Changelog

## 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.

* Update `get_column_stats` for Postgres 17
- The function signature has changed, so must be dropped and recreated
https://pganalyze.com/docs/install/troubleshooting/column_stats_helper
* Handle ambiguous log lines more reliably
- This fixes parsing of some log lines for Google CloudSQL
* Change log upload to include log text directly in snapshots, instead of uploading it separately to S3
- This simplifies the Enterprise Server setup by making object storage optional
* Reduce memory usage when processing `pg_stat_statements`
* Remove temp file usage from collector


## 0.59.0 2024-10-01

* Use new WebSocket-based API for snapshot submissions
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.59.0
appVersion: "v0.59.0"
version: 0.60.0
appVersion: "v0.60.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.59.0
export VERSION ?= 0.60.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.59.0"
const CollectorVersion = "0.60.0"
const CollectorNameAndVersion = "pganalyze-collector " + CollectorVersion

0 comments on commit 177debc

Please sign in to comment.