summaryrefslogtreecommitdiff
path: root/CHANGES.txt
diff options
context:
space:
mode:
authorMichael Merickel <michael@merickel.org>2014-10-20 18:06:53 -0500
committerMichael Merickel <michael@merickel.org>2014-10-20 18:06:53 -0500
commitab2a77274584700fbcd508d294ff39cb81a99cfd (patch)
tree7471c05f72996811b67e91c05b7b76cc943d57d1 /CHANGES.txt
parent282b0fe8c7f0a5e0fa118c222966712ef2f23bcf (diff)
downloadpyramid-ab2a77274584700fbcd508d294ff39cb81a99cfd.tar.gz
pyramid-ab2a77274584700fbcd508d294ff39cb81a99cfd.tar.bz2
pyramid-ab2a77274584700fbcd508d294ff39cb81a99cfd.zip
reference more pull requests in the change log
Diffstat (limited to 'CHANGES.txt')
-rw-r--r--CHANGES.txt8
1 files changed, 6 insertions, 2 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index 63987d980..38c348e67 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -6,22 +6,26 @@ Features
- Cache busting for static resources has been added and is available via a new
argument to ``pyramid.config.Configurator.add_static_view``: ``cachebust``.
+ See https://github.com/Pylons/pyramid/pull/1380
Bug Fixes
---------
- ``pyramid.wsgi.wsgiapp`` and ``pyramid.wsgi.wsgiapp2`` now raise
``ValueError`` when accidentally passed ``None``.
+ See https://github.com/Pylons/pyramid/pull/1320
- Fix an issue whereby predicates would be resolved as maybe_dotted in the
introspectable but not when passed for registration. This would mean that
- add_route_predicate for example can not take a string and turn it into the
- actual callable function.
+ ``add_route_predicate`` for example can not take a string and turn it into
+ the actual callable function.
+ See https://github.com/Pylons/pyramid/pull/1306
- Fix ``pyramid.testing.setUp`` to return a ``Configurator`` with a proper
package. Previously it was not possible to do package-relative includes
using the returned ``Configurator`` during testing. There is now a
``package`` argument that can override this behavior as well.
+ See https://github.com/Pylons/pyramid/pull/1322
- Fix an issue where a ``pyramid.response.FileResponse`` may apply a charset
where it does not belong. See https://github.com/Pylons/pyramid/pull/1251