diff options
| author | Michael Merickel <michael@merickel.org> | 2014-11-17 01:27:41 -0600 |
|---|---|---|
| committer | Michael Merickel <michael@merickel.org> | 2014-11-17 01:27:41 -0600 |
| commit | 405be483f50c37edef694e81aadcaa326311e51d (patch) | |
| tree | 3f34467bd232d0dd1da6fe4e2cf6c225fbbbe08d /CHANGES.txt | |
| parent | 3ffd40c295a1e37ec94b6123fff8fb4dd5f5abf5 (diff) | |
| parent | af0290407b50a18664c9ae28a4c01d4cfb27920b (diff) | |
| download | pyramid-405be483f50c37edef694e81aadcaa326311e51d.tar.gz pyramid-405be483f50c37edef694e81aadcaa326311e51d.tar.bz2 pyramid-405be483f50c37edef694e81aadcaa326311e51d.zip | |
Merge branch 'master' into feature.security-docs-enhancements
Diffstat (limited to 'CHANGES.txt')
| -rw-r--r-- | CHANGES.txt | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/CHANGES.txt b/CHANGES.txt index 8083113ef..4dd92b46f 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -11,6 +11,9 @@ Features - Add ``pyramid.config.Configurator.root_package`` attribute and init parameter to assist with includeable packages that wish to resolve resources relative to the package in which the ``Configurator`` was created. + This is especially useful for addons that need to load asset specs from + settings, in which case it is may be natural for a developer to define + imports or assets relative to the top-level package. See https://github.com/Pylons/pyramid/pull/1337 - Added line numbers to the log formatters in the scaffolds to assist with @@ -21,6 +24,15 @@ Features ``431 Request Header Fields Too Large`` in ``pyramid.httpexceptions``. See https://github.com/Pylons/pyramid/pull/1372/files +- Make it simple to define notfound and forbidden views that wish to use + the default exception-response view but with altered predicates and other + configuration options. The ``view`` argument is now optional in + ``config.add_notfound_view`` and ``config.add_forbidden_view``.. + See https://github.com/Pylons/pyramid/issues/494 + +- Greatly improve the readability of the ``pcreate`` shell script output. + See https://github.com/Pylons/pyramid/pull/1453 + Bug Fixes --------- @@ -55,6 +67,12 @@ Bug Fixes add another callback to the list. See https://github.com/Pylons/pyramid/pull/1373 +- Fix a failing unittest caused by differing mimetypes across various OSs. + See https://github.com/Pylons/pyramid/issues/1405 + +- Fix route generation for static view asset specifications having no path. + See https://github.com/Pylons/pyramid/pull/1377 + Deprecations ------------ |
