summaryrefslogtreecommitdiff
path: root/CHANGES.txt
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2013-11-27 04:23:22 -0500
committerChris McDonough <chrism@plope.com>2013-11-27 04:23:22 -0500
commit06aee8b0c35d5fdcd305ff6c7107d936bcdb7d32 (patch)
treec46a7a9396560c1b4e3eb8fd6ace33b1be444aae /CHANGES.txt
parentf82f91a74b51b79c3c81ac38cf91f6e544991218 (diff)
downloadpyramid-06aee8b0c35d5fdcd305ff6c7107d936bcdb7d32.tar.gz
pyramid-06aee8b0c35d5fdcd305ff6c7107d936bcdb7d32.tar.bz2
pyramid-06aee8b0c35d5fdcd305ff6c7107d936bcdb7d32.zip
change the behavior of parse_url_overrides and resource_url to not quote a _query/query argument supplied as a string and document in changelog
Diffstat (limited to 'CHANGES.txt')
-rw-r--r--CHANGES.txt17
1 files changed, 12 insertions, 5 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index d6f5ea792..40efecce1 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -48,17 +48,24 @@ Features
timeouts, and conformance with the ``ISession`` API.
See https://github.com/Pylons/pyramid/pull/1142
-- Allow ``pyramid.request.Request.route_url`` and
- ``pyramid.request.Request.resource_url`` to accept strings for their
- query string to enable alternative encodings. Also the anchor argument
- will now be escaped to ensure minimal conformance.
- See https://github.com/Pylons/pyramid/pull/1183
+- The anchor argument to ``pyramid.request.Request.route_url`` and
+ ``pyramid.request.Request.resource_url`` and their derivatives will now be
+ escaped to ensure minimal conformance. See
+ https://github.com/Pylons/pyramid/pull/1183
- Allow sending of ``_query`` and ``_anchor`` options to
``pyramid.request.Request.static_url`` when an external URL is being
generated.
See https://github.com/Pylons/pyramid/pull/1183
+- You can now send a string as the ``_query`` argument to
+ ``pyramid.request.Request.route_url`` and
+ ``pyramid.request.Request.resource_url`` and their derivatives. When a
+ string is sent instead of a list or dictionary. it is not URL-encoded or
+ quoted; the caller must perform this job before passing it in. This is
+ useful if you want to be able to use a different query string format than
+ ``x-www-form-urlencoded``. See https://github.com/Pylons/pyramid/pull/1183
+
Bug Fixes
---------