Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package trytond for openSUSE:Factory checked 
in at 2022-11-06 12:42:56
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/trytond (Old)
 and      /work/SRC/openSUSE:Factory/.trytond.new.2275 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "trytond"

Sun Nov  6 12:42:56 2022 rev:74 rq:1033825 version:6.0.23

Changes:
--------
--- /work/SRC/openSUSE:Factory/trytond/trytond.changes  2022-10-25 
11:20:46.818239430 +0200
+++ /work/SRC/openSUSE:Factory/.trytond.new.2275/trytond.changes        
2022-11-06 12:43:24.965816683 +0100
@@ -1,0 +2,5 @@
+Sun Nov  6 09:02:11 UTC 2022 - Axel Braun <axel.br...@gmx.de>
+
+- Version 6.0.23 - Bugfix Release
+
+-------------------------------------------------------------------

Old:
----
  trytond-6.0.22.tar.gz
  trytond-6.0.22.tar.gz.asc

New:
----
  trytond-6.0.23.tar.gz
  trytond-6.0.23.tar.gz.asc

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

Other differences:
------------------
++++++ trytond.spec ++++++
--- /var/tmp/diff_new_pack.9ASSKr/_old  2022-11-06 12:43:25.585820386 +0100
+++ /var/tmp/diff_new_pack.9ASSKr/_new  2022-11-06 12:43:25.589820410 +0100
@@ -20,7 +20,7 @@
 %define majorver 6.0
 %define base_name tryton
 Name:           trytond
-Version:        %{majorver}.22
+Version:        %{majorver}.23
 Release:        0
 Summary:        An Enterprise Resource Planning (ERP) system
 License:        GPL-3.0-or-later

++++++ trytond-6.0.22.tar.gz -> trytond-6.0.23.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/trytond-6.0.22/.hgtags new/trytond-6.0.23/.hgtags
--- old/trytond-6.0.22/.hgtags  2022-10-17 23:36:12.000000000 +0200
+++ new/trytond-6.0.23/.hgtags  2022-11-05 17:08:55.000000000 +0100
@@ -46,3 +46,4 @@
 9d5f5e04e2b0105bf4ca644bf98811d267054514 6.0.20
 221212011e95b8004c93ec76d21f5ffa12e866ee 6.0.21
 3ff41e43408ddccd4ce91170b6536a2f5cd0112b 6.0.22
+7d81a0faef794489d63fb164d0fb2ba2196c878b 6.0.23
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/trytond-6.0.22/CHANGELOG new/trytond-6.0.23/CHANGELOG
--- old/trytond-6.0.22/CHANGELOG        2022-10-17 23:36:11.000000000 +0200
+++ new/trytond-6.0.23/CHANGELOG        2022-11-05 17:08:54.000000000 +0100
@@ -1,3 +1,7 @@
+Version 6.0.23 - 2022-11-05
+---------------------------
+* Bug fixes (see mercurial logs for details)
+
 Version 6.0.22 - 2022-10-17
 * Bug fixes (see mercurial logs for details)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/trytond-6.0.22/PKG-INFO new/trytond-6.0.23/PKG-INFO
--- old/trytond-6.0.22/PKG-INFO 2022-10-17 23:36:14.451380700 +0200
+++ new/trytond-6.0.23/PKG-INFO 2022-11-05 17:08:57.079117800 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: trytond
-Version: 6.0.22
+Version: 6.0.23
 Summary: Tryton server
 Home-page: http://www.tryton.org/
 Download-URL: http://downloads.tryton.org/6.0/
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/trytond-6.0.22/trytond/__init__.py 
new/trytond-6.0.23/trytond/__init__.py
--- old/trytond-6.0.22/trytond/__init__.py      2022-08-17 23:30:42.000000000 
+0200
+++ new/trytond-6.0.23/trytond/__init__.py      2022-10-17 23:36:31.000000000 
+0200
@@ -7,7 +7,7 @@
 
 from lxml import etree, objectify
 
-__version__ = "6.0.22"
+__version__ = "6.0.23"
 
 os.environ['TZ'] = 'UTC'
 if hasattr(time, 'tzset'):
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/trytond-6.0.22/trytond/ir/configuration.py 
new/trytond-6.0.23/trytond/ir/configuration.py
--- old/trytond-6.0.22/trytond/ir/configuration.py      2022-04-14 
23:25:02.000000000 +0200
+++ new/trytond-6.0.23/trytond/ir/configuration.py      2022-10-30 
10:31:27.000000000 +0100
@@ -21,8 +21,7 @@
         language = cls._get_language_cache.get(None)
         if language is not None:
             return language
-        config = cls(1)
-        language = config.language
+        language = cls(1).language
         if not language:
             language = config.get('database', 'language')
         cls._get_language_cache.set(None, language)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/trytond-6.0.22/trytond/model/multivalue.py 
new/trytond-6.0.23/trytond/model/multivalue.py
--- old/trytond-6.0.22/trytond/model/multivalue.py      2022-04-14 
23:25:02.000000000 +0200
+++ new/trytond-6.0.23/trytond/model/multivalue.py      2022-10-30 
10:31:27.000000000 +0100
@@ -60,7 +60,7 @@
                 return str(value)
             return value.id
         elif isinstance(value, (list, tuple)):
-            return [r.id for r in value]
+            return tuple(r.id if isinstance(r, Model) else r for r in value)
         else:
             return value
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/trytond-6.0.22/trytond/model/tree.py 
new/trytond-6.0.23/trytond/model/tree.py
--- old/trytond-6.0.22/trytond/model/tree.py    2022-04-22 18:53:18.000000000 
+0200
+++ new/trytond-6.0.23/trytond/model/tree.py    2022-10-30 10:31:27.000000000 
+0100
@@ -112,7 +112,7 @@
                                 parent_name = ', '.join(getattr(r, name)
                                     for r in getattr(record, parent))
                                 raise RecursionError(
-                                    gettext('ir.recursion_error',
+                                    gettext('ir.msg_recursion_error',
                                         rec_name=getattr(record, name),
                                         parent_rec_name=parent_name))
                         walker = list(chain(*(
@@ -125,7 +125,7 @@
                             parent_name = getattr(
                                 getattr(record, parent), name)
                             raise RecursionError(
-                                gettext('ir.recursion_error',
+                                gettext('ir.msg_recursion_error',
                                     rec_name=getattr(record, name),
                                     parent_rec_name=parent_name))
                         walker = (getattr(walker, parent) not in visited
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/trytond-6.0.22/trytond.egg-info/PKG-INFO 
new/trytond-6.0.23/trytond.egg-info/PKG-INFO
--- old/trytond-6.0.22/trytond.egg-info/PKG-INFO        2022-10-17 
23:36:13.000000000 +0200
+++ new/trytond-6.0.23/trytond.egg-info/PKG-INFO        2022-11-05 
17:08:56.000000000 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: trytond
-Version: 6.0.22
+Version: 6.0.23
 Summary: Tryton server
 Home-page: http://www.tryton.org/
 Download-URL: http://downloads.tryton.org/6.0/

Reply via email to