Added filename to debug output for uploaded files
[catagits/Catalyst-Runtime.git] / Changes
1 Tis file documents the revision history for Perl extension Catalyst.
2
3 5.50
4         - Added filename to debug output for uploaded files.
5         - Fixed forwarding with embedded arguments.
6         - Fixed handling of escaped query strings.
7         - Added upload parameters back into $c->req->params.
8         - Added multiple paths support to dispatcher
9         - Fixed bug in req->path where changing the path added a trailing
10           slash.
11         - Removed req->handle and res->handle
12         - Added prepare_body_chunk method as a hook for upload progress.
13         - Fixed bug in uri_for method when base has no path.
14
15 5.49_01 2005-10-10 10:15:00 
16         - Refactored all internals, should be 99% compatible to previous
17           versions.
18         - *IMPORTANT* The Apache engines have been moved to a separate package
19           for this release.  Please install Catalyst::Engine::Apache if you
20           need Apache support.
21
22         - Added support for calling forward with arguments in the path, i.e.
23           $c->forward('/foo/bar/arg1/arg2')
24         - Made $c->req->uri a URI object, added req->path_info for CGI compat.
25           Raw query string is available as $c->req->uri->query.
26         - Made $c->req->base a URI object.
27         - Parameters with multiple values (?a=1&a=2) now display properly
28           in the debug output.
29         - Semi-colon separators in query strings now work properly.
30         - Expanded documentation of catalyst.pl (Andrew Ford)
31         - Added support for running as a backend server behind a frontend
32           proxy so req->base and req->address are set properly.
33         - Added an 'abort' method to the Log api, so that you can
34           kill loggging for a whole request.
35         - Added $c->uri_for method to simplify url handling.
36         - Added more tests and reorganized the t directory.
37         - Reimplemented core engines, all are now CGI based for better test
38           coverage and maintainability.
39         - Added fork support to built in test server.
40         - Fixed all memory leaks.
41         - Thread-related bug fixes and tests.  We now believe the Catalyst
42           core to be thread-safe.
43         - Added streaming IO support through $c->req->read() and
44           $c->res->write()
45         - Added MyApp->config->{parse_on_demand} (streaming input)
46         - Added $c->req->handle and $c->res->handle
47         - Improved documentation
48
49 5.34  (not released)
50         - Fixed mkpath in Catalyst::Helper (Autrijus Tang)
51         - added $c->req->full_uri method (Jesse Sheidlower)
52         - Fixed bug in dispatcher where an invalid path could call a valid
53           action. (Andy Grundman)
54         - Fixed Helper so it works with CRLF line-endings. (Andy Grundman)
55
56 5.33  2005-08-10 15:25:00
57         - Now with updated manifest.
58
59 5.32  2005-08-10 15:10:00
60         - Dispatcher might fail if object returns false. (Florian Ragwitz)
61
62 5.31  2005-06-04 12:35:00 (never released to CPAN)
63
64         - helpers now create .new files where files already exist and differ
65         - fixed $Data::Dumper::Terse (Robin Berjon)
66         - added arguments for detach
67         - new credits section in pod
68         - fixed detach to allow relative action names (Matt and Robert)
69         - added the ability to have whitespaces in Path( '' ) and Regex( '' )
70
71 5.30  2005-06-04 12:35:00
72
73         - Fixed a bug where it was not possible to $c->forward to a 
74           component 
75           that was not inheriting from Catalyst::Base.
76         - Fix for inheritance bug.
77         - Allow forward with arguments.
78         - Updated cookbook
79         - Allow overriding home/root in config.
80         - make module build cons README automatically.
81         - prettify home path by resolving '..' (Andy Grundman)
82         - improved helper templates a bit, new naming scheme for tests.
83         - added support for case sensitivity, MyApp->config->{case_sensitive}
84         - added $c->detach for non-returning forwards
85         - added unified error handling, Catalyst::Exception
86         - added section on param handling in Intro.pod
87         - added $c->request->cookie
88         - added Catalyst::Setup
89         - refactored Catalyst::import()
90         - improved rendering of error messages in debug mode
91         - fixed a bug in Catalyst::Helper::mk_dir
92         - further doc changes, esp. to Intro.pod
93
94 5.23  2005-06-03 02:30:00
95         - added support for non Catalyst::Base components to live in namespace
96         - improved concurrency connections in Catalyst::Engine::HTTP::Daemon
97
98 5.22  2005-05-26 14:24:00
99         - improved base locating in MP engines
100         - improved error messages in C::E::HTTP::Daemon
101         - hostnames are now resolved on demand unless provided by engine
102         - fixed memory leak in $c->execute (Michael Reece, Matt S Trout)
103
104 5.21  2005-05-24 14:56:00
105         - fixed a bug in https detection
106         - fixed auto chain finally
107         - added MYAPP_HOME and CATALYST_HOME environment variables
108
109 5.20  2005-05-18 19:52:00
110         - improved uploads and parameters
111         - added $c->req->protocol and $c->req->secure
112         - added $c->req->user and $c->req->uri
113         - improved error message when forwarding to unknown module
114         - fixed win32 installer
115         - added deep recursion detection
116         - fixed auto actions
117         - fixed inheritance in dispatcher
118         - allow whitespaces between brackets and quoted string
119           in Path and Regex attributes
120         - new helper templates
121         - installer now supports install_base and destdir
122         - allow multiple Catalyst apps to run on the same mod_perl
123           instance (not the same app!)
124         - fixed MP2 engines
125         - removed apreq dependency from all MP engines
126         - added support for MP registry scripts
127         - added support for LocationMatch and ScriptAliasMatch in MP engines
128         - added SpeedyCGI engine
129
130 5.10  2005-04-23 11:16:00
131         - updated dependencies to require latest module::pluggable::fast
132         - new installer for templates and stuff using Module::Build
133         - scripts are now prefixed, for being installable
134         IMPORTANT: You have to regenerate the script directory,
135         remove Makefile.PL and add Build.PL
136         - Added compat to install Module::Build if required.
137         - Improved: Params handling with MP engines
138         - Fixed: Params handling on POST with CGI engine (Andy Grundman)
139         - Fixed: Helper.pm on Win32 (Matt S Trout)
140
141 5.03  2005-04-19 20:35:00 (Revision 462)
142         - fixed Test example (Torsten Seeman)
143         - added Plugins chapter to manual
144         - applied doc patch from Robert Boone <robert@rlb3.com>
145         - improved Dispatcher error messages.
146         - refactored so we don't need to include helper from
147           Catalyst.pm - Fixes issues with FindBin
148         - applied HTTP.pm patch from Andy Grundman <andy@hybridized.org>
149         - added plugin() method for instant plugins
150         - FCGI is no more considered experimental
151
152 5.02  2005-04-18 10:00:00 
153         - fixed manifest
154
155 5.01  2005-04-17 23:00:00 
156         - some documentation bugs fixed
157         - added Catalyst::Utils
158         - fixed regexp bug (Matt S Trout)
159         - fixed upload bug with MP19
160         - added $c->req->body
161         - aliased $c->res->output to $c->res->body
162         - Read AUTHOR from passwd or $ENV{AUTHOR} when 
163           generating code.
164         - extended attribute handling
165         - added global config for components
166
167 5.00  2005-04-15 18:00:00
168         - new core to support inheritance trees
169         - new syntax for action declaration
170         - new helper system using TT2
171         - problems with mod_perl2 fixed
172         - added Test::Pod support
173         - added new server backend with HTTP/1.1 support
174         - added option to run tests against a remote server
175         - renamed errors() to error()
176         - more better docs
177         - countless minor improvements
178           IMPORTANT: This release is very incompatible to previous ones
179           and you have to regenerate the helper scripts again...
180
181 4.34  2005-03-23 07:00:00 2005
182         - added some messages to Makefile.PL
183         - added Catalyst::Engine::Test
184         - added Catalyst::Engine::CGI::NPH
185         - simplified Catalyst::Log to be easier to implement/subclass
186         - added cgi.pl
187         - updated Catalyst::Test to use Catalyst::Engine::Test
188         - updated helper scripts
189           IMPORTANT: this will be the last time you'll have to regenerate
190           the script directory. We promise!
191
192 4.33  2005-03-23 01:00:00 2005
193         - documented the log() accessor method in Catalyst (Andrew Ford)
194         - added optional arguments to Catalyst::Log methods (Andrew Ford)
195         - removed cgi-server.pl
196         - added fcgi.pl and Catalyst::Engine::FCGI
197         - fixed an undef durng make test (Dan Sully)
198         - new path test (Christian Hansen)
199           IMPORTANT: you have to regenerate the script directory again
200
201 4.32  2005-03-22 02:10:00 2005
202         - made a damn typo *AAAAAAAAAAAAAAHHHH!!!*
203
204 4.31  2005-03-22 02:00:00
205         - fixed inheritance (Christian Hansen)
206         - previous release was borked!
207           fixed that, but you have to regenerate the scripts again :(
208
209 4.30  2005-03-21 23:00:00 
210         - more documentation (Andrew Ford)
211         - added connection informations (Christian Hansen)
212         - HTTP::Request support in Catalyst::Test (Christian Hansen)
213         - moved cgi.pl to nph-cgi.pl
214         - added Catalyst::Engine::Server (Christian Hansen)
215         - removed Catalyst::Test::server
216         - updated helper scripts
217           IMPORTANT: note that you have to regenerate script/server.pl,
218           script/cgi-server.pl and script/cgi.pl (now nph-cgi.pl)
219
220 4.28  2005-03-19 22:00:00
221         - fixed isa tree (Christian Hansen)
222         - added script/cgi-server.pl, so no more server restarting after
223           code changes
224         - reworked documentation (Andrew Ford <A.Ford@ford-mason.co.uk>)
225
226 4.27  2005-03-19 01:00:00
227         - debug message for parameters
228         - Fix redirects (Christian Hansen <ch@ngmedia.com>)
229         - some random fixes
230         - new helper api for Catalyst::Helper::* support
231           you have to update script/create.pl to use it
232
233 4.26  2005-03-16 10:00:00
234         - fixed the weird bug that caused regex actions to fail on every
235           second request
236         - more debug messages
237         - 100% pod coverage.
238
239 4.25  2005-03-12 18:00:00
240         - correct perl pathes for helper generated scripts (Tatsuhiko Miyagawa)
241         - improved cgi engine docs (Christoper Hicks)
242
243 4.24  2005-03-12 01:00:00
244         - updated cookbook example  
245         - fixed base for apache and https (Andrew Ruthven)
246         
247 4.23  2005-03-09 20:00:00
248         - no more regex actions in forward
249         - added support for test directories t/m, t/v and t/c
250
251 4.22  2005-03-08 20:00:00
252         - catch errors in application class
253         - handle die properly.
254
255 4.21  2005-03-05 17:00:00
256         - fixed docs
257
258 4.20  2005-03-04 22:00:00
259         - moved bin to script
260
261 4.13  2005-03-03 11:00:00
262         - improved documentation
263         - pod coverage test for helper generated apps
264         - new helper api
265
266 4.12  2005-03-02 11:00:00 2005
267         - server_base sucks, removed
268         - added $c->log->dump()
269
270 4.11  2005-03-02 11:00:00 2005
271         - removed some warnings
272         - improved docs
273         - private prefixed actions override private non prefixed actions
274         - added server_base
275         - updated Catalyst::Manual::Intro
276
277 4.10  2005-03-02 10:00:00 2005
278         - improved documentation
279         - fixed upload bug
280         - fixed prefixed private actions bug
281         - fixed more little bugs
282
283 4.01  2005-03-01 10:00:00 2005
284         - improved documentation
285         - documentation fixes (Johan Lindstrom)
286
287 4.00  2005-02-27 22:00:00
288         - more verbose debug messages, especially for forward()
289         - implemented prefixed prvate actions, icluding built in
290           !?default, !?begin and !?end
291         - new Catalyst::Manual::Intro
292         - new helpers, bin/catalyst
293         - helper api
294
295 3.11  2005-02-23 21:00:00
296         - added dependency to UNIVERSAL::require (Marcus Ramberg)
297         - added a little workaround for a warning in Catalyst::Test
298           (Marcus Ramberg)
299         - improved documentation for actions
300
301 3.10  2005-02-19 20:00:00
302         - removed roles management from Catalyst::Engine
303           and added it to Catalyst::Plugin::Authentication::CDBI
304
305 3.04  2005-02-17 21:00:00 
306         - error reporting for app class
307         - no more engine debug messages
308         - class->method forwards get resolved now
309
310 3.03  2005-02-16 23:00:00 
311         - friendlier statistics
312
313 3.02  2005-02-16 22:00:00
314         - fixed unintialized actions (Marcus Ramberg)
315
316 3.01  2005-02-16 20:30:00
317         - better statistics
318
319 3.00  2005-02-16 20:00:00
320         - real version number for CPAN.pm
321         - fixed redirect in CGI engine
322         - more statistics in debug logs
323         - ? prefix for forward()
324
325 2.99_15  2005-02-02 22:00:00
326         - support for short namespaces, MyApp::M, MyApp::V and MyApp::C
327         - Replaced "Catched" with "Caught" in Catalyst::Engine
328           (Gary Ashton Jones)
329         - replaced _ with ! for private actions
330         - added ? for prefixed actions
331         - misc improvememts
332
333 2.99_14  2005-01-31 22:00:00 2005
334         - arguments for _default
335         - $c->entrance removed for more flexibility
336         - added $c->req->method
337
338 2.99_13  2005-01-30 18:00:00 2005
339         - POD fixes and improvements
340
341 2.99_12  2005-01-28 22:00:00 2005
342         - first development release