Skip to content

Commit

Permalink
Release 0.42.1
Browse files Browse the repository at this point in the history
  • Loading branch information
lfittl committed Feb 2, 2022
1 parent f3dce71 commit c372909
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 3 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# Changelog

## 0.42.1 2022-02-01

* Log Insights
- Handle non-UTC/non-local log_timezone values correctly
- Use consistent 10s interval for streamed logs (instead of shorter intervals)
- Log streams: Support processing primary and secondary lines out of order
- This resolves issues on GCP when log lines are received out of order
- C22 Auth failed event: Detect additional DETAIL information
- Add regexp match for "permission denied for table" event
* Normalization: Attempt auto-fixing truncated queries
* Heroku: Do not count free memory in total memory
* Config file handling: Handle boolean values more consistently
- Treat case-insensitive false, off, no, 'f', and 'n' as false in addition
to zero


## 0.42.0 2021-12-20

* Provide both x86/amd64 and ARM64 packages and Docker image
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.42.0
export GIT_VERSION=v0.42.0
export VERSION=0.42.1
export GIT_VERSION=v0.42.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.42.0"
const CollectorVersion = "0.42.1"
const CollectorNameAndVersion = "pganalyze-collector " + CollectorVersion

0 comments on commit c372909

Please sign in to comment.