# HG changeset patch # User Thierry Florac # Date 1515937941 -3600 # Node ID e1552515151ed616b834d2f0d5244f64ee8b0286 # Parent cd0086f5b00ba0b159f44c9ab49a659ef977961d Version 0.1.8 diff -r cd0086f5b00b -r e1552515151e buildout.cfg --- a/buildout.cfg Thu Dec 14 12:19:56 2017 +0100 +++ b/buildout.cfg Sun Jan 14 14:52:21 2018 +0100 @@ -70,4 +70,4 @@ eggs = pyams_security [test] [versions] -pyams_security = 0.1.7 +pyams_security = 0.1.8 diff -r cd0086f5b00b -r e1552515151e docs/HISTORY.txt --- a/docs/HISTORY.txt Thu Dec 14 12:19:56 2017 +0100 +++ b/docs/HISTORY.txt Sun Jan 14 14:52:21 2018 +0100 @@ -1,6 +1,10 @@ History ======= +0.1.8 +----- + - switched to Pyramid 1.9 and removed custom CSRF handling code + 0.1.7 ----- - added CSRF token cookie in every server response, with validation in every POST or AJAX request diff -r cd0086f5b00b -r e1552515151e setup.py --- a/setup.py Thu Dec 14 12:19:56 2017 +0100 +++ b/setup.py Sun Jan 14 14:52:21 2018 +0100 @@ -22,7 +22,7 @@ README = os.path.join(DOCS, 'README.txt') HISTORY = os.path.join(DOCS, 'HISTORY.txt') -version = '0.1.7' +version = '0.1.8' long_description = open(README).read() + '\n\n' + open(HISTORY).read() tests_require = [] @@ -67,7 +67,7 @@ 'pyams_skin', 'pyams_utils', 'pyams_viewlet', - 'pyramid', + 'pyramid >= 1.9', 'z3c.form', 'z3c.table', 'zope.annotation', diff -r cd0086f5b00b -r e1552515151e src/pyams_security.egg-info/PKG-INFO --- a/src/pyams_security.egg-info/PKG-INFO Thu Dec 14 12:19:56 2017 +0100 +++ b/src/pyams_security.egg-info/PKG-INFO Sun Jan 14 14:52:21 2018 +0100 @@ -1,11 +1,12 @@ Metadata-Version: 1.1 Name: pyams-security -Version: 0.1.7 +Version: 0.1.8 Summary: PyAMS security interfaces and classes Home-page: http://hg.ztfy.org/pyams/pyams_security Author: Thierry Florac Author-email: tflorac@ulthar.net License: ZPL +Description-Content-Type: UNKNOWN Description: ====================== PyAMS security package ====================== @@ -106,6 +107,10 @@ History ======= + 0.1.8 + ----- + - switched to Pyramid 1.9 and removed custom CSRF handling code + 0.1.7 ----- - added CSRF token cookie in every server response, with validation in every POST or AJAX request diff -r cd0086f5b00b -r e1552515151e src/pyams_security.egg-info/SOURCES.txt --- a/src/pyams_security.egg-info/SOURCES.txt Thu Dec 14 12:19:56 2017 +0100 +++ b/src/pyams_security.egg-info/SOURCES.txt Sun Jan 14 14:52:21 2018 +0100 @@ -5,7 +5,6 @@ src/pyams_security/__init__.py src/pyams_security/configure.zcml src/pyams_security/credential.py -src/pyams_security/csrf.py src/pyams_security/include.py src/pyams_security/index.py src/pyams_security/notification.py diff -r cd0086f5b00b -r e1552515151e src/pyams_security.egg-info/requires.txt --- a/src/pyams_security.egg-info/requires.txt Thu Dec 14 12:19:56 2017 +0100 +++ b/src/pyams_security.egg-info/requires.txt Sun Jan 14 14:52:21 2018 +0100 @@ -10,7 +10,7 @@ pyams_skin pyams_utils pyams_viewlet -pyramid +pyramid>=1.9 z3c.form z3c.table zope.annotation