summaryrefslogtreecommitdiff
path: root/CHANGES.txt
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2012-10-13 19:02:32 -0400
committerChris McDonough <chrism@plope.com>2012-10-13 19:02:32 -0400
commitdddddedc546506f6736054bd562e90a0b23def68 (patch)
treead3a762fccf0d48b5300ace29b52c09298409767 /CHANGES.txt
parentfc766d828601884203c63dffe4c3b31624f54f2f (diff)
parentb33a6a79fe614bd50a9a6993d8538ac0e8469bc1 (diff)
downloadpyramid-dddddedc546506f6736054bd562e90a0b23def68.tar.gz
pyramid-dddddedc546506f6736054bd562e90a0b23def68.tar.bz2
pyramid-dddddedc546506f6736054bd562e90a0b23def68.zip
Merge branch 'master' into 1.4-branch
Diffstat (limited to 'CHANGES.txt')
-rw-r--r--CHANGES.txt26
1 files changed, 26 insertions, 0 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index 613be1b80..95375e5ba 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -24,6 +24,32 @@ Bug Fixes
1.4 too (a registry is attached to a request passed to bootstrap or
prepare).
+- When registering a view configuration that named a Chameleon ZPT renderer
+ with a macro name in it (e.g. ``renderer='some/template#somemacro.pt``) as
+ well as a view configuration without a macro name it it that pointed to the
+ same template (e.g. ``renderer='some/template.pt'), internal caching could
+ confuse the two, and your code might have rendered one instead of the
+ other.
+
+Features
+--------
+
+- The Configurator ``testing_securitypolicy`` method now returns the policy
+ object it creates.
+
+- The Configurator ``testing_securitypolicy`` method accepts two new
+ arguments: ``remember_result`` and ``forget_result``. If supplied, these
+ values influence the result of the policy's ``remember`` and ``forget``
+ methods, respectively.
+
+- The DummySecurityPolicy created by ``testing_securitypolicy`` now sets a
+ ``forgotten`` value on the policy (the value ``True``) when its ``forget``
+ method is called.
+
+- The DummySecurityPolicy created by ``testing_securitypolicy`` now sets a
+ ``remembered`` value on the policy, which is the value of the ``principal``
+ argument it's called with when its ``remember`` method is called.
+
1.4a2 (2012-09-27)
==================