Hello community,

here is the log from the commit of package trytond for openSUSE:Factory checked 
in at 2018-12-12 17:31:07
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/trytond (Old)
 and      /work/SRC/openSUSE:Factory/.trytond.new.28833 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "trytond"

Wed Dec 12 17:31:07 2018 rev:26 rq:657440 version:4.2.17

Changes:
--------
--- /work/SRC/openSUSE:Factory/trytond/trytond.changes  2018-12-08 
11:21:21.098783045 +0100
+++ /work/SRC/openSUSE:Factory/.trytond.new.28833/trytond.changes       
2018-12-12 17:31:09.630673824 +0100
@@ -1,0 +2,5 @@
+Mon Dec 10 19:09:03 UTC 2018 - Axel Braun <axel.br...@gmx.de>
+
+- Version 4.2.17 - Bugfix Release
+
+-------------------------------------------------------------------

Old:
----
  trytond-4.2.16.tar.gz

New:
----
  trytond-4.2.17.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ trytond.spec ++++++
--- /var/tmp/diff_new_pack.DsWOeN/_old  2018-12-12 17:31:10.650672537 +0100
+++ /var/tmp/diff_new_pack.DsWOeN/_new  2018-12-12 17:31:10.654672532 +0100
@@ -20,7 +20,7 @@
 %define majorver 4.2
 %define base_name tryton
 Name:           trytond
-Version:        %{majorver}.16
+Version:        %{majorver}.17
 Release:        0
 
 Summary:        An Enterprise Resource Planning (ERP) system

++++++ trytond-4.2.16.tar.gz -> trytond-4.2.17.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/trytond-4.2.16/.hgtags new/trytond-4.2.17/.hgtags
--- old/trytond-4.2.16/.hgtags  2018-11-12 23:24:08.000000000 +0100
+++ new/trytond-4.2.17/.hgtags  2018-12-03 00:42:22.000000000 +0100
@@ -31,3 +31,4 @@
 d06744ca57c2255f1c04e1e16e417c7dc2ce29e8 4.2.14
 ab515936aa573baefddebf7f5d2a02591588fc00 4.2.15
 6a80c192098b2091ace6fe8f75ac9e26e7b49698 4.2.16
+fada2c888e6be856873309147c241bb1fb69d3fc 4.2.17
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/trytond-4.2.16/CHANGELOG new/trytond-4.2.17/CHANGELOG
--- old/trytond-4.2.16/CHANGELOG        2018-11-12 23:24:07.000000000 +0100
+++ new/trytond-4.2.17/CHANGELOG        2018-12-03 00:42:21.000000000 +0100
@@ -1,3 +1,6 @@
+Version 4.2.17 - 2018-12-02
+* Bug fixes (see mercurial logs for details)
+
 Version 4.2.16 - 2018-11-12
 * Bug fixes (see mercurial logs for details)
 * Check read access on field in search domain (issue7766)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/trytond-4.2.16/PKG-INFO new/trytond-4.2.17/PKG-INFO
--- old/trytond-4.2.16/PKG-INFO 2018-11-12 23:24:08.000000000 +0100
+++ new/trytond-4.2.17/PKG-INFO 2018-12-03 00:42:22.000000000 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: trytond
-Version: 4.2.16
+Version: 4.2.17
 Summary: Tryton server
 Home-page: http://www.tryton.org/
 Author: Tryton
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/trytond-4.2.16/trytond/__init__.py 
new/trytond-4.2.17/trytond/__init__.py
--- old/trytond-4.2.16/trytond/__init__.py      2018-08-20 23:00:41.000000000 
+0200
+++ new/trytond-4.2.17/trytond/__init__.py      2018-11-12 23:24:40.000000000 
+0100
@@ -5,7 +5,7 @@
 import logging
 from email import charset
 
-__version__ = "4.2.16"
+__version__ = "4.2.17"
 logger = logging.getLogger(__name__)
 
 os.environ['TZ'] = 'UTC'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/trytond-4.2.16/trytond/tests/test_tryton.py 
new/trytond-4.2.17/trytond/tests/test_tryton.py
--- old/trytond-4.2.16/trytond/tests/test_tryton.py     2018-08-20 
23:00:00.000000000 +0200
+++ new/trytond-4.2.17/trytond/tests/test_tryton.py     2018-11-25 
21:59:42.000000000 +0100
@@ -163,10 +163,12 @@
         def wrapper(*args, **kwargs):
             transaction = Transaction()
             with transaction.start(DB_NAME, user, context=context):
-                result = func(*args, **kwargs)
-                transaction.rollback()
-                # Drop the cache as the transaction is rollbacked
-                Cache.drop(DB_NAME)
+                try:
+                    result = func(*args, **kwargs)
+                finally:
+                    transaction.rollback()
+                    # Drop the cache as the transaction is rollbacked
+                    Cache.drop(DB_NAME)
                 return result
         return wrapper
     return decorator
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/trytond-4.2.16/trytond.egg-info/PKG-INFO 
new/trytond-4.2.17/trytond.egg-info/PKG-INFO
--- old/trytond-4.2.16/trytond.egg-info/PKG-INFO        2018-11-12 
23:24:08.000000000 +0100
+++ new/trytond-4.2.17/trytond.egg-info/PKG-INFO        2018-12-03 
00:42:22.000000000 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: trytond
-Version: 4.2.16
+Version: 4.2.17
 Summary: Tryton server
 Home-page: http://www.tryton.org/
 Author: Tryton


Reply via email to