From f500dbb0ffb78b78e4abb22f57a2c62d86d38289 Mon Sep 17 00:00:00 2001 From: Alexander Kukushkin Date: Mon, 5 Mar 2018 10:10:17 +0100 Subject: [PATCH] Release 1.4.3 (#635) Bump version and update release notes --- docs/releases.rst | 26 ++++++++++++++++++++++++++ patroni/version.py | 2 +- 2 files changed, 27 insertions(+), 1 deletion(-) diff --git a/docs/releases.rst b/docs/releases.rst index 34443996..cba3d2ed 100644 --- a/docs/releases.rst +++ b/docs/releases.rst @@ -3,6 +3,32 @@ Release notes ============= +Version 1.4.3 +------------- + +**Improvements in logging** + +- Make log level configurable from environment variables (Andy Newton, Keyvan Hedayati) + + `PATRONI_LOGLEVEL` - sets the general logging level + `PATRONI_REQUESTS_LOGLEVEL` - sets the logging level for all HTTP requests e.g. Kubernetes API calls + See `the docs for Python logging ` to get the names of possible log levels + +**Stability improvements and bug fixes** + +- Don't rediscover etcd cluster topology when watch timed out (Alexander Kukushkin) + + If we have only one host in etcd configuration and exactly this host is not accessible, Patroni was starting discovery of cluster topology and never succeeding. Instead it should just switch to the next available node. + +- Write content of bootstrap.pg_hba into a pg_hba.conf after custom bootstrap (Alexander) + + Now it behaves similarly to the usual bootstrap with `initdb` + +- Single user mode was waiting for user input and never finish (Alexander) + + Regression was introduced in https://github.com/zalando/patroni/pull/576 + + Version 1.4.2 ------------- diff --git a/patroni/version.py b/patroni/version.py index 98d186be..4e7c72a5 100644 --- a/patroni/version.py +++ b/patroni/version.py @@ -1 +1 @@ -__version__ = '1.4.2' +__version__ = '1.4.3'