summaryrefslogtreecommitdiff
path: root/CHANGES.txt
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2011-01-16 17:25:34 -0500
committerChris McDonough <chrism@plope.com>2011-01-16 17:25:34 -0500
commite333c2c2236cbfd11809ee393aa71be1b4846d88 (patch)
tree2af7fc0a97cc528de875a44434d030e6ef73e0f1 /CHANGES.txt
parent314283a5bec3159d5a0c7e4d7028a0feecd47fa0 (diff)
downloadpyramid-e333c2c2236cbfd11809ee393aa71be1b4846d88.tar.gz
pyramid-e333c2c2236cbfd11809ee393aa71be1b4846d88.tar.bz2
pyramid-e333c2c2236cbfd11809ee393aa71be1b4846d88.zip
Remove configurator.add_handler, handler-related functions and methods from pyramid.view, handler ZCML directive. This functionality is to be moved to a "pyramid_handlers" package.
Fix add_directive to properly persist directives across configurator creations.
Diffstat (limited to 'CHANGES.txt')
-rw-r--r--CHANGES.txt18
1 files changed, 18 insertions, 0 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index 27a723fb4..6d613fa3f 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -7,6 +7,24 @@ Bug Fixes
- URL Dispatch properly handles a '.*' or '*' appearing in a regex match
when used inside brackets. Resolve Issue #90.
+Backwards Incompatibilities
+---------------------------
+
+- The ``add_handler`` method of a Configurator has been removed from the
+ Pyramid core. Handlers are now a feature of the ``pyramid_handlers``
+ package, which can be downloaded from PyPI. Documentation for the package
+ should be available via http://pylonsproject.org, which describes how to
+ get this method back after depending upon ``pyramid_handlers`` as an
+ ``install_requires`` dependency.
+
+- The ``pyramid.view.action`` decorator has been removed from the Pyramid
+ core. Handlers are now a feature of the ``pyramid_handlers`` package. It
+ should now be imported from ``pyramid_handlers`` e.g. ``from
+ pyramid_handlers import action``.
+
+- The ``handler`` ZCML directive has been removed. It is now a feature of
+ the ``pyramid_handlers`` package.
+
Features
--------