summaryrefslogtreecommitdiff
path: root/CHANGES.txt
diff options
context:
space:
mode:
authorChris McDonough <chrism@agendaless.com>2009-01-16 18:58:16 +0000
committerChris McDonough <chrism@agendaless.com>2009-01-16 18:58:16 +0000
commit5a7f9a4d57424f14a1e072cc06b6bf7a191a7d08 (patch)
treeb44448198ddf8031b3e09b83dd731f2ae1d6623a /CHANGES.txt
parent4856cc54bcd5feb97db49f1cca923afb01c0bf02 (diff)
downloadpyramid-5a7f9a4d57424f14a1e072cc06b6bf7a191a7d08.tar.gz
pyramid-5a7f9a4d57424f14a1e072cc06b6bf7a191a7d08.tar.bz2
pyramid-5a7f9a4d57424f14a1e072cc06b6bf7a191a7d08.zip
Features
-------- - The functionality of ``repoze.bfg.convention`` has been merged into the core. Applications which make use of ``repoze.bfg.convention`` will continue to work indefinitely, but it is recommended that apps stop depending upon it. To do so, substitute imports of ``repoze.bfg.convention.bfg_view`` with imports of ``repoze.bfg.view.bfg_view``, and change the stanza in ZCML from ``<convention package=".">`` to ``<grok package=".">``. As a result of the merge, bfg has grown a new dependency: ``martian``. - View functions which use the pushpage decorator are now pickleable (meaning their use won't prevent a ``configure.zcml.cache`` file from being written to disk). Implementation Changes ---------------------- - The ``wsgiapp`` decorator now uses ``webob.Request.get_response`` to do its work rather than relying on howgrown WSGI code.
Diffstat (limited to 'CHANGES.txt')
-rw-r--r--CHANGES.txt19
1 files changed, 19 insertions, 0 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index 2f5b14e84..d7aa363f8 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -4,12 +4,31 @@ After 0.6.2
Features
--------
+- The functionality of ``repoze.bfg.convention`` has been merged into
+ the core. Applications which make use of ``repoze.bfg.convention``
+ will continue to work indefinitely, but it is recommended that apps
+ stop depending upon it. To do so, substitute imports of
+ ``repoze.bfg.convention.bfg_view`` with imports of
+ ``repoze.bfg.view.bfg_view``, and change the stanza in ZCML from
+ ``<convention package=".">`` to ``<grok package=".">``. As a result
+ of the merge, bfg has grown a new dependency: ``martian``.
+
+- View functions which use the pushpage decorator are now pickleable
+ (meaning their use won't prevent a ``configure.zcml.cache`` file
+ from being written to disk).
+
- Instead of invariably using ``webob.Request`` as the "request
factory" (e.g. in the ``Router`` class) and ``webob.Response`` and
the "response factory" (e.g. in ``render_template_to_response``),
allow both to be overridden via a ZCML utility hook. See the "Using
ZCML Hooks" chapter of the documentation for more information.
+Implementation Changes
+----------------------
+
+- The ``wsgiapp`` decorator now uses ``webob.Request.get_response`` to
+ do its work rather than relying on howgrown WSGI code.
+
0.6.2 (2009-01-13)
==================