Skip to content

Commit

Permalink
Release 0.49.2 (#404)
Browse files Browse the repository at this point in the history
  • Loading branch information
keiko713 committed Apr 4, 2023
1 parent ce5e3b8 commit 10ba2e8
Show file tree
Hide file tree
Showing 4 changed files with 22 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.49.2 2023-03-30

* Bugfix: Ensure all relation information will be sent out even with a lock
- This fixes a bug where we were not sending out relation information of
relations encountered locks. Processing a snapshot missing such information
was failing
* Allow pg_stat_statements_reset() to fail with a soft error
- This was a hard error previously, which failed the snapshot and the snapshot
state did not get persisted, indirectly led to a memory leak
* Add integrity checks before uploading snapshots
- Validate some structural assumptions that cannot be enforced by protobuf
before sending a snapshot
* Bugfix: Increase timeout to prevent data loss when monitoring many servers
- This mitigates an issue introduced in 0.49.0

## 0.49.1 2023-03-10

* Relation queries: Correctly handle later queries encountering a lock
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.49.1
appVersion: "v0.49.1"
version: 0.49.2
appVersion: "v0.49.2"
type: application
description: pganalyze statistics collector
home: https://pganalyze.com/
Expand Down
5 changes: 4 additions & 1 deletion packages/Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
export NAME ?= pganalyze-collector
export VERSION ?= 0.49.1
export VERSION ?= 0.49.2
export GIT_VERSION ?= v$(VERSION)
#export GIT_VERSION=HEAD
#export GIT_VERSION=618e85ce5ed5365bc7d9d9da866fdeb73bac5a55
#export VERSION=$(shell git show -s --format=%ct.%h HEAD)

export RPM_PACKAGE_X86_64=$(NAME)-$(VERSION)-1.x86_64.rpm
export RPM_PACKAGE_ARM64=$(NAME)-$(VERSION)-1.aarch64.rpm
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.49.1"
const CollectorVersion = "0.49.2"
const CollectorNameAndVersion = "pganalyze-collector " + CollectorVersion

0 comments on commit 10ba2e8

Please sign in to comment.