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