From ae1a8f8942e02d72c0530453095b4968c4675a24 Mon Sep 17 00:00:00 2001 From: Alexander Kukushkin Date: Thu, 12 Oct 2017 09:53:42 +0200 Subject: [PATCH] Update release notes --- docs/releases.rst | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/docs/releases.rst b/docs/releases.rst index 583e86d0..15490f6a 100644 --- a/docs/releases.rst +++ b/docs/releases.rst @@ -3,6 +3,29 @@ Release notes ============= +Version 1.3.5 +------------- + +**Bugfix** + +- Set role to 'uninitialized' if data directory was removed (Alexander Kukushkin) + + If the node was running as a master it was preventing from failover. + +**Consul improvements** + +- Make it possible to specify health checks when creating session (Alexander) + + If not specified, Consul will use "serfHealth". From one side it allows fast detection of isolated master, but from another side it makes it impossible for Patroni to tolerate short network lags. + +**Bugfix** + +- Fix watchdog on Python 3 (Ants Aasma) + + A misunderstanding of the ioctl() call interface. If mutable=False then fcntl.ioctl() actually returns the arg buffer back. + This accidentally worked on Python2 because int and str comparison did not return an error. + Error reporting is actually done by raising IOError on Python2 and OSError on Python3. + Version 1.3.4 -------------