[tryton-debian-vcs] tryton-server branch debian-stretch-3.6 updated. debian/3.6.6-1-2-g055fdf2
Mathias Behrle
tryton-debian-vcs at alioth.debian.org
Wed Feb 10 19:55:47 UTC 2016
The following commit has been merged in the debian-stretch-3.6 branch:
https://alioth.debian.org/plugins/scmgit/cgi-bin/gitweb.cgi/?p=tryton/tryton-server.git;a=commitdiff;h=debian/3.6.6-1-2-g055fdf2
commit 055fdf2f267a6f9ad36c47e368893336303ceec1
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Wed Feb 10 18:26:02 2016 +0100
Releasing debian version 3.6.7-1.
Signed-off-by: Mathias Behrle <mathiasb at m9s.biz>
diff --git a/debian/changelog b/debian/changelog
index e9d8eed..912f5fd 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+tryton-server (3.6.7-1) unstable; urgency=medium
+
+ * Merging upstream version 3.6.7.
+
+ -- Mathias Behrle <mathiasb at m9s.biz> Wed, 10 Feb 2016 18:26:02 +0100
+
tryton-server (3.6.6-1) unstable; urgency=medium
* Merging upstream version 3.6.6.
commit 8016b4271e6b888a7f48a45b54f7c48ed772d4fc
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Wed Feb 10 18:26:02 2016 +0100
Merging upstream version 3.6.7.
diff --git a/CHANGELOG b/CHANGELOG
index 6eac27e..8f80168 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,8 @@
+Version 3.6.7 - 2016-02-06
+* Bug fixes (see mercurial logs for details)
+* Don't read historized user when evaluating record rules as it could lead to
+ past privilege escalation.
+
Version 3.6.6 - 2016-01-11
* Bug fixes (see mercurial logs for details)
diff --git a/PKG-INFO b/PKG-INFO
index 395efbe..f70441a 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: trytond
-Version: 3.6.6
+Version: 3.6.7
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 395efbe..f70441a 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.6.6
+Version: 3.6.7
Summary: Tryton server
Home-page: http://www.tryton.org/
Author: Tryton
diff --git a/trytond/__init__.py b/trytond/__init__.py
index 933c1c1..7db9720 100644
--- a/trytond/__init__.py
+++ b/trytond/__init__.py
@@ -4,7 +4,7 @@ import os
import time
from email import charset
-__version__ = "3.6.6"
+__version__ = "3.6.7"
os.environ['TZ'] = 'UTC'
if hasattr(time, 'tzset'):
diff --git a/trytond/ir/rule.py b/trytond/ir/rule.py
index 351b577..4fadc62 100644
--- a/trytond/ir/rule.py
+++ b/trytond/ir/rule.py
@@ -142,7 +142,7 @@ class Rule(ModelSQL, ModelView):
def _get_context():
User = Pool().get('res.user')
user_id = Transaction().user
- with Transaction().set_context(_check_access=False):
+ with Transaction().set_context(_check_access=False, _datetime=None):
user = EvalEnvironment(User(user_id), User)
return {
'user': user,
--
tryton-server
More information about the tryton-debian-vcs
mailing list