Skip to content

Commit

Permalink
Release 0.29.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lfittl committed Jun 2, 2020
1 parent 3601f62 commit 9e3a8b7
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 3 deletions.
25 changes: 25 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,30 @@
# Changelog

## 0.29.0 2020-06-02

* Package builds: Use Golang 1.14.3 patch release
* This fixes https://github.com/golang/go/issues/37436 which was causing
"mlock of signal stack failed: 12" on Ubuntu systems
* Switch to simpler tail library to fix edge case bugs for self-managed systems
* The hpcloud library has been unmaintained for a while, and whilst
the new choice doesn't have much activity, in tests it has shown
to work better, as well as having significantly less lines of code
* This also should make "--test" work reliably for self-managed systems
(before this returned "Timeout" most of the time)
* Index statistics: Don't run relation_size on exclusively locked indices
* Previously the collector was effectively hanging when it encountered an
index that has an ExclusiveLock held (e.g. due to a REINDEX)
* Add another custom log line prefix: "%m %r %u %a [%c] [%p] "
* RDS fixes
* Fix handling of auto-detection of AWS regions outside of us-east-1
* Remember log marker from previous runs, to avoid duplicate log lines
* Add support for Postgres 13
* This adds support for running against Postgres 13, which otherwise breaks
due to backwards-incompatible changes in pg_stat_statements
* Note that there are many other new statistics views and metrics that
will be added separately


## 0.28.0 2020-05-19

* Add "db_sslkey" and "db_sslcert" options to use SSL client certificates
Expand Down
4 changes: 2 additions & 2 deletions packages/Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
export NAME=pganalyze-collector
export VERSION=0.28.0
export GIT_VERSION=v0.28.0
export VERSION=0.29.0
export GIT_VERSION=v0.29.0
#export GIT_VERSION=HEAD
#export GIT_VERSION=618e85ce5ed5365bc7d9d9da866fdeb73bac5a55
#export VERSION=$(shell git show -s --format=%ct.%h HEAD)
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.28.0"
const CollectorVersion = "0.29.0"
const CollectorNameAndVersion = "pganalyze-collector " + CollectorVersion

0 comments on commit 9e3a8b7

Please sign in to comment.