Skip to content

Commit

Permalink
Release 0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
guewen committed Nov 21, 2016
1 parent 052c34a commit b4f7f20
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
17 changes: 17 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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)
++++++++++++++++++
Expand Down
2 changes: 1 addition & 1 deletion marabunta/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit b4f7f20

Please sign in to comment.