summaryrefslogtreecommitdiff
path: root/CHANGES.rst
diff options
context:
space:
mode:
Diffstat (limited to 'CHANGES.rst')
-rw-r--r--CHANGES.rst17
1 files changed, 17 insertions, 0 deletions
diff --git a/CHANGES.rst b/CHANGES.rst
index 926584de0..c3049a368 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -57,6 +57,16 @@ Features
- Add support for Python 3.7. Add testing on Python 3.8 with allowed failures.
See https://github.com/Pylons/pyramid/pull/3333
+- Added the ``pyramid.config.Configurator.add_accept_view_order`` directive,
+ allowing users to specify media type preferences in ambiguous situations
+ such as when several views match. A default ordering is defined for media
+ types that prefers human-readable html/text responses over JSON.
+ See https://github.com/Pylons/pyramid/pull/3326
+
+- Support a list of media types in the ``accept`` predicate used in
+ ``pyramid.config.Configurator.add_route``.
+ See https://github.com/Pylons/pyramid/pull/3326
+
- Added ``pyramid.session.JSONSerializer``. See "Upcoming Changes to ISession
in Pyramid 2.0" in the "Sessions" chapter of the documentation for more
information about this feature.
@@ -131,6 +141,13 @@ Backward Incompatibilities
of previous ``pyramid.httpexceptions.HTTPFound``.
See https://github.com/Pylons/pyramid/pull/3328
+- Accept-handling has undergone work to get rid of undefined behaviors and
+ runtime exceptions. As part of this effort, it is now a hard error to pass
+ any media ranges to the ``accept`` predicate on routes and views.
+ Previously, depending on the version of WebOb, this would error on certain
+ requests or it would work in undefined ways.
+ https://github.com/Pylons/pyramid/pull/3326
+
Documentation Changes
---------------------