summaryrefslogtreecommitdiff
path: root/CHANGES.rst
diff options
context:
space:
mode:
authorMichael Merickel <michael@merickel.org>2019-09-30 21:40:16 -0500
committerMichael Merickel <michael@merickel.org>2019-10-02 10:03:22 -0500
commit52779768030ec58407db2586b0f83683ffd180f0 (patch)
treed4fce2853d4a0e46aa5b54f348832f287986cae6 /CHANGES.rst
parentba311842b667348c51fb1a479ae08a042434f1bc (diff)
downloadpyramid-52779768030ec58407db2586b0f83683ffd180f0.tar.gz
pyramid-52779768030ec58407db2586b0f83683ffd180f0.tar.bz2
pyramid-52779768030ec58407db2586b0f83683ffd180f0.zip
add changelog for #3514
Diffstat (limited to 'CHANGES.rst')
-rw-r--r--CHANGES.rst11
1 files changed, 11 insertions, 0 deletions
diff --git a/CHANGES.rst b/CHANGES.rst
index 400e6d896..e2d5dbbac 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -46,6 +46,10 @@ Features
``Referer`` header for privacy reasons.
See https://github.com/Pylons/pyramid/pull/3512
+- Added ``pyramid.interfaces.IPredicateInfo`` which defines the object passed
+ to predicate factories as their second argument.
+ See https://github.com/Pylons/pyramid/pull/3514
+
Deprecations
------------
@@ -109,6 +113,13 @@ Backward Incompatibilities
``config.scan(..., categories=None)``.
See https://github.com/Pylons/pyramid/pull/3510
+- The second argument to predicate factories has been changed from ``config``
+ to ``info``, an instance of ``pyramid.interfaces.IPredicateInfo``. This
+ limits the data available to predicates but still provides the package,
+ registry, settings and dotted-name resolver which should cover most use
+ cases and is largely backward compatible.
+ See https://github.com/Pylons/pyramid/pull/3514
+
Documentation Changes
---------------------