Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package trytond_account for openSUSE:Factory
checked in at 2022-08-05 19:52:02
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/trytond_account (Old)
and /work/SRC/openSUSE:Factory/.trytond_account.new.1521 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "trytond_account"
Fri Aug 5 19:52:02 2022 rev:34 rq:993356 version:6.0.12
Changes:
--------
--- /work/SRC/openSUSE:Factory/trytond_account/trytond_account.changes
2022-06-12 17:43:13.686492353 +0200
+++
/work/SRC/openSUSE:Factory/.trytond_account.new.1521/trytond_account.changes
2022-08-05 19:52:48.937736815 +0200
@@ -1,0 +2,5 @@
+Thu Aug 4 13:28:53 UTC 2022 - Axel Braun <[email protected]>
+
+- Version 6.0.12 - Bugfix Release
+
+-------------------------------------------------------------------
Old:
----
trytond_account-6.0.11.tar.gz
trytond_account-6.0.11.tar.gz.asc
New:
----
trytond_account-6.0.12.tar.gz
trytond_account-6.0.12.tar.gz.asc
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ trytond_account.spec ++++++
--- /var/tmp/diff_new_pack.GzWGn9/_old 2022-08-05 19:52:49.421738065 +0200
+++ /var/tmp/diff_new_pack.GzWGn9/_new 2022-08-05 19:52:49.425738075 +0200
@@ -18,7 +18,7 @@
%define majorver 6.0
Name: trytond_account
-Version: %{majorver}.11
+Version: %{majorver}.12
Release: 0
Summary: The "account" module for the Tryton ERP system
License: GPL-3.0+
++++++ trytond_account-6.0.11.tar.gz -> trytond_account-6.0.12.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/trytond_account-6.0.11/.hgtags
new/trytond_account-6.0.12/.hgtags
--- old/trytond_account-6.0.11/.hgtags 2022-06-03 19:40:46.000000000 +0200
+++ new/trytond_account-6.0.12/.hgtags 2022-08-04 00:05:54.000000000 +0200
@@ -35,3 +35,4 @@
61169875694b908745a5f05c0b0849922e2a7ebd 6.0.9
c2067dc0f948f1fcccec16b328029281ee7cd3b9 6.0.10
c14b34ce88b5075f5f51626f3a26a50f7539af63 6.0.11
+ef3006913bf6116e88664c163085da7928dfe1f9 6.0.12
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/trytond_account-6.0.11/CHANGELOG
new/trytond_account-6.0.12/CHANGELOG
--- old/trytond_account-6.0.11/CHANGELOG 2022-06-03 19:40:45.000000000
+0200
+++ new/trytond_account-6.0.12/CHANGELOG 2022-08-04 00:05:53.000000000
+0200
@@ -1,3 +1,6 @@
+Version 6.0.12 - 2022-08-03
+* Bug fixes (see mercurial logs for details)
+
Version 6.0.11 - 2022-06-03
* Bug fixes (see mercurial logs for details)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/trytond_account-6.0.11/PKG-INFO
new/trytond_account-6.0.12/PKG-INFO
--- old/trytond_account-6.0.11/PKG-INFO 2022-06-03 19:40:49.997663700 +0200
+++ new/trytond_account-6.0.12/PKG-INFO 2022-08-04 00:05:58.363000200 +0200
@@ -1,6 +1,6 @@
Metadata-Version: 2.1
Name: trytond_account
-Version: 6.0.11
+Version: 6.0.12
Summary: Tryton module for accounting
Home-page: http://www.tryton.org/
Download-URL: http://downloads.tryton.org/6.0/
@@ -12,7 +12,6 @@
Project-URL: Forum, https://www.tryton.org/forum
Project-URL: Source Code, https://hg.tryton.org/modules/account
Keywords: tryton account
-Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Plugins
Classifier: Framework :: Tryton
@@ -62,5 +61,3 @@
It also includes templates for a basic chart of accounts, balance sheet and
income statement.
-
-
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/trytond_account-6.0.11/account.py
new/trytond_account-6.0.12/account.py
--- old/trytond_account-6.0.11/account.py 2022-05-07 08:36:20.000000000
+0200
+++ new/trytond_account-6.0.12/account.py 2022-07-17 19:41:09.000000000
+0200
@@ -1832,7 +1832,7 @@
break
ids = [a.id for a in accounts
- if operator_(getattr(a, fname), operand)]
+ if operand is not None and operator_(getattr(a, fname), operand)]
return [('id', 'in', ids)]
@classmethod
@@ -1880,7 +1880,7 @@
}.get(operator_, lambda v, l: False)
ids = [a.id for a in accounts
- if operator_(getattr(a, name), operand)]
+ if operand is not None and operator_(getattr(a, name), operand)]
return [('id', 'in', ids)]
def get_currency(self, name):
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/trytond_account-6.0.11/tryton.cfg
new/trytond_account-6.0.12/tryton.cfg
--- old/trytond_account-6.0.11/tryton.cfg 2022-04-15 23:37:59.000000000
+0200
+++ new/trytond_account-6.0.12/tryton.cfg 2022-06-03 19:41:06.000000000
+0200
@@ -1,5 +1,5 @@
[tryton]
-version=6.0.11
+version=6.0.12
depends:
company
currency
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/trytond_account-6.0.11/trytond_account.egg-info/PKG-INFO
new/trytond_account-6.0.12/trytond_account.egg-info/PKG-INFO
--- old/trytond_account-6.0.11/trytond_account.egg-info/PKG-INFO
2022-06-03 19:40:48.000000000 +0200
+++ new/trytond_account-6.0.12/trytond_account.egg-info/PKG-INFO
2022-08-04 00:05:57.000000000 +0200
@@ -1,6 +1,6 @@
Metadata-Version: 2.1
Name: trytond-account
-Version: 6.0.11
+Version: 6.0.12
Summary: Tryton module for accounting
Home-page: http://www.tryton.org/
Download-URL: http://downloads.tryton.org/6.0/
@@ -12,7 +12,6 @@
Project-URL: Forum, https://www.tryton.org/forum
Project-URL: Source Code, https://hg.tryton.org/modules/account
Keywords: tryton account
-Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Plugins
Classifier: Framework :: Tryton
@@ -62,5 +61,3 @@
It also includes templates for a basic chart of accounts, balance sheet and
income statement.
-
-