summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGES.txt16
1 files changed, 10 insertions, 6 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index 9f948ffe2..37fc92f75 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -45,6 +45,10 @@ Features (delta from BFG 1.3.X)
- New API methods in ``pyramid.session``: ``signed_serialize`` and
``signed_deserialize``.
+- New interface: ``pyramid.interfaces.IRendererInfo``. An object of this type
+ is passed to renderer factory constructors (see "Backwards
+ Incompatibilities").
+
Documentation (delta from BFG 1.3)
-----------------------------------
@@ -94,12 +98,12 @@ Backwards Incompatibilities (with BFG 1.3.X)
- ``pyramid.renderers.rendered_response`` function removed; use
``render_pyramid.renderers.render_to_response`` instead.
-- Renderer factories now accept an *info object* rather than an absolute
- resource specification or an absolute path. The object has the following
- attributes: ``name`` (the ``renderer=`` value), ``package`` (the 'current
- package' when the renderer configuration statement was found), ``type``: the
- renderer type, ``registry``: the current registry, and ``settings``: the
- deployment settings dictionary.
+- Renderer factories now accept a *renderer info object* rather than an
+ absolute resource specification or an absolute path. The object has the
+ following attributes: ``name`` (the ``renderer=`` value), ``package`` (the
+ 'current package' when the renderer configuration statement was found),
+ ``type``: the renderer type, ``registry``: the current registry, and
+ ``settings``: the deployment settings dictionary.
Third-party ``repoze.bfg`` renderer implementations that must be ported to
Pyramid will need to account for this.