diff options
| author | Chris McDonough <chrism@plope.com> | 2011-01-18 10:50:53 -0500 |
|---|---|---|
| committer | Chris McDonough <chrism@plope.com> | 2011-01-18 10:50:53 -0500 |
| commit | d4b0ea1c9f3351f1b499f7be11bc603c2b894a73 (patch) | |
| tree | e2035e3ab48fe89846d5454a26b2bbeda45ad010 | |
| parent | c1eb0c69f2067baa567f68f6cc472397ec71f65a (diff) | |
| download | pyramid-d4b0ea1c9f3351f1b499f7be11bc603c2b894a73.tar.gz pyramid-d4b0ea1c9f3351f1b499f7be11bc603c2b894a73.tar.bz2 pyramid-d4b0ea1c9f3351f1b499f7be11bc603c2b894a73.zip | |
descriptions
| -rw-r--r-- | CHANGES.txt | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/CHANGES.txt b/CHANGES.txt index ac020b4b1..d3f826958 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -17,6 +17,18 @@ Backwards Incompatibilities get this method back after depending upon ``pyramid_handlers`` as an ``install_requires`` dependency. +- The ``load_zcml`` method of a Configurator has been removed from the + Pyramid core. Loading ZCML is now a feature of the ``pyramid_zcml`` + 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_zcml`` as an + ``install_requires`` dependency. + +- The ``pyramid.includes`` subpackage has been removed. ZCML files which use + include the package ``pyramid.includes`` (e.g. ``<include + package="pyramid.includes">``) now must include the ``pyramid_zcml`` + package instead (e.g. ``<include package="pyramid_zcml"/>). + - 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 @@ -88,6 +100,9 @@ Documentation - Document the ``request.override_renderer`` attribute within the narrative "Renderers" chapter in a section named "Overriding A Renderer at Runtime". +- The "Declarative Configuration" narrative chapter has been removed (it was + moved to the ``pyramid_zcml`` pakcage). + Deprecations ------------ |
