Static::Simple 0.15, fixed issue where dirs config option did not quote metachars
[catagits/Catalyst-Plugin-Static-Simple.git] / Changes
1 Revision history for Perl extension Catalyst::Plugin::Static::Simple
2
3 0.15    2006-12-08 22:30:00
4         - Quote metacharacters used in $c->config->{dirs} (Vlad Dan Dascalescu)
5         - store Mime::Types object in config hash instead of as classdata
6         - cleanup code a bit
7
8 0.14    2006-03-24 11:15:00
9         - Unescape the URI path before looking for the file.  This fixes
10                   issues with files that have spaces.
11
12 0.13    2005-12-15 10:00:00
13         - Fixed bug in ignore_dirs under win32.
14         - Doc rewriting
15
16 0.12    (released only with Catalyst)
17         - Made prepare_action play nice with other plugins by not short-
18           circuiting.
19         - Added tmpl to the ignored extensions.
20         - Fixed security problem if req->path contained '..'.
21
22 0.11    2005-11-13 16:25:00
23         - Removed the code that set the 304 Not Modified header.  This caused
24           problems with IE under Apache.
25         - Changed 5.50 writing method to pass an IO::File object directly to
26           $c->res->body.
27         - This version is included with Catalyst 5.50.
28
29 0.10    2005-10-19 17:20:00
30         - Added tt2 to the list of ignored extensions.
31         - For Catalyst 5.5+, replaced File::Slurp with a buffered read/write
32           process.  This will improve memory usage and performance on larger
33           static files.
34         - Removed Apache integration feature.  It is slower than serving
35           through Catalyst and as far as I know no one is using it.  If you
36           need the best performance, use a separate Location block for static
37           content.
38
39 0.09    2005-10-07 13:40:00
40         - Added new configuration options to improve security:
41           ignore_extensions - keep certain extensions from being static
42           - This option defaults to tt, html, and xhtml to prevent
43             template files from being accessible.
44           ignore_dirs - keep certain dirs from being static
45         - include_path is no longer experimental.
46         - Added support for hiding log output, depends on Cat 5.50. 
47           (Marcus Ramberg)
48
49 0.08    2005-09-07 18:50:00
50         - Added tests for everything except Apache support.
51
52 0.07    2005-09-05 21:05:00
53         - POD fixes. (Thomas L. Shinnick)
54
55 0.06    2005-09-05 15:40:00
56         - Moved initial file check into prepare_action so processing can
57           bypass other plugins.
58         - Added error-checking to static dir regexes.
59         - Cleaned up various code as per Best Practices.
60
61 0.05    2005-08-26 12:00:00
62         - Added use_apache option to enable the Apache DECLINED
63           support.  Default is disabled as it appears Catalyst is
64           faster at serving the files!
65         - Added a check that Apache's DocumentRoot matches Catalyst's
66           root before serving DECLINED.
67         - Preload MIME::Types index during setup() so it's not built on
68           the first request.
69         - Added a note on performance of Apache vs. Catalyst.
70
71 0.04    2005-08-22 12:00:00
72         - Fixed bug where static files were searched for on every request
73           even without a file extension.
74         - Fixed bug where files without extensions in defined static dirs
75           were not served with text/plain.
76         - Consolidated the debug log messages.
77
78 0.03    2005-08-21 23:50:00
79         - Added config option for include_path to allow for multiple 
80           directories with static files.  This option should be
81           considered experimental!
82         - Documentation cleanups.
83
84 0.02    2005-08-16 18:00:00
85         - Return DECLINED when running under mod_perl to allow Apache to
86           serve the static file.  This is not done when any custom MIME
87           types have been specified, however.
88
89 0.01    2005-08-11 22:00:00
90         - Initial release.