Skip to content

Commit

Permalink
Release 0.41.3
Browse files Browse the repository at this point in the history
  • Loading branch information
msakrejda committed Dec 15, 2021
1 parent 949f002 commit 2b31058
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 3 deletions.
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,27 @@
# Changelog

## 0.41.3 2021-12-15

* Log Insights: Add "invalid input syntax for type json" log event
- This is a variant of the existing invalid input syntax log event,
with a few additional details.
* Log Insights: Improve handling of "malformed array literal" log event
- Add support for a double quote inside the array content
- Mark the content as a table data log secret
- Add the known DETAIL line "Unexpected array element"
* Fix incorrect index recorded for unknown parent or foreign key tables
- Previously we would sometimes use 0 in these situations, which could
cause errors in snapshot processing
* Heroku: drop Log Insights instructions after log test
- This was intended to ease onboarding, but it contradicts our in-app
instructions to wait until real snapshot data comes in to proceed
with Log Insights setup
* AWS: Cache RDS server IDs and errors to reduce API requests
- This can help avoid hitting rate limits when monitoring a large number
of servers
* Fix issue with domains with no constraints


## 0.41.2 2021-11-18

* Add two additional log_line_prefix settings
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.2
export GIT_VERSION=v0.41.2
export VERSION=0.41.3
export GIT_VERSION=v0.41.3
#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.2"
const CollectorVersion = "0.41.3"
const CollectorNameAndVersion = "pganalyze-collector " + CollectorVersion

0 comments on commit 2b31058

Please sign in to comment.