Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package trytond for openSUSE:Factory checked 
in at 2025-07-24 18:47:08
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/trytond (Old)
 and      /work/SRC/openSUSE:Factory/.trytond.new.13279 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "trytond"

Thu Jul 24 18:47:08 2025 rev:108 rq:1295454 version:7.0.34

Changes:
--------
--- /work/SRC/openSUSE:Factory/trytond/trytond.changes  2025-07-16 
15:56:13.043890181 +0200
+++ /work/SRC/openSUSE:Factory/.trytond.new.13279/trytond.changes       
2025-07-24 18:48:13.208378652 +0200
@@ -1,0 +2,5 @@
+Thu Jul 17 07:06:40 UTC 2025 - Axel Braun <axel.br...@gmx.de>
+
+- Version 7.0.34 - Bugfix Release
+
+-------------------------------------------------------------------

Old:
----
  trytond-7.0.33.tar.gz

New:
----
  trytond-7.0.34.tar.gz

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

Other differences:
------------------
++++++ trytond.spec ++++++
--- /var/tmp/diff_new_pack.NGFwzl/_old  2025-07-24 18:48:15.784488912 +0200
+++ /var/tmp/diff_new_pack.NGFwzl/_new  2025-07-24 18:48:15.800489597 +0200
@@ -30,7 +30,7 @@
 ##%%endif
 
 Name:           trytond
-Version:        %{majorver}.33
+Version:        %{majorver}.34
 Release:        0
 Summary:        An Enterprise Resource Planning (ERP) system
 License:        GPL-3.0-or-later

++++++ trytond-7.0.33.tar.gz -> trytond-7.0.34.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/trytond-7.0.33/CHANGELOG new/trytond-7.0.34/CHANGELOG
--- old/trytond-7.0.33/CHANGELOG        2025-07-01 23:16:20.000000000 +0200
+++ new/trytond-7.0.34/CHANGELOG        2025-07-15 23:05:09.000000000 +0200
@@ -1,4 +1,9 @@
 
+Version 7.0.34 - 2025-07-15
+---------------------------
+* Bug fixes (see mercurial logs for details)
+
+
 Version 7.0.33 - 2025-07-01
 ---------------------------
 * Bug fixes (see mercurial logs for details)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/trytond-7.0.33/PKG-INFO new/trytond-7.0.34/PKG-INFO
--- old/trytond-7.0.33/PKG-INFO 2025-07-01 23:16:23.507944600 +0200
+++ new/trytond-7.0.34/PKG-INFO 2025-07-15 23:05:12.305798500 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 2.4
 Name: trytond
-Version: 7.0.33
+Version: 7.0.34
 Summary: Tryton server
 Home-page: http://www.tryton.org/
 Download-URL: http://downloads.tryton.org/7.0/
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/trytond-7.0.33/trytond/__init__.py 
new/trytond-7.0.34/trytond/__init__.py
--- old/trytond-7.0.33/trytond/__init__.py      2025-06-04 23:07:39.000000000 
+0200
+++ new/trytond-7.0.34/trytond/__init__.py      2025-07-01 23:16:32.000000000 
+0200
@@ -13,7 +13,7 @@
 except ImportError:
     requests_utils = None
 
-__version__ = "7.0.33"
+__version__ = "7.0.34"
 
 os.environ.setdefault(
     'TRYTOND_APPNAME',
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/trytond-7.0.33/trytond/ir/routes.py 
new/trytond-7.0.34/trytond/ir/routes.py
--- old/trytond-7.0.33/trytond/ir/routes.py     2025-05-05 10:54:29.000000000 
+0200
+++ new/trytond-7.0.34/trytond/ir/routes.py     2025-07-15 10:15:11.000000000 
+0200
@@ -270,7 +270,6 @@
         response = Response(data, mimetype='text/csv; charset=' + encoding)
         response.headers.add(
             'Content-Disposition', 'attachment', filename=filename)
-        response.headers.add('Content-Length', len(data))
         return response
 
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/trytond-7.0.33/trytond/model/modelstorage.py 
new/trytond-7.0.34/trytond/model/modelstorage.py
--- old/trytond-7.0.33/trytond/model/modelstorage.py    2025-06-29 
00:56:31.000000000 +0200
+++ new/trytond-7.0.34/trytond/model/modelstorage.py    2025-07-15 
10:22:45.000000000 +0200
@@ -1997,8 +1997,8 @@
                         cls.write(*sum(
                                 (([r], save_values[r]) for r in to_write), ()))
             except Exception:
-                for record in to_create + to_write:
-                    record._values = values[record]
+                for record in chain(to_create, to_write):
+                    record._values = values.get(record)
                 raise
             for record in to_create + to_write:
                 record._init_values = None
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/trytond-7.0.33/trytond.egg-info/PKG-INFO 
new/trytond-7.0.34/trytond.egg-info/PKG-INFO
--- old/trytond-7.0.33/trytond.egg-info/PKG-INFO        2025-07-01 
23:16:22.000000000 +0200
+++ new/trytond-7.0.34/trytond.egg-info/PKG-INFO        2025-07-15 
23:05:11.000000000 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 2.4
 Name: trytond
-Version: 7.0.33
+Version: 7.0.34
 Summary: Tryton server
 Home-page: http://www.tryton.org/
 Download-URL: http://downloads.tryton.org/7.0/

Reply via email to