summaryrefslogtreecommitdiff
path: root/CHANGES.txt
diff options
context:
space:
mode:
Diffstat (limited to 'CHANGES.txt')
-rw-r--r--CHANGES.txt11
1 files changed, 10 insertions, 1 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index 2f996a932..784e57b81 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -9,7 +9,13 @@ Features
invoked due to lack of permission. See the "ZCML Hooks" chapter in
the docs for more information.
-- Added Routes ZCML directive attribute explanations.
+- Added Routes ZCML directive attribute explanations in documentation.
+
+- Added a ``traversal_path`` API to the traversal module; see the
+ "traversal" API chapter in the docs. This was a function previously
+ known as ``split_path`` that was not an API but people were using it
+ anyway. Unlike ``split_path`` it now returns a tuple instead of a
+ list (as its values are cached).
Behavior Changes
----------------
@@ -66,6 +72,9 @@ Implementation Changes
- Use a homegrown Unauthorized error instead of
``webob.exc.Unauthorized`` (the latter is slow).
+- the ``repoze.bfg.lru.lru_cached`` decorator now uses functools.wraps
+ in order to make documentation of LRU-cached functions possible.
+
- Various speed micro-tweaks.
Bug Fixes