Static::Simple 0.10, replaced slurp for 5.5+, removed Apache feature, added tt2 ignor...
[catagits/Catalyst-Plugin-Static-Simple.git] / Changes
1 Revision history for Perl extension Catalyst::Plugin::Static::Simple
2
3 0.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
13 0.09    2005-10-07 13:40:00
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
19         - include_path is no longer experimental.
20         - Added support for hiding log output, depends on Cat 5.50. 
21           (Marcus Ramberg)
22
23 0.08    2005-09-07 18:50:00
24         - Added tests for everything except Apache support.
25
26 0.07    2005-09-05 21:05:00
27         - POD fixes. (Thomas L. Shinnick)
28
29 0.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
35 0.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
45 0.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
52 0.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
58 0.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
63 0.01    2005-08-11 22:00:00
64         - Initial release.