Skip to content

Commit

Permalink
Add CHANGES.txt for PR 287
Browse files Browse the repository at this point in the history
  • Loading branch information
digitalresistor committed Oct 1, 2016
1 parent 7414d49 commit 8bed3b0
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions CHANGES.txt
Expand Up @@ -4,6 +4,11 @@ Unreleased
Backwards Incompatibility
~~~~~~~~~~~~~~~~~~~~~~~~~

- Response.text will no longer raise if the Content-Type does not have a
charset, it will fall back to using the new default_body_encoding. To get the
old behaviour back please sub-class Response and set default_body_encoding to
None. See https://github.com/Pylons/webob/pull/287

- WebOb no longer supports Chunked Encoding, this means that if you are using
WebOb and need Chunked Encoding you will be required to have a proxy that
unchunks the request for you. Please read
Expand All @@ -12,6 +17,10 @@ Backwards Incompatibility
Feature
~~~~~~~

- Response has a new default_body_encoding which may be used to allow
getting/setting Response.text when a Content-Type has no charset. See
https://github.com/Pylons/webob/pull/287

- webob.Request with any HTTP method is now allowed to have a body. This allows
DELETE to have a request body for passing extra information. See
https://github.com/Pylons/webob/pull/283 and
Expand Down

0 comments on commit 8bed3b0

Please sign in to comment.