Skip to content

Commit

Permalink
Release 0.30.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lfittl committed Jun 12, 2020
1 parent d20da47 commit 63e8e69
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 3 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Changelog

## 0.30.0 2020-06-12

* Track local replication lag in bytes
* RDS: Handle end of log files correctly
* High-frequency query collection: Avoid race condition, run in parallel
* This also resolves a memory leak in the collector that was causing
increased memory usage over time for systems that have a lot of
pg_stat_statements query texts (causing the full snapshot to take
more than a minute, which triggered the race condition)


## 0.29.0 2020-06-02

* Package builds: Use Golang 1.14.3 patch release
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.29.0
export GIT_VERSION=v0.29.0
export VERSION=0.30.0
export GIT_VERSION=v0.30.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.29.0"
const CollectorVersion = "0.30.0"
const CollectorNameAndVersion = "pganalyze-collector " + CollectorVersion

0 comments on commit 63e8e69

Please sign in to comment.