Skip to content

Commit

Permalink
Release 0.42.0 (#235)
Browse files Browse the repository at this point in the history
  • Loading branch information
lfittl authored Dec 21, 2021
1 parent 55f8273 commit 000229a
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Changelog

## 0.42.0 2021-12-20

* Provide both x86/amd64 and ARM64 packages and Docker image
- This means you can now run the collector more easily on modern
ARM-based platforms such as Graviton-based AWS instances
* Bugfix: Write state file before reloading collector
- This avoids lost statistics when the collector is reloaded mid-cycle
between the full snapshot runs
* Reduce Docker image build time and use slim image for 18x size reduction
- With thanks to [Chris](https://github.com/dullyouth) at Kandji for this contribution


## 0.41.3 2021-12-15

* Log Insights: Add "invalid input syntax for type json" log event
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.41.3
export GIT_VERSION=v0.41.3
export VERSION=0.42.0
export GIT_VERSION=v0.42.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.41.3"
const CollectorVersion = "0.42.0"
const CollectorNameAndVersion = "pganalyze-collector " + CollectorVersion

0 comments on commit 000229a

Please sign in to comment.