summaryrefslogtreecommitdiff
path: root/CHANGES.txt
diff options
context:
space:
mode:
authorMichael Merickel <michael@merickel.org>2014-11-17 02:18:15 -0600
committerMichael Merickel <michael@merickel.org>2014-11-17 02:18:15 -0600
commit0c5e5ac9bbb9d0e1bc4aa8f3497f2c7f54ca96d3 (patch)
treeaf1f326e83b8e799abe17bad6f1259185b52f813 /CHANGES.txt
parent823ac447329e46e5826e8e3228d9f847f9790ee8 (diff)
parentc0f1fc8d31df45371d5ae6689d3e0a39c058c3ac (diff)
downloadpyramid-0c5e5ac9bbb9d0e1bc4aa8f3497f2c7f54ca96d3.tar.gz
pyramid-0c5e5ac9bbb9d0e1bc4aa8f3497f2c7f54ca96d3.tar.bz2
pyramid-0c5e5ac9bbb9d0e1bc4aa8f3497f2c7f54ca96d3.zip
Merge branch 'master' into feature.pshell-pythonstartup
Diffstat (limited to 'CHANGES.txt')
-rw-r--r--CHANGES.txt24
1 files changed, 22 insertions, 2 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index f72a793a5..590a6db0e 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -12,8 +12,8 @@ Features
parameter to assist with includeable packages that wish to resolve
resources relative to the package in which the ``Configurator`` was created.
This is especially useful for addons that need to load asset specs from
- settings, in which case it is natural for a user to define things relative
- to their own packages.
+ settings, in which case it is may be natural for a developer to define
+ imports or assets relative to the top-level package.
See https://github.com/Pylons/pyramid/pull/1337
- Added line numbers to the log formatters in the scaffolds to assist with
@@ -28,6 +28,20 @@ Features
defined in the environment prior to launching the interpreter.
See https://github.com/Pylons/pyramid/pull/1448
+- Make it simple to define notfound and forbidden views that wish to use
+ the default exception-response view but with altered predicates and other
+ configuration options. The ``view`` argument is now optional in
+ ``config.add_notfound_view`` and ``config.add_forbidden_view``..
+ See https://github.com/Pylons/pyramid/issues/494
+
+- Greatly improve the readability of the ``pcreate`` shell script output.
+ See https://github.com/Pylons/pyramid/pull/1453
+
+- Improve robustness to timing attacks in the ``AuthTktCookieHelper`` and
+ the ``SignedCookieSessionFactory`` classes by using the stdlib's
+ ``hmac.compare_digest`` if it is available (such as Python 2.7.7+ and 3.3+).
+ See https://github.com/Pylons/pyramid/pull/1457
+
Bug Fixes
---------
@@ -62,6 +76,12 @@ Bug Fixes
add another callback to the list. See
https://github.com/Pylons/pyramid/pull/1373
+- Fix a failing unittest caused by differing mimetypes across various OSs.
+ See https://github.com/Pylons/pyramid/issues/1405
+
+- Fix route generation for static view asset specifications having no path.
+ See https://github.com/Pylons/pyramid/pull/1377
+
Docs
----