5c402333f0ab8e625df64d373dcaba9a63b34a4c
[catagits/Catalyst-Plugin-Static-Simple.git] / Changes
1 Revision history for Perl extension Catalyst::Plugin::Static::Simple
2
3         - Updated docs to reflect config key change from 'static' to
4           'Plugin::Static::Simple' (RT#77709)
5         - Migrated repository from subversion to git
6
7 0.30   2012-05-04 17:05:00
8         - Add Cache-Control:public header
9         - Optionally provide Expires header
10         - Change configuration key to 'Plugin::Static::Simple' by default.
11           The old 'static' key is still supported, but issues a warning.
12
13 0.29   2010-02-01 18:45:00
14         - Switch from override to around, because really, wtf
15
16 0.28   2010-01-04 13:15:00
17         - Fix issues in debug mode. (RT#53338)
18
19 0.27   2010-01-03 14:49:00
20         - Switch to being a Moose role, removing dependencies on
21           Class::Data::Inheritable and Class::Accessor (Andrey Kostenko in
22           RT#51089)
23         - Make Pod tests mandatory for authors but never run otherwise
24         - Switch to Test::NoTabs to ensure no tabs, rather than
25           Test::Perl::Critic
26
27 0.26   2009-12-06 12:30:00
28         - Fix Pod to show less nasty method of assigning config by calling
29           the config method with parameters, rather than poking around inside
30           the hash.
31         - Require newer (>= 0.15) Catalyst::Plugin::SubRequest for subrequest
32           tests as old versions don't work with new Catalyst (>= 5.80014)
33
34 0.25   2009-10-22 21:40:00 BST
35         - Fix bug where old unrelated $@ values would result in an error.
36
37 0.24   2009-10-18 19:10:00 BST
38         - Fixup copyright information
39
40 0.23   2009-10-06 17:40:39
41         - Move actions out of TestApp into a Root controller as
42           this is now deprecated.
43
44 0.22    2009-08-21 18:14:59
45         - Add tests for delivering empty files.
46         - Fix those tests by depending on Catalyst-Runtime 5.80008.
47         - Throw away compatibility code for older catalyst versions.
48         - Fix docs to not include plugins in call to ->setup() (t0m)
49
50 0.21    2009-03-29 20:31:49
51                 - Documentation improvements (jester)
52         - Change from NEXT to MRO::Compat - RT#40628, RT#44553 (ilmari)
53         - Bump prereq to MIME::Types to 1.25 to correctly send files
54           commonly used to graft support for transparent PNGs into
55           MSIE6 - RT#41314 (Florian Ragwitz)
56
57 0.20    2007-09-24 10:00:00
58         - Fixed issue where the static dir regex did not add a trailing
59           slash so URLs such as /static1 were served as static when they
60           should be handled by Catalyst. (Will Hawes)
61         - Added text/html Content-Type to 404 responses. (Will Hawes)
62
63 0.19    2007-07-02 17:00:00
64         - Fixed test failure on some systems in 11serve_static.t due to
65           multiple MIME types defined for the extension '.pm'.
66
67 0.18    2007-07-01 00:15:00
68         - Logging may now be enabled with the less confusing
69           MyApp->config->{static}->{logging} = 1;
70
71 0.17    2007-05-11 11:00:00
72         - Added serve_static_file, to serve a given file as static. (groditi)
73
74 0.16    2007-04-30 15:00:00
75         - Allow all files in directories defined by the config option 'dirs'
76           to be served as static even if the file matches ignore_dirs or
77           ignore_extensions.
78         - Fixed bug where 204 or 304 status codes would result in a 500 error
79           under mod_perl.
80         - Switch to Module::Install.
81
82 0.15    2006-12-08 22:30:00
83         - Quote metacharacters used in $c->config->{dirs} (Vlad Dan Dascalescu)
84         - store Mime::Types object in config hash instead of as classdata
85         - cleanup code a bit
86
87 0.14    2006-03-24 11:15:00
88         - Unescape the URI path before looking for the file.  This fixes
89           issues with files that have spaces.
90
91 0.13    2005-12-15 10:00:00
92         - Fixed bug in ignore_dirs under win32.
93         - Doc rewriting
94
95 0.12    (released only with Catalyst)
96         - Made prepare_action play nice with other plugins by not short-
97           circuiting.
98         - Added tmpl to the ignored extensions.
99         - Fixed security problem if req->path contained '..'.
100
101 0.11    2005-11-13 16:25:00
102         - Removed the code that set the 304 Not Modified header.  This caused
103           problems with IE under Apache.
104         - Changed 5.50 writing method to pass an IO::File object directly to
105           $c->res->body.
106         - This version is included with Catalyst 5.50.
107
108 0.10    2005-10-19 17:20:00
109         - Added tt2 to the list of ignored extensions.
110         - For Catalyst 5.5+, replaced File::Slurp with a buffered read/write
111           process.  This will improve memory usage and performance on larger
112           static files.
113         - Removed Apache integration feature.  It is slower than serving
114           through Catalyst and as far as I know no one is using it.  If you
115           need the best performance, use a separate Location block for static
116           content.
117
118 0.09    2005-10-07 13:40:00
119         - Added new configuration options to improve security:
120           ignore_extensions - keep certain extensions from being static
121           - This option defaults to tt, html, and xhtml to prevent
122             template files from being accessible.
123           ignore_dirs - keep certain dirs from being static
124         - include_path is no longer experimental.
125         - Added support for hiding log output, depends on Cat 5.50. 
126           (Marcus Ramberg)
127
128 0.08    2005-09-07 18:50:00
129         - Added tests for everything except Apache support.
130
131 0.07    2005-09-05 21:05:00
132         - POD fixes. (Thomas L. Shinnick)
133
134 0.06    2005-09-05 15:40:00
135         - Moved initial file check into prepare_action so processing can
136           bypass other plugins.
137         - Added error-checking to static dir regexes.
138         - Cleaned up various code as per Best Practices.
139
140 0.05    2005-08-26 12:00:00
141         - Added use_apache option to enable the Apache DECLINED
142           support.  Default is disabled as it appears Catalyst is
143           faster at serving the files!
144         - Added a check that Apache's DocumentRoot matches Catalyst's
145           root before serving DECLINED.
146         - Preload MIME::Types index during setup() so it's not built on
147           the first request.
148         - Added a note on performance of Apache vs. Catalyst.
149
150 0.04    2005-08-22 12:00:00
151         - Fixed bug where static files were searched for on every request
152           even without a file extension.
153         - Fixed bug where files without extensions in defined static dirs
154           were not served with text/plain.
155         - Consolidated the debug log messages.
156
157 0.03    2005-08-21 23:50:00
158         - Added config option for include_path to allow for multiple 
159           directories with static files.  This option should be
160           considered experimental!
161         - Documentation cleanups.
162
163 0.02    2005-08-16 18:00:00
164         - Return DECLINED when running under mod_perl to allow Apache to
165           serve the static file.  This is not done when any custom MIME
166           types have been specified, however.
167
168 0.01    2005-08-11 22:00:00
169         - Initial release.