summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2012-01-20 10:53:55 -0500
committerChris McDonough <chrism@plope.com>2012-01-20 10:53:55 -0500
commita41c8ca521ba983594364b1eb1f6c6025149fbe7 (patch)
tree5a183c6b9280158f1a7fd8876feac9d0441a91ad /docs
parent05f462e9792d9b5f6560968503795dc162984408 (diff)
downloadpyramid-a41c8ca521ba983594364b1eb1f6c6025149fbe7.tar.gz
pyramid-a41c8ca521ba983594364b1eb1f6c6025149fbe7.tar.bz2
pyramid-a41c8ca521ba983594364b1eb1f6c6025149fbe7.zip
prep for 1.3a6
Diffstat (limited to 'docs')
-rw-r--r--docs/conf.py2
-rw-r--r--docs/whatsnew-1.3.rst15
2 files changed, 16 insertions, 1 deletions
diff --git a/docs/conf.py b/docs/conf.py
index 2ab56cadf..3496bd38c 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -80,7 +80,7 @@ copyright = '%s, Agendaless Consulting' % datetime.datetime.now().year
# other places throughout the built documents.
#
# The short X.Y version.
-version = '1.3a5'
+version = '1.3a6'
# The full version, including alpha/beta/rc tags.
release = version
diff --git a/docs/whatsnew-1.3.rst b/docs/whatsnew-1.3.rst
index ee4e2ccb5..ed7024f62 100644
--- a/docs/whatsnew-1.3.rst
+++ b/docs/whatsnew-1.3.rst
@@ -240,6 +240,16 @@ Minor Feature Additions
- We allow extra keyword arguments to be passed to the
:meth:`pyramid.config.Configurator.action` method.
+- New API: :meth:`pyramid.config.Configurator.set_request_property`. Add lazy
+ property descriptors to a request without changing the request factory.
+ This method provides conflict detection and is the suggested way to add
+ properties to a request.
+
+- Responses generated by Pyramid's :class:`pyramid.views.static_view` now use
+ a ``wsgi.file_wrapper`` (see
+ http://www.python.org/dev/peps/pep-0333/#optional-platform-specific-file-handling)
+ when one is provided by the web server.
+
Backwards Incompatibilities
---------------------------
@@ -300,6 +310,11 @@ Backwards Incompatibilities
``add_route`` as a pattern, it will now fail at startup time. Use Unicode
instead.
+- The ``path_info`` route and view predicates now match against
+ ``request.upath_info`` (Unicode) rather than ``request.path_info``
+ (indeterminate value based on Python 3 vs. Python 2). This has to be done
+ to normalize matching on Python 2 and Python 3.
+
Documentation Enhancements
--------------------------