Skip to content

Commit

Permalink
Release 0.52.4
Browse files Browse the repository at this point in the history
  • Loading branch information
keiko713 committed Dec 20, 2023
1 parent 036baf8 commit 4ab1166
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 4 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# Changelog

## 0.52.4 2023-12-21

* Log Insights: Add support for receiving syslog over TLS
- You can configure a TLS certificate for the collector syslog server using
the following config settings:
- `db_log_syslog_server_cert_file` / `LOG_SYSLOG_SERVER_CERT_FILE` or
`db_log_syslog_server_cert_contents` / `LOG_SYSLOG_SERVER_CERT_CONTENTS`
- `db_log_syslog_server_key_file` / `LOG_SYSLOG_SERVER_KEY_FILE` or
`db_log_syslog_server_key_contents` / `LOG_SYSLOG_SERVER_KEY_CONTENTS`
- The Certificate Authority both on the server side and the client side also
can be specified via config settings
* Azure: Fix managed identity credential creation in Log Insights
- This fixes a failure of obtaining logs from Azure when the managed identity
credential was used. This was with the "failed to set up workload identity
Azure credentials" error message
* Citus: Avoid error collecting schema stats on tables with no indexes


## 0.52.3 2023-11-30

* Collector log output: Reduce frequency of some snapshot log events
Expand Down
4 changes: 2 additions & 2 deletions contrib/helm/pganalyze-collector/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v2
name: pganalyze-collector
version: 0.52.3
appVersion: "v0.52.3"
version: 0.52.4
appVersion: "v0.52.4"
type: application
description: pganalyze statistics collector
home: https://pganalyze.com/
Expand Down
2 changes: 1 addition & 1 deletion packages/Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export NAME ?= pganalyze-collector
export VERSION ?= 0.52.3
export VERSION ?= 0.52.4
export GIT_VERSION ?= v$(VERSION)
#export GIT_VERSION=HEAD
#export GIT_VERSION=618e85ce5ed5365bc7d9d9da866fdeb73bac5a55
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.52.3"
const CollectorVersion = "0.52.4"
const CollectorNameAndVersion = "pganalyze-collector " + CollectorVersion

0 comments on commit 4ab1166

Please sign in to comment.