Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package trytond for openSUSE:Factory checked 
in at 2024-10-30 17:38:49
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/trytond (Old)
 and      /work/SRC/openSUSE:Factory/.trytond.new.2020 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "trytond"

Wed Oct 30 17:38:49 2024 rev:99 rq:1219419 version:6.0.53

Changes:
--------
--- /work/SRC/openSUSE:Factory/trytond/trytond.changes  2024-09-24 
17:34:06.031149561 +0200
+++ /work/SRC/openSUSE:Factory/.trytond.new.2020/trytond.changes        
2024-10-30 17:39:13.416289332 +0100
@@ -1,0 +2,5 @@
+Tue Oct  8 18:03:59 UTC 2024 - Axel Braun <axel.br...@gmx.de>
+
+- Version 6.0.53 - Bugfix Release
+
+-------------------------------------------------------------------

Old:
----
  trytond-6.0.52.tar.gz

New:
----
  trytond-6.0.53.tar.gz

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

Other differences:
------------------
++++++ trytond.spec ++++++
--- /var/tmp/diff_new_pack.SxUtEb/_old  2024-10-30 17:39:14.144319829 +0100
+++ /var/tmp/diff_new_pack.SxUtEb/_new  2024-10-30 17:39:14.148319997 +0100
@@ -30,7 +30,7 @@
 %endif
 
 Name:           trytond
-Version:        %{majorver}.52
+Version:        %{majorver}.53
 Release:        0
 Summary:        An Enterprise Resource Planning (ERP) system
 License:        GPL-3.0-or-later

++++++ trytond-6.0.52.tar.gz -> trytond-6.0.53.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/trytond-6.0.52/CHANGELOG new/trytond-6.0.53/CHANGELOG
--- old/trytond-6.0.52/CHANGELOG        2024-09-16 20:12:23.000000000 +0200
+++ new/trytond-6.0.53/CHANGELOG        2024-10-05 17:05:41.000000000 +0200
@@ -1,4 +1,9 @@
 
+Version 6.0.53 - 2024-10-05
+---------------------------
+* Bug fixes (see mercurial logs for details)
+
+
 Version 6.0.52 - 2024-09-16
 ---------------------------
 * Bug fixes (see mercurial logs for details)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/trytond-6.0.52/PKG-INFO new/trytond-6.0.53/PKG-INFO
--- old/trytond-6.0.52/PKG-INFO 2024-09-16 20:12:26.194061000 +0200
+++ new/trytond-6.0.53/PKG-INFO 2024-10-05 17:05:44.383770500 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: trytond
-Version: 6.0.52
+Version: 6.0.53
 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.52/trytond/__init__.py 
new/trytond-6.0.53/trytond/__init__.py
--- old/trytond-6.0.52/trytond/__init__.py      2024-09-01 13:36:21.000000000 
+0200
+++ new/trytond-6.0.53/trytond/__init__.py      2024-09-16 20:12:34.000000000 
+0200
@@ -7,7 +7,7 @@
 
 from lxml import etree, objectify
 
-__version__ = "6.0.52"
+__version__ = "6.0.53"
 
 os.environ['TZ'] = 'UTC'
 if hasattr(time, 'tzset'):
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/trytond-6.0.52/trytond/backend/postgresql/database.py 
new/trytond-6.0.53/trytond/backend/postgresql/database.py
--- old/trytond-6.0.52/trytond/backend/postgresql/database.py   2024-09-14 
10:54:35.000000000 +0200
+++ new/trytond-6.0.53/trytond/backend/postgresql/database.py   2024-09-28 
18:06:54.000000000 +0200
@@ -249,7 +249,7 @@
         if uri.path and uri.path != '/':
             warnings.warn("The path specified in the URI will be overridden")
         params = {
-            'dsn': uri._replace(path=name).geturl(),
+            'dsn': uri._replace(path='/' + name).geturl(),
             }
         return params
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/trytond-6.0.52/trytond/ir/model.py 
new/trytond-6.0.53/trytond/ir/model.py
--- old/trytond-6.0.52/trytond/ir/model.py      2023-12-10 14:06:53.000000000 
+0100
+++ new/trytond-6.0.53/trytond/ir/model.py      2024-09-28 18:06:54.000000000 
+0200
@@ -334,8 +334,11 @@
             .join(ir_model, condition=ir_model_field.model == ir_model.id)
             .select(ir_model.model, ir_model_field.name, ir_model_field.id))
         for model, field, id_ in cursor:
-            Model = pool.get(model)
-            if field not in Model._fields:
+            try:
+                Model = pool.get(model)
+            except KeyError:
+                Model = None
+            if not Model or field not in Model._fields:
                 logger.info("remove field: %s.%s", model, field)
                 try:
                     cls.delete([cls(id_)])
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/trytond-6.0.52/trytond.egg-info/PKG-INFO 
new/trytond-6.0.53/trytond.egg-info/PKG-INFO
--- old/trytond-6.0.52/trytond.egg-info/PKG-INFO        2024-09-16 
20:12:25.000000000 +0200
+++ new/trytond-6.0.53/trytond.egg-info/PKG-INFO        2024-10-05 
17:05:43.000000000 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: trytond
-Version: 6.0.52
+Version: 6.0.53
 Summary: Tryton server
 Home-page: http://www.tryton.org/
 Download-URL: http://downloads.tryton.org/6.0/

Reply via email to