diff options
| author | Chris McDonough <chrism@plope.com> | 2012-08-23 12:33:54 -0400 |
|---|---|---|
| committer | Chris McDonough <chrism@plope.com> | 2012-08-23 12:33:54 -0400 |
| commit | 0d9dccd259d52be9be2400cfe6ee5b709b812bfc (patch) | |
| tree | ddb6d0174bab3a49c19e9f678c1c7ce4a43c5a8f /CHANGES.txt | |
| parent | b9b4657e79e7e1ed1f0c79bf82c3fe19a0ab5687 (diff) | |
| parent | 75a8ff4ad0ba8eed13592eb5e7a211da3035e209 (diff) | |
| download | pyramid-0d9dccd259d52be9be2400cfe6ee5b709b812bfc.tar.gz pyramid-0d9dccd259d52be9be2400cfe6ee5b709b812bfc.tar.bz2 pyramid-0d9dccd259d52be9be2400cfe6ee5b709b812bfc.zip | |
Merge branch 'master' of github.com:Pylons/pyramid
Diffstat (limited to 'CHANGES.txt')
| -rw-r--r-- | CHANGES.txt | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/CHANGES.txt b/CHANGES.txt index 0291d924a..e799c8f00 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -17,12 +17,21 @@ Bug Fixes during iteration`` exception. It no longer does. See https://github.com/Pylons/pyramid/issues/635 for more information. -- In Mako Templates lookup, cyheck if the uri is already adjusted and bring +- In Mako Templates lookup, check if the uri is already adjusted and bring it back to an asset spec. Normally occurs with inherited templates or included components. https://github.com/Pylons/pyramid/issues/606 https://github.com/Pylons/pyramid/issues/607 +- In Mako Templates lookup, check for absolute uri (using mako directories) + when mixing up inheritance with asset specs. + https://github.com/Pylons/pyramid/issues/662 + +- HTTP Accept headers were not being normalized causing potentially + conflicting view registrations to go unnoticed. Two views that only + differ in the case ('text/html' vs. 'text/HTML') will now raise an error. + https://github.com/Pylons/pyramid/pull/620 + Features -------- @@ -105,6 +114,11 @@ Features config = Configurator() config.add_permission('view') +- The ``UnencryptedCookieSessionFactoryConfig`` now accepts + ``signed_serialize`` and ``signed_deserialize`` hooks which may be used + to influence how the sessions are marshalled (by default this is done + with HMAC+pickle). + Deprecations ------------ |
