Static::Simple 0.09, ignore common template file extensions, ignore_extensions/ignore...
[catagits/Catalyst-Plugin-Static-Simple.git] / Changes
1 Revision history for Perl extension Catalyst::Plugin::Static::Simple
2
3 0.09
4         - Added new configuration options to improve security:
5           ignore_extensions - keep certain extensions from being static
6           - This option defaults to tt, html, and xhtml to prevent
7             template files from being accessible.
8           ignore_dirs - keep certain dirs from being static
9         - include_path is no longer experimental.
10         - Added support for hiding log output, depends on Cat 5.50. 
11           (Marcus Ramberg)
12
13 0.08    2005-09-07 18:50:00
14         - Added tests for everything except Apache support.
15
16 0.07    2005-09-05 21:05:00
17         - POD fixes. (Thomas L. Shinnick)
18
19 0.06    2005-09-05 15:40:00
20         - Moved initial file check into prepare_action so processing can
21           bypass other plugins.
22         - Added error-checking to static dir regexes.
23         - Cleaned up various code as per Best Practices.
24
25 0.05    2005-08-26 12:00:00
26         - Added use_apache option to enable the Apache DECLINED
27           support.  Default is disabled as it appears Catalyst is
28           faster at serving the files!
29         - Added a check that Apache's DocumentRoot matches Catalyst's
30           root before serving DECLINED.
31         - Preload MIME::Types index during setup() so it's not built on
32           the first request.
33         - Added a note on performance of Apache vs. Catalyst.
34
35 0.04    2005-08-22 12:00:00
36         - Fixed bug where static files were searched for on every request
37           even without a file extension.
38         - Fixed bug where files without extensions in defined static dirs
39           were not served with text/plain.
40         - Consolidated the debug log messages.
41
42 0.03    2005-08-21 23:50:00
43         - Added config option for include_path to allow for multiple 
44           directories with static files.  This option should be
45           considered experimental!
46         - Documentation cleanups.
47
48 0.02    2005-08-16 18:00:00
49         - Return DECLINED when running under mod_perl to allow Apache to
50           serve the static file.  This is not done when any custom MIME
51           types have been specified, however.
52
53 0.01    2005-08-11 22:00:00
54         - Initial release.