diff options
| author | Michael Merickel <mmerickel@users.noreply.github.com> | 2016-11-20 15:28:08 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-11-20 15:28:08 -0600 |
| commit | 3c5db5881058b730d9ce5ad0e49667c28ad63e25 (patch) | |
| tree | 50f80f80516e2deeb114abea11ae7064b754d859 /CHANGES.txt | |
| parent | 14fcc74cfdeafbca57256d7365a8d9f508d9f222 (diff) | |
| parent | 7b58c0f003107aba5fde6cde57f13491d5248c76 (diff) | |
| download | pyramid-3c5db5881058b730d9ce5ad0e49667c28ad63e25.tar.gz pyramid-3c5db5881058b730d9ce5ad0e49667c28ad63e25.tar.bz2 pyramid-3c5db5881058b730d9ce5ad0e49667c28ad63e25.zip | |
Merge pull request #2823 from mmerickel/remove-custom-settings-object
make settings only accessible using dictionary lookup
Diffstat (limited to 'CHANGES.txt')
| -rw-r--r-- | CHANGES.txt | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/CHANGES.txt b/CHANGES.txt index 1939ad125..a0a928f83 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -35,6 +35,10 @@ Backward Incompatibilities encoding via ``Accept-Encoding`` request headers. See https://github.com/Pylons/pyramid/pull/2810 +- Settings are no longer accessible as attributes on the settings object + (e.g. ``request.registry.settings.foo``). This was deprecated in Pyramid 1.2. + See https://github.com/Pylons/pyramid/pull/2823 + Features -------- @@ -80,6 +84,15 @@ Features as soon as possible before importing the rest of pyramid. See https://github.com/Pylons/pyramid/pull/2797 +- Pyramid no longer copies the settings object passed to the + ``pyramid.config.Configurator(settings=)``. The original ``dict`` is kept. + See https://github.com/Pylons/pyramid/pull/2823 + +- The csrf trusted origins setting may now be a whitespace-separated list of + domains. Previously only a python list was allowed. Also, it can now be set + using the ``PYRAMID_CSRF_TRUSTED_ORIGINS`` environment variable similar to + other settings. See https://github.com/Pylons/pyramid/pull/2823 + Bug Fixes --------- |
