diff options
| author | Michael Merickel <michael@merickel.org> | 2013-09-04 22:34:37 -0500 |
|---|---|---|
| committer | Michael Merickel <michael@merickel.org> | 2013-09-04 23:13:50 -0500 |
| commit | 82f9702c9cd8bb16b15d658e6d64c9c31b9fdc57 (patch) | |
| tree | a6458c06ccc1529dcb53759f94b09f3d20038492 /CHANGES.txt | |
| parent | c41c76bf713b636a19e97b319294ecf98885d1b5 (diff) | |
| download | pyramid-82f9702c9cd8bb16b15d658e6d64c9c31b9fdc57.tar.gz pyramid-82f9702c9cd8bb16b15d658e6d64c9c31b9fdc57.tar.bz2 pyramid-82f9702c9cd8bb16b15d658e6d64c9c31b9fdc57.zip | |
update changelog
Diffstat (limited to 'CHANGES.txt')
| -rw-r--r-- | CHANGES.txt | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/CHANGES.txt b/CHANGES.txt index cdaad5a90..dbf27900f 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,3 +1,25 @@ +Next Release +============ + +Major Backward Incompatibilities +-------------------------------- + +- Pyramid has dropped native support for the Mako and Chameleon renderers. To + re-add support for these renderers into existing projects there are 3 steps: + + - Add `pyramid_mako` and/or `pyramid_chameleon` as dependencies by + adding them to the `install_requires` section of the package's `setup.py`. + + - Update instances of the `Configurator` to include the required addons: + + config.include('pyramid_chameleon') + config.include('pyramid_mako') + + - If any unit tests are invoking either `pyramid.renderers.render()` or + `pyramid.renderers.render_to_response()`, then the `Configurator` instance + at the root of the unit test should be also be updated to include the + addons, as shown above. + 1.5a1 (2013-08-30) ================== |
