summaryrefslogtreecommitdiff
path: root/CHANGES.txt
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2011-09-06 21:19:08 -0400
committerChris McDonough <chrism@plope.com>2011-09-06 21:19:08 -0400
commitdc98227171b49237d5236a2fbac0889b7cc07da4 (patch)
tree5c6b31626b17b464c04b21bfb904bd2730100218 /CHANGES.txt
parentf506adb6a9c5e4dd867c92cc9ae1edb558ec131d (diff)
parent315f755fd8c04e90d01c14a97afae8778cf45f05 (diff)
downloadpyramid-dc98227171b49237d5236a2fbac0889b7cc07da4.tar.gz
pyramid-dc98227171b49237d5236a2fbac0889b7cc07da4.tar.bz2
pyramid-dc98227171b49237d5236a2fbac0889b7cc07da4.zip
Merge branch 'feature.staticfilegeddon'
Diffstat (limited to 'CHANGES.txt')
-rw-r--r--CHANGES.txt14
1 files changed, 14 insertions, 0 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index ab02749d2..a4f3a4a43 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -10,6 +10,20 @@ Internal
- Fixed test suite; on some systems tests would fail due to indeterminate
test run ordering and a double-push-single-pop of a shared test variable.
+- Replaced use of ``paste.urlparser.StaticURLParser`` with a derivative of Chris Rossi's "happy" static file serving code.
+
+Behavior Differences
+--------------------
+
+- An ETag header is no longer set when serving a static file. A
+ Last-Modified header is set instead.
+
+- Static file serving no longer supports the ``wsgi.file_wrapper`` extension.
+
+- Instead of returning a ``403 Forbidden`` error when a static file is served
+ that cannot be accessed by the Pyramid process' user due to file
+ permissions, an IOError (or similar) will be raised.
+
1.2a5 (2011-09-04)
==================