[tryton-debian-vcs] tryton-server branch upstream-3.2 updated. upstream/3.2.10-1-g0eb216c
Mathias Behrle
tryton-debian-vcs at alioth.debian.org
Wed Dec 16 14:43:44 UTC 2015
The following commit has been merged in the upstream-3.2 branch:
https://alioth.debian.org/plugins/scmgit/cgi-bin/gitweb.cgi/?p=tryton/tryton-server.git;a=commitdiff;h=upstream/3.2.10-1-g0eb216c
commit 0eb216c2a0d1d5ba5c5b6e177658a84cdd2f6674
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Wed Dec 16 15:29:06 2015 +0100
Adding upstream version 3.2.11.
Signed-off-by: Mathias Behrle <mathiasb at m9s.biz>
diff --git a/CHANGELOG b/CHANGELOG
index 3c766d7..e07a090 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,7 @@
+Version 3.2.11 - 2015-12-16
+* Bug fixes (see mercurial logs for details)
+* Check all fields when writing a sequence of records, values (CVE-2015-0861)
+
Version 3.2.10 - 2015-11-09
* Bug fixes (see mercurial logs for details)
diff --git a/PKG-INFO b/PKG-INFO
index 901d0c6..9b321c7 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: trytond
-Version: 3.2.10
+Version: 3.2.11
Summary: Tryton server
Home-page: http://www.tryton.org/
Author: Tryton
diff --git a/trytond.egg-info/PKG-INFO b/trytond.egg-info/PKG-INFO
index 901d0c6..9b321c7 100644
--- a/trytond.egg-info/PKG-INFO
+++ b/trytond.egg-info/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: trytond
-Version: 3.2.10
+Version: 3.2.11
Summary: Tryton server
Home-page: http://www.tryton.org/
Author: Tryton
diff --git a/trytond/model/modelstorage.py b/trytond/model/modelstorage.py
index 358f9c9..93c8ee1 100644
--- a/trytond/model/modelstorage.py
+++ b/trytond/model/modelstorage.py
@@ -138,18 +138,19 @@ class ModelStorage(Model):
ModelAccess = pool.get('ir.model.access')
ModelFieldAccess = pool.get('ir.model.field.access')
- ModelAccess.check(cls.__name__, 'write')
- ModelFieldAccess.check(cls.__name__,
- [x for x in values if x in cls._fields], 'write')
-
assert not len(args) % 2
actions = iter((records, values) + args)
all_records = []
+ all_fields = set()
for records, values in zip(actions, actions):
if not cls.check_xml_record(records, values):
cls.raise_user_error('write_xml_record',
error_description='xml_record_desc')
all_records += records
+ all_fields.update(values.iterkeys())
+
+ ModelAccess.check(cls.__name__, 'write')
+ ModelFieldAccess.check(cls.__name__, all_fields, 'write')
# Increase transaction counter
Transaction().counter += 1
diff --git a/trytond/version.py b/trytond/version.py
index 5bafe45..0ddedca 100644
--- a/trytond/version.py
+++ b/trytond/version.py
@@ -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.
PACKAGE = "trytond"
-VERSION = "3.2.10"
+VERSION = "3.2.11"
LICENSE = "GPL-3"
WEBSITE = "http://www.tryton.org/"
--
tryton-server
More information about the tryton-debian-vcs
mailing list