Skip to content

Commit

Permalink
Release 0.33.1
Browse files Browse the repository at this point in the history
  • Loading branch information
lfittl committed Sep 11, 2020
1 parent 6ffee16 commit 0f93630
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Changelog

## 0.33.1 2020-09-11

* Ignore internal admin databases for GCP and Azure
- This avoids collecting data from these internal databases, which produces
unnecessary errors when using the all databases setting.
* Add log_line_prefix check to GCP self-test
* Schema stats handling: Avoid crash due to nil pointer dereference
* Add support for "%m [%p]: [%l-1] db=%d,user=%u " log_line_prefix


## 0.33.0 2020-09-03

* Add helper for log-based EXPLAIN access and use if available
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.33.0
export GIT_VERSION=v0.33.0
export VERSION=0.33.1
export GIT_VERSION=v0.33.1
#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.33.0"
const CollectorVersion = "0.33.1"
const CollectorNameAndVersion = "pganalyze-collector " + CollectorVersion

0 comments on commit 0f93630

Please sign in to comment.