1.3 (2012-03-21)
================
Bug Fixes
---------
- When ``pyramid.wsgi.wsgiapp2`` calls the downstream WSGI app, the
app's environ will no longer have (deprecated and potentially
misleading) ``bfg.routes.matchdict`` or ``bfg.routes.route`` keys
in it. A symptom of this bug would be a ``wsgiapp2``-wrapped
Pyramid app finding the wrong view because it mistakenly detects
that a route was matched when, in fact, it was not.
- The fix for issue https://github.com/Pylons/pyramid/issues/461
(which made it possible for instance methods to be used as view
callables) introduced a backwards incompatibility when methods
that declared only a request argument were used. See
https://github.com/Pylons/pyramid/issues/503
Besides Python 3.2 compatibility, Pyramid 1.3 provides a lot of other
new features. A detailed "What's New in Pyramid 1.3" document is
available at
http://docs.pylonsproject.org/projects/pyramid/en/1.3-branch/whatsnew-1.3.html
The documentation for the 1.3 release is available at
http://docs.pylonsproject.org/projects/pyramid/en/1.3-branch/
You can install 1.3 via PyPI:
easy_install Pyramid==1.3
Enjoy, and please report any issues you find to the issue tracker at
https://github.com/Pylons/pyramid/issues
Thanks!
- C