summaryrefslogtreecommitdiff
path: root/CHANGES.txt
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2013-09-08 21:24:04 -0400
committerChris McDonough <chrism@plope.com>2013-09-08 21:24:04 -0400
commit8fe57d871af1321b0e2b853c559d8e5c127db5fa (patch)
tree5cfc294d918c5a0451f33a83e2fb5212f12af60b /CHANGES.txt
parentfdf30b3bb6f47d93d2f255a09e75be0c33d54789 (diff)
downloadpyramid-8fe57d871af1321b0e2b853c559d8e5c127db5fa.tar.gz
pyramid-8fe57d871af1321b0e2b853c559d8e5c127db5fa.tar.bz2
pyramid-8fe57d871af1321b0e2b853c559d8e5c127db5fa.zip
- Removed the ability to influence and query a ``pyramid.request.Request``
object as if it were a dictionary. Previously it was possible to use methods like ``__getitem__``, ``get``, ``items``, and other dictlike methods to access values in the WSGI environment. This behavior had been deprecated since Pyramid 1.1. Use methods of ``request.environ`` (a real dictionary) instead.
Diffstat (limited to 'CHANGES.txt')
-rw-r--r--CHANGES.txt7
1 files changed, 7 insertions, 0 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index 69547ad46..641219a8b 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -91,6 +91,13 @@ Backwards Incompatibilities
``pyramid.config.Configurator.add_static_view`` function too, because it
delegates to ``add_route``.
+- Removed the ability to influence and query a ``pyramid.request.Request``
+ object as if it were a dictionary. Previously it was possible to use methods
+ like ``__getitem__``, ``get``, ``items``, and other dictlike methods to
+ access values in the WSGI environment. This behavior had been deprecated
+ since Pyramid 1.1. Use methods of ``request.environ`` (a real dictionary)
+ instead.
+
1.5a1 (2013-08-30)
==================