diff options
| author | Chris McDonough <chrism@agendaless.com> | 2008-08-29 03:21:27 +0000 |
|---|---|---|
| committer | Chris McDonough <chrism@agendaless.com> | 2008-08-29 03:21:27 +0000 |
| commit | c750baac5bc6ceacdf5f58ce290324413c6c82b6 (patch) | |
| tree | b5bc53074c7e0b7fa5f105e285a7fe0e678a2373 /CHANGES.txt | |
| parent | 6acc73eb70fa5e15f517eefdf0370a5078e7decc (diff) | |
| download | pyramid-c750baac5bc6ceacdf5f58ce290324413c6c82b6.tar.gz pyramid-c750baac5bc6ceacdf5f58ce290324413c6c82b6.tar.bz2 pyramid-c750baac5bc6ceacdf5f58ce290324413c6c82b6.zip | |
model_path and *backwards incompatible change* removing "make_app" and "get_options" from __init__.py of repoze.bfg; use repoze.bfg.router:make_app and repoze.bfg.registry:get_options instead.
Diffstat (limited to 'CHANGES.txt')
| -rw-r--r-- | CHANGES.txt | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/CHANGES.txt b/CHANGES.txt index e9c600550..33476c7b5 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,3 +1,26 @@ +Next release + + Backwards incompatibilities + + - Make ``repoze.bfg`` a namespace package so we can allow folks to + create subpackages (e.g. ``repoze.bfg.otherthing``) within + separate eggs. This is a backwards incompatible change which + makes it impossible to import "make_app" and "get_options" from + the ``repoze.bfg`` module directly. This change will break all + existing apps generated by the paster code generator. Instead, + you need to import these functions as + ``repoze.bfg.router:make_app`` and + ``repoze.bfg.registry:get_options``, respectively. Sorry folks, + it has to be done now or never, and definitely better now. + + Features + + - Add ``model_path`` API function to traversal module. + + Bugfixes + + - Normalize path returned by repoze.bfg.caller_path. + 0.3.3 (8/23/2008) - Fix generated test.py module to use project name rather than package |
