diff options
| author | Chris McDonough <chrism@plope.com> | 2013-10-02 19:02:46 -0400 |
|---|---|---|
| committer | Chris McDonough <chrism@plope.com> | 2013-10-02 19:02:46 -0400 |
| commit | 95d032468d5d445c64f6065e4b4b2889fa853e31 (patch) | |
| tree | 66bb56b03f2df802dd0836d017a59f993bcf86c8 /CHANGES.txt | |
| parent | 66be39bf656a2840931603bc959e38ff95e53164 (diff) | |
| parent | 61d1f729f4d9cc17a5fbcff0612512bc9f5fe7a2 (diff) | |
| download | pyramid-95d032468d5d445c64f6065e4b4b2889fa853e31.tar.gz pyramid-95d032468d5d445c64f6065e4b4b2889fa853e31.tar.bz2 pyramid-95d032468d5d445c64f6065e4b4b2889fa853e31.zip | |
Merge branch 'master' of github.com:Pylons/pyramid
Diffstat (limited to 'CHANGES.txt')
| -rw-r--r-- | CHANGES.txt | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/CHANGES.txt b/CHANGES.txt index cb28d880b..051328a02 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -15,6 +15,12 @@ Bug Fixes on resources. Previously it did not try to call the ``__acl__`` if it was callable. +- The ``pviews`` script did not work when a url required custom request + methods in order to perform traversal. Custom methods and descriptors added + via ``pyramid.config.Configurator.add_request_method`` will now be present, + allowing traversal to continue. + See https://github.com/Pylons/pyramid/issues/1104 + Documentation ------------- @@ -23,6 +29,16 @@ Documentation - Removed mention of ``pyramid_beaker`` from docs. Beaker is no longer maintained. Point people at ``pyramid_redis_sessions`` instead. +Backwards Incompatibilities +--------------------------- + +- The key/values in the ``_query`` parameter of ``request.route_url`` and the + ``query`` parameter of ``request.resource_url`` (and their variants), used + to encode a value of ``None`` as the string ``'None'``, leaving the resulting + query string to be ``a=b&key=None``. The value is now dropped in this + situation, leaving a query string of ``a=b&key=``. + See https://github.com/Pylons/pyramid/issues/1119 + 1.5a2 (2013-09-22) ================== |
