Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package tryton for openSUSE:Factory checked 
in at 2022-11-26 18:45:28
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/tryton (Old)
 and      /work/SRC/openSUSE:Factory/.tryton.new.1597 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "tryton"

Sat Nov 26 18:45:28 2022 rev:9 rq:1038265 version:6.0.21

Changes:
--------
--- /work/SRC/openSUSE:Factory/tryton/tryton.changes    2022-11-06 
12:43:26.073823300 +0100
+++ /work/SRC/openSUSE:Factory/.tryton.new.1597/tryton.changes  2022-11-26 
18:45:32.531244443 +0100
@@ -1,0 +2,5 @@
+Fri Nov 18 19:04:30 UTC 2022 - Axel Braun <axel.br...@gmx.de>
+
+- Version 6.0.21 - Bugfix Release
+
+-------------------------------------------------------------------

Old:
----
  tryton-6.0.20.tar.gz

New:
----
  tryton-6.0.21.tar.gz

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

Other differences:
------------------
++++++ tryton.spec ++++++
--- /var/tmp/diff_new_pack.EpXiYY/_old  2022-11-26 18:45:32.991247170 +0100
+++ /var/tmp/diff_new_pack.EpXiYY/_new  2022-11-26 18:45:32.995247193 +0100
@@ -19,7 +19,7 @@
 
 %define majorver 6.0
 Name:           tryton
-Version:        %{majorver}.20
+Version:        %{majorver}.21
 Release:        0
 Summary:        The client of the Tryton application platform
 License:        GPL-3.0-or-later

++++++ tryton-6.0.20.tar.gz -> tryton-6.0.21.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/tryton-6.0.20/.hgtags new/tryton-6.0.21/.hgtags
--- old/tryton-6.0.20/.hgtags   2022-11-05 17:11:55.000000000 +0100
+++ new/tryton-6.0.21/.hgtags   2022-11-17 18:48:48.000000000 +0100
@@ -44,3 +44,4 @@
 40c3f7f6d487197698ac644ef28fa09dbce7e46a 6.0.18
 bd7b3f9a3c2f9cda09c2d5f89ed1c1f92dd78ff3 6.0.19
 4b448222df4c6c37b0223112c0c2c14f09675d34 6.0.20
+90566b9897fd57fb36e427dd7d8f2bbfa0a9ed5f 6.0.21
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/tryton-6.0.20/CHANGELOG new/tryton-6.0.21/CHANGELOG
--- old/tryton-6.0.20/CHANGELOG 2022-11-05 17:11:55.000000000 +0100
+++ new/tryton-6.0.21/CHANGELOG 2022-11-17 18:48:48.000000000 +0100
@@ -1,3 +1,7 @@
+Version 6.0.21 - 2022-11-17
+---------------------------
+* Bug fixes (see mercurial logs for details)
+
 Version 6.0.20 - 2022-11-05
 ---------------------------
 * Bug fixes (see mercurial logs for details)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/tryton-6.0.20/PKG-INFO new/tryton-6.0.21/PKG-INFO
--- old/tryton-6.0.20/PKG-INFO  2022-11-05 17:11:57.554916400 +0100
+++ new/tryton-6.0.21/PKG-INFO  2022-11-17 18:48:50.480251000 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: tryton
-Version: 6.0.20
+Version: 6.0.21
 Summary: Tryton desktop client
 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/tryton-6.0.20/tryton/__init__.py 
new/tryton-6.0.21/tryton/__init__.py
--- old/tryton-6.0.20/tryton/__init__.py        2022-10-17 23:40:19.000000000 
+0200
+++ new/tryton-6.0.21/tryton/__init__.py        2022-11-05 17:12:09.000000000 
+0100
@@ -1,6 +1,6 @@
 # This file is part of Tryton.  The COPYRIGHT file at the top level of
 # this repository contains the full copyright notices and license terms.
-__version__ = "6.0.20"
+__version__ = "6.0.21"
 import gi
 import locale
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/tryton-6.0.20/tryton/common/selection.py 
new/tryton-6.0.21/tryton/common/selection.py
--- old/tryton-6.0.20/tryton/common/selection.py        2021-11-02 
18:57:36.000000000 +0100
+++ new/tryton-6.0.21/tryton/common/selection.py        2022-11-15 
00:28:15.000000000 +0100
@@ -107,9 +107,12 @@
                 return value[0] in allowed_models or not allowed_models
             return test
 
-        if field.attrs['type'] == 'reference':
+        type_ = field.attrs['type']
+        if type_ == 'reference':
             allowed_models = field.get_models(record)
             evaluator = _model_evaluator(allowed_models)
+        elif type_ == 'multiselection':
+            return
         else:
             evaluator = _value_evaluator
         self.selection = list(filter(evaluator, self.selection))
Binary files old/tryton-6.0.20/tryton/data/locale/bg/LC_MESSAGES/tryton.mo and 
new/tryton-6.0.21/tryton/data/locale/bg/LC_MESSAGES/tryton.mo differ
Binary files old/tryton-6.0.20/tryton/data/locale/ca/LC_MESSAGES/tryton.mo and 
new/tryton-6.0.21/tryton/data/locale/ca/LC_MESSAGES/tryton.mo differ
Binary files old/tryton-6.0.20/tryton/data/locale/cs/LC_MESSAGES/tryton.mo and 
new/tryton-6.0.21/tryton/data/locale/cs/LC_MESSAGES/tryton.mo differ
Binary files old/tryton-6.0.20/tryton/data/locale/de/LC_MESSAGES/tryton.mo and 
new/tryton-6.0.21/tryton/data/locale/de/LC_MESSAGES/tryton.mo differ
Binary files old/tryton-6.0.20/tryton/data/locale/es/LC_MESSAGES/tryton.mo and 
new/tryton-6.0.21/tryton/data/locale/es/LC_MESSAGES/tryton.mo differ
Binary files old/tryton-6.0.20/tryton/data/locale/es_419/LC_MESSAGES/tryton.mo 
and new/tryton-6.0.21/tryton/data/locale/es_419/LC_MESSAGES/tryton.mo differ
Binary files old/tryton-6.0.20/tryton/data/locale/et/LC_MESSAGES/tryton.mo and 
new/tryton-6.0.21/tryton/data/locale/et/LC_MESSAGES/tryton.mo differ
Binary files old/tryton-6.0.20/tryton/data/locale/fa/LC_MESSAGES/tryton.mo and 
new/tryton-6.0.21/tryton/data/locale/fa/LC_MESSAGES/tryton.mo differ
Binary files old/tryton-6.0.20/tryton/data/locale/fi/LC_MESSAGES/tryton.mo and 
new/tryton-6.0.21/tryton/data/locale/fi/LC_MESSAGES/tryton.mo differ
Binary files old/tryton-6.0.20/tryton/data/locale/fr/LC_MESSAGES/tryton.mo and 
new/tryton-6.0.21/tryton/data/locale/fr/LC_MESSAGES/tryton.mo differ
Binary files old/tryton-6.0.20/tryton/data/locale/hu/LC_MESSAGES/tryton.mo and 
new/tryton-6.0.21/tryton/data/locale/hu/LC_MESSAGES/tryton.mo differ
Binary files old/tryton-6.0.20/tryton/data/locale/id/LC_MESSAGES/tryton.mo and 
new/tryton-6.0.21/tryton/data/locale/id/LC_MESSAGES/tryton.mo differ
Binary files old/tryton-6.0.20/tryton/data/locale/it/LC_MESSAGES/tryton.mo and 
new/tryton-6.0.21/tryton/data/locale/it/LC_MESSAGES/tryton.mo differ
Binary files old/tryton-6.0.20/tryton/data/locale/ja_JP/LC_MESSAGES/tryton.mo 
and new/tryton-6.0.21/tryton/data/locale/ja_JP/LC_MESSAGES/tryton.mo differ
Binary files old/tryton-6.0.20/tryton/data/locale/lo/LC_MESSAGES/tryton.mo and 
new/tryton-6.0.21/tryton/data/locale/lo/LC_MESSAGES/tryton.mo differ
Binary files old/tryton-6.0.20/tryton/data/locale/lt/LC_MESSAGES/tryton.mo and 
new/tryton-6.0.21/tryton/data/locale/lt/LC_MESSAGES/tryton.mo differ
Binary files old/tryton-6.0.20/tryton/data/locale/nl/LC_MESSAGES/tryton.mo and 
new/tryton-6.0.21/tryton/data/locale/nl/LC_MESSAGES/tryton.mo differ
Binary files old/tryton-6.0.20/tryton/data/locale/pl/LC_MESSAGES/tryton.mo and 
new/tryton-6.0.21/tryton/data/locale/pl/LC_MESSAGES/tryton.mo differ
Binary files old/tryton-6.0.20/tryton/data/locale/pt/LC_MESSAGES/tryton.mo and 
new/tryton-6.0.21/tryton/data/locale/pt/LC_MESSAGES/tryton.mo differ
Binary files old/tryton-6.0.20/tryton/data/locale/ro/LC_MESSAGES/tryton.mo and 
new/tryton-6.0.21/tryton/data/locale/ro/LC_MESSAGES/tryton.mo differ
Binary files old/tryton-6.0.20/tryton/data/locale/ru/LC_MESSAGES/tryton.mo and 
new/tryton-6.0.21/tryton/data/locale/ru/LC_MESSAGES/tryton.mo differ
Binary files old/tryton-6.0.20/tryton/data/locale/sl/LC_MESSAGES/tryton.mo and 
new/tryton-6.0.21/tryton/data/locale/sl/LC_MESSAGES/tryton.mo differ
Binary files old/tryton-6.0.20/tryton/data/locale/tr/LC_MESSAGES/tryton.mo and 
new/tryton-6.0.21/tryton/data/locale/tr/LC_MESSAGES/tryton.mo differ
Binary files old/tryton-6.0.20/tryton/data/locale/zh_CN/LC_MESSAGES/tryton.mo 
and new/tryton-6.0.21/tryton/data/locale/zh_CN/LC_MESSAGES/tryton.mo differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/tryton-6.0.20/tryton.egg-info/PKG-INFO 
new/tryton-6.0.21/tryton.egg-info/PKG-INFO
--- old/tryton-6.0.20/tryton.egg-info/PKG-INFO  2022-11-05 17:11:56.000000000 
+0100
+++ new/tryton-6.0.21/tryton.egg-info/PKG-INFO  2022-11-17 18:48:49.000000000 
+0100
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: tryton
-Version: 6.0.20
+Version: 6.0.21
 Summary: Tryton desktop client
 Home-page: http://www.tryton.org/
 Download-URL: http://downloads.tryton.org/6.0/

Reply via email to