diff options
| author | Chris McDonough <chrism@agendaless.com> | 2010-09-15 00:26:48 +0000 |
|---|---|---|
| committer | Chris McDonough <chrism@agendaless.com> | 2010-09-15 00:26:48 +0000 |
| commit | f0fc3e5c1dee40d4262a85204c356516d1d2ea5a (patch) | |
| tree | 6326b3808681ed8cecf985701700dcb5c2c21d9a /docs/whatsnew-1.3.rst | |
| parent | 2f320ccb481057be752a51a06acb0e33581abe6c (diff) | |
| download | pyramid-f0fc3e5c1dee40d4262a85204c356516d1d2ea5a.tar.gz pyramid-f0fc3e5c1dee40d4262a85204c356516d1d2ea5a.tar.bz2 pyramid-f0fc3e5c1dee40d4262a85204c356516d1d2ea5a.zip | |
prep for 1.3a14
Diffstat (limited to 'docs/whatsnew-1.3.rst')
| -rw-r--r-- | docs/whatsnew-1.3.rst | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/docs/whatsnew-1.3.rst b/docs/whatsnew-1.3.rst index 63f0355fd..c356d5fa4 100644 --- a/docs/whatsnew-1.3.rst +++ b/docs/whatsnew-1.3.rst @@ -405,6 +405,8 @@ Minor Feature Additions :class:`repoze.bfg.interfaces.IRoutePregenerator` for more information. +- Compatibility with WebOb 1.0 (now requires WebOb >= 1.0). + Backwards Incompatibilities --------------------------- @@ -537,6 +539,17 @@ Backwards Incompatibilities processing; it only began existence once an exception view was found. +- Due to changes introduced WebOb 1.0, the + ``repoze.bfg.request.make_request_ascii`` event subscriber no longer + worked, so it has been removed. This subscriber was meant to be used + in a deployment so that code written before BFG 0.7.0 could run + unchanged. At this point, such code will need to be rewritten to + expect Unicode from ``request.GET``, ``request.POST`` and + ``request.params`` or it will need to be changed to use + ``request.str_POST``, ``request.str_GET`` and/or + ``request.str_params`` instead of the non-``str`` versions of same, + as the non-``str`` versions of the same APIs always now perform + decoding to Unicode. Deprecations and Behavior Differences ------------------------------------- |
