diff options
| author | Jonathan Villemaire-Krajden <odontomachus@gmail.com> | 2013-08-13 13:25:17 -0400 |
|---|---|---|
| committer | Jonathan Villemaire-Krajden <odontomachus@gmail.com> | 2013-08-13 13:25:17 -0400 |
| commit | 33e0fe18037d99312d8d4d966a8e01baffc2e62d (patch) | |
| tree | f68a3df3fb4bed5cb9f8e99e35716ae4a46f3d29 | |
| parent | 0f1bc5286f772d2001bbcab8235bf5f7805b7634 (diff) | |
| download | pyramid-33e0fe18037d99312d8d4d966a8e01baffc2e62d.tar.gz pyramid-33e0fe18037d99312d8d4d966a8e01baffc2e62d.tar.bz2 pyramid-33e0fe18037d99312d8d4d966a8e01baffc2e62d.zip | |
Fixes to documentation, added change to what's new.
| -rw-r--r-- | CHANGES.txt | 9 | ||||
| -rw-r--r-- | docs/whatsnew-1.5.rst | 3 |
2 files changed, 8 insertions, 4 deletions
diff --git a/CHANGES.txt b/CHANGES.txt index 1b4c3492c..42b3e7546 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -168,9 +168,14 @@ Bug Fixes - The ``alchemy`` scaffold would break when the database was MySQL during tables creation. See https://github.com/Pylons/pyramid/pull/1049 -- The route ``current_route_url`` method now attaches the query string to the URL by default. See +- The ``current_route_url`` method now attaches the query string to the URL by default. See https://github.com/Pylons/pyramid/issues/1040 +Backwards Incompatibilities +--------------------------- + +- Modified the ``current_route_url`` method in pyramid.Request. The method previously returned the URL without the query string by default, it now does attach the query string unless it is overriden. + 1.4 (2012-12-18) ================ @@ -208,8 +213,6 @@ Backwards Incompatibilities similar way to the changes described to ``_depth`` above. This argument remains undocumented, but might be used in the wild by some insane person. -- Modified the ``current_route_url`` method in pyramid.Request. The method previously returned the URL without the query string by default, it now does attach the query string unless it is overriden. - 1.4b1 (2012-11-21) ================== diff --git a/docs/whatsnew-1.5.rst b/docs/whatsnew-1.5.rst index b987fa77f..89bfdbee3 100644 --- a/docs/whatsnew-1.5.rst +++ b/docs/whatsnew-1.5.rst @@ -134,7 +134,8 @@ The feature additions in Pyramid 1.5 follow. Backwards Incompatibilities --------------------------- -This release has no known backwards incompatibilities with Pyramid 1.4.X. +- Modified the ``current_route_url`` method in pyramid.Request. The method previously returned the URL without the query string by default, it now does attach the query string unless it is overriden. + Deprecations ------------ |
