Static::Simple, better detection of SubRequest version
[catagits/Catalyst-Plugin-Static-Simple.git] / Changes
CommitLineData
d6d29b9b 1Revision history for Perl extension Catalyst::Plugin::Static::Simple
2
2cb3d585 30.10
4 - Added tt2 to the list of ignored extensions.
5 - For Catalyst 5.5+, replaced File::Slurp with a buffered read/write
6 process. This will improve memory usage and performance on larger
7 static files.
8 - Removed Apache integration feature. It is slower than serving
9 through Catalyst and as far as I know no one is using it. If you
10 need the best performance, use a separate Location block for static
11 content.
12
df701614 130.09 2005-10-07 13:40:00
8cc672a2 14 - Added new configuration options to improve security:
15 ignore_extensions - keep certain extensions from being static
16 - This option defaults to tt, html, and xhtml to prevent
17 template files from being accessible.
18 ignore_dirs - keep certain dirs from being static
fa43d6b5 19 - include_path is no longer experimental.
8cc672a2 20 - Added support for hiding log output, depends on Cat 5.50.
21 (Marcus Ramberg)
2de14076 22
e37ad815 230.08 2005-09-07 18:50:00
24 - Added tests for everything except Apache support.
2268e329 25
260.07 2005-09-05 21:05:00
27 - POD fixes. (Thomas L. Shinnick)
28
b1d96e3e 290.06 2005-09-05 15:40:00
30 - Moved initial file check into prepare_action so processing can
31 bypass other plugins.
32 - Added error-checking to static dir regexes.
33 - Cleaned up various code as per Best Practices.
34
d6d29b9b 350.05 2005-08-26 12:00:00
36 - Added use_apache option to enable the Apache DECLINED
37 support. Default is disabled as it appears Catalyst is
38 faster at serving the files!
39 - Added a check that Apache's DocumentRoot matches Catalyst's
40 root before serving DECLINED.
41 - Preload MIME::Types index during setup() so it's not built on
42 the first request.
43 - Added a note on performance of Apache vs. Catalyst.
44
450.04 2005-08-22 12:00:00
46 - Fixed bug where static files were searched for on every request
47 even without a file extension.
48 - Fixed bug where files without extensions in defined static dirs
49 were not served with text/plain.
50 - Consolidated the debug log messages.
51
520.03 2005-08-21 23:50:00
53 - Added config option for include_path to allow for multiple
54 directories with static files. This option should be
55 considered experimental!
56 - Documentation cleanups.
57
580.02 2005-08-16 18:00:00
59 - Return DECLINED when running under mod_perl to allow Apache to
60 serve the static file. This is not done when any custom MIME
61 types have been specified, however.
62
630.01 2005-08-11 22:00:00
64 - Initial release.