From c750baac5bc6ceacdf5f58ce290324413c6c82b6 Mon Sep 17 00:00:00 2001 From: Chris McDonough Date: Fri, 29 Aug 2008 03:21:27 +0000 Subject: 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. --- CHANGES.txt | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) (limited to 'CHANGES.txt') 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 -- cgit v1.2.3