diff options
| author | Michael Merickel <michael@merickel.org> | 2020-01-05 18:57:39 -0600 |
|---|---|---|
| committer | Michael Merickel <michael@merickel.org> | 2020-01-05 18:57:39 -0600 |
| commit | 1b555e2b7911bc3d8cee811986ec67c88fa36cad (patch) | |
| tree | a86ac06a21c38f9f317a7e90e6f6749a4df65c04 /CHANGES.rst | |
| parent | c5dd748a3bc06b6e7e17797863bb363a2f377a5e (diff) | |
| download | pyramid-1b555e2b7911bc3d8cee811986ec67c88fa36cad.tar.gz pyramid-1b555e2b7911bc3d8cee811986ec67c88fa36cad.tar.bz2 pyramid-1b555e2b7911bc3d8cee811986ec67c88fa36cad.zip | |
add changelog for #3559
Diffstat (limited to 'CHANGES.rst')
| -rw-r--r-- | CHANGES.rst | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/CHANGES.rst b/CHANGES.rst index 383906e00..70ee43b96 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -71,6 +71,13 @@ Features - Fix ``DeprecationWarning`` emitted by using the ``imp`` module. See https://github.com/Pylons/pyramid/pull/3553 +- Properties created via ``config.add_request_method(..., property=True)`` or + ``request.set_property`` used to be readonly. They can now be overridden + via ``request.foo = ...`` and until the value is deleted it will return + the overridden value. This is most useful when mocking request properties + in testing. + See https://github.com/Pylons/pyramid/pull/3559 + Deprecations ------------ |
