diff --git a/HISTORY.rst b/HISTORY.rst index ab2ed45..145897f 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -16,6 +16,23 @@ Unreleased **Build** +0.6.0 (2016-11-21) +++++++++++++++++++ + +**Improvements** + +* Rework of the database connections: + + * The advisory lock is opened in a cursor in a thread, this cursor + periodically executes a dummy 'SELECT 1' to be sure that the connection + stay alive (not killed with a timeout) when a long-running subprocess is + run. + * The operations in database are executed in short-lived cursors. This + prevents an issue we had when the open cursor was locking + 'ir_module_module', preventing odoo to install/update properly. + +* Try to disable colors in output if the term does not support colors + 0.5.1 (2016-10-26) ++++++++++++++++++ diff --git a/marabunta/core.py b/marabunta/core.py index 3533130..ba2891f 100644 --- a/marabunta/core.py +++ b/marabunta/core.py @@ -25,7 +25,7 @@ from .parser import YamlParser from .runner import Runner -__version__ = "0.5.1" +__version__ = "0.6.0" # The number below has been generated as below: # pg_lock accepts an int8 so we build an hash composed with