Fix for Catalyst::Action::REST
[catagits/Catalyst-Runtime.git] / Changes
1 # This file documents the revision history for Perl extension Catalyst.
2
3 5.8000_04
4         - Add MooseX::Emulate::Class::Accessor::Fast to Catalyst::Request,
5           needed by Catalyst::Request::REST (t0m)
6           - Test for this (t0m)
7         - Make hostname resolution lazy (Marc Mims)
8         - Support mocking virtualhosts in test suite (Jason Gottshall)
9         - Add README (marcus)
10         - Fix TODO list (t0m)
11         - Use Class::C3::Adopt::NEXT (rafl)
12         - Ignore C3 warnings on 5.10 when testing ensure_class_loaded (rafl)
13         - Add TODO test for chained bug (gbjk)
14         - Fix list address in documentation (zarquon)
15         - Fix ACCEPT_CONTEXT on MyApp, called as a class method (marcus)
16            - Test for this (marcus)
17         - Bump MX::Emulate::CAF version requirement to get more back
18           compatibility (t0m)
19         - Improve documentation for $req->captures (caelum)
20         - Fix a bug in Catalyst::Stats, stopping garbage being inserted into
21           the stats if a user calls begin => but no end => (jhannah)
22            - Test for this (jhannah)
23         - Trim lines sooner in stats to avoid ugly Text::SimpleTable wrapping
24           (jhannah)
25         - Change Catalyst::ClassData to tweak the symbol table inline for
26           performance after profiling (mst)
27         - Fix POD typo in finalize_error (jhannah)
28         - Add tests to ensure that we delete the temp files created by 
29           HTTP::Body's OctetStream parser (t0m)
30
31 5.8000_03 2008-10-14 14:13:00
32         - Fix forwarding to Catalyst::Action objects (Rafael Kitover).
33         - Fix links to the mailing lists (RT #39754 and Florian Ragwitz).
34         - Use Class::MOP instead of Class::Inspector (Florian Ragwitz).
35         - Change Catalyst::Test to use Sub::Exporter (Florian Ragwitz).
36         - Fixed typo in Engine::HTTP::Restarter::Watcher causing -r to complain.
37
38 5.8000_02 2008-10-14 07:59:00
39        - Fix manifest
40
41 5.8000_01 2008-10-13 22:52:00
42         - Port to Moose
43         - Added test for action stringify
44         - Added test for component instances getting $self->{value} from config.
45         - Add Catalyst::Response->print() method (ilmari)
46         - Optionally aggregate tests using Test::Aggregate (Florian Ragwitz).
47         - Additional docs for uri_for to mention how to use $c->action and 
48           $c->req->captures (jhannah)
49         - List unattached chained actions in Debug mode (Florian Ragwitz).
50         - Pod formatting fix for Engine::FastCGI (Oleg Kostyuk).
51         - Add visit, a returning ->go
52
53 5.7XXXXXX XXXX
54         - Workaround change in LWP that broke a cookie test (RT #40037)
55         - Back out go() since that feature's been pushed to 5.80
56         - Fix some Win32 test failures
57         - Add pt translation of error message (wreis)
58         - Make :Chained('../action') work (Florian Ragwitz)
59         - Add test actions
60         - Chained doc improvements (rev 8326-8328)
61
62 5.7099_03 2008-07-20 10:10:00
63         - Fix regressions for regexp fallback in model(), view() and controller()
64         - Added the supplied argument to the regexp fallback warning for easier
65           debugging
66         - Ensure ACCEPT_CONTEXT is called for results from component()
67
68 5.7099_02 2008-07-16 19:10:00
69         - Added PathPrefix attribute
70         - Removed Catalyst::Build; we've long since moved to Module::Install
71         - Updated Catalyst::Test docs to mention the use of HTTP::Request
72           objects (Rafael Kitover)
73
74 5.7099_01 2008-06-25 22:36:00
75         - Refactored component resolution (component(), models(), model(), et al). We now
76           throw warnings for two reasons:
77           1) model() or view() was called with no arguments, and two results are returned
78              -- set default_(model|view), current_(model|view) or current_(model|view)_instance
79              instead
80           2) you call a component resolution method with a string, and it resorts to a regexp 
81              fallback wherein a result is returned -- if you really want to search, call the
82              method with a regex as the argument
83         - remove 0-length query string components so warnings aren't thrown (RT #36428)
84         - Update HTTP::Body dep so that the uploadtmp config value will work (RT #22540)
85         - Fix for LocalRegex when used in the Root controller
86         - Get some of the optional_* tests working from dirs with spaces (RT #26455)
87         - Fix Catalyst::Utils::home() when application .pm is in the current dir (RT #34437)
88         - Added the ability to remove parameters in req->uri_with() by passing in
89           an undef value (RT #34782)
90         - Added $c->go, to do an internal redispatch to another action, while retaining the
91           contents of the stash
92
93 5.7014  2008-05-25 15:26:00
94         - Addition of .conf in restart regex in Catalyst::Engine::HTTP::Restarter::Watcher
95         - Fix regression for relative uri_for arguments after a forward()   
96           introduced in 5.7013 (Peter Karman)  
97         - Fix regression for "sub foo : Path {}" in the root controller which 
98           was introduced when attempting to allow "0" as a Path.
99
100 5.7013  2008-05-16 18:20:00
101         - Provide backwards compatability methods in Catalyst::Stats
102         - Fix subdirs for scripts that run in subdirs more than one level deep.
103         - Added test and updated docs for handling the Authorization header
104           under mod_fastcgi/mod_cgi.
105         - Fixed bug in HTTP engine where the connection was not closed properly if the
106           client disconnected before sending any headers. (Ton Voon)
107         - POD fix, IO::FileHandle => IO::Handle (RT #35690)
108         - Fix grammar on welcome page (RT #33236)
109         - Fix for Path('0') handling (RT #29334)
110         - Workaround for Win32 and c3_mro.t (RT #26452, tested by Kenichi Ishigaki)
111         - Fix for encoding query parameters (edenc)
112         - Fix Chained multiple test (t0m)
113
114 5.7012  2007-12-16 23:44:00
115         - Fix uri_for()'s and uri_with()'s handling of multibyte chars
116           (Daisuke Murase)
117         - Fix __PACKAGE__->config->{foo} = 'bar' case with subclassing
118         - Add Catalyst::Stats (Jon Schutz)
119         - Fixed a bug where ?q=bar=baz is decoded as q=>'bar', not 'bar=baz'.
120           (Tatsuhiko Miyagawa, Masahiro Nagano)
121         - Fixed a bug where -rr (restart regex) command line option could cause
122           shell errors. (Aristotle Pagaltzis, Chisel Wright)
123
124 5.7011  2007-10-18 20:40:00
125         - Allow multiple restart directories and added option to follow
126           symlinks in the HTTP::Restarter engine (Sebastian Willert)
127         - Fixed t/optional_http-server-restart.t so it actually tests
128           if the server restarted or notified of an error (Sebastian Willert)
129         - Return child PID from the HTTP engine when run with the 'background' option.
130           (Emanuele Zeppieri)
131         - Fixed bug in HTTP engine where writes could fail with
132           'Resource temporarily unavailable'.
133         - Fixed bug where %2b in query parameter is doubly decoded to ' ', instead of '+'
134           (RT #30087, Gavin Henry, Tatsuhiko Miyagawa, Oleg Pronin)
135         - Fixed bug where req->base and req->uri would include a port number when running
136           in SSL mode.
137         - Removed unnecessary sprintf in debug mode that caused warnings on locales where
138           commas are used for decimal markers.
139         - Improved error message for case when server picks up editor save
140           files as module names. (James Mastros)
141
142 5.7010  2007-08-22 07:41:00
143         - Resource forks in 5.7009
144
145 5.7009  2007-08-22 00:14:00
146         - Moved Manual.pod to Manual.pm and clarified status of 
147           Catalyst-Manual dist
148         - Doc patches to Catalyst::Controller
149         - remove ignore_loaded from plugin load, commenting why
150         - document the ignore_loaded feature in Catalyst::Utils
151         - Add testing of inline plugins.
152
153 5.7008  2007-08-13 08:40:00
154         - Added $c->request->query_keywords for getting the keywords
155           (a query string with no parameters).
156         - Add undef warning for uri_for.
157         - Fix bug where a nested component would be setup twice.
158         - Make ensure_class_loaded behave better with malformed class name.
159         - Make _register_plugin use ensure_class_loaded.
160         - Remove 'Argument "??" isn't numeric in sprintf' warning.
161           (Emanuele Zeppieri)
162         - Fixed a bug where Content-Length could be set to 0 if a filehandle
163           object in $c->response->body did not report a size.
164         - Fixed issue where development server running in fork mode did not
165           properly exit after a write error.
166           (http://rt.cpan.org/Ticket/Display.html?id=27135)
167         - Remove warning for captures that are undef.
168         - Fixed $c->read and parse_on_demand mode.
169         - Fixed a bug with the HTTP engine where very large response bodies
170           would not be sent properly.
171
172 5.7007  2007-03-13 14:18:00
173         - Many performance improvements by not using URI.pm:
174           * $c->uri_for (approx. 8x faster)
175           * $c->engine->prepare_path (approx. 27x faster)
176           * $c->engine->prepare_query_parameters (approx. 5x faster)
177         - Updated HTTP::Body dependency to 0.9 which fixes the following issues:
178           * Handle when IE sometimes sends an extra CRLF after the POST body.
179           * Empty fields in multipart/form-data POSTs are no longer ignored.
180           * Uploaded files with the name "0" are no longer ignored.
181         - Sending SIGHUP to the dev server will now cause it to restart.
182         - Allow "0" for a path in uri_for.
183         - Performance and stability improvements to the built-in HTTP server.
184         - Don't ignore file uploads if form contains a text field with the same name.
185           (Carl Franks)
186         - Support restart_delay of 0 (for use in the POE engine).
187         - Skip body processing if we don't have a Content-Length header.
188           Results in about a 9% performance increase when handling GET/HEAD
189           requests.
190         - Add a default body to redirect responses.
191         - MyApp->model/view now looks at MyApp->config->{default_view/model}
192           (Bogdan Lucaciu)
193
194 5.7006   2006-11-15 14.18
195         - Updated manifest
196         - Fix Slurp dependency
197         - Updated HTTP::Body dependency to 0.6, 0.5 can break on large POST 
198           requests.
199         - Skip utf8 fix for undef values in uri_with() and uri_for()
200
201 5.7005   2006-11-07 19:37:35
202         - Fixed lighttpd tests to be properly skipped.
203         - Moved IE workarounds to exist only in the HTTP engine.
204         - Added installation instructions (from Catalyst-Manual dist)
205
206 5.7004   2006-11-06 20:48:35
207         - Fix Engine::HTTP crash when using IE. (Jesper Krogh, Peter Edwards)
208         - clean up Catalyst::Utils to handle some edge cases
209         - Properly work around lighttpd PATH_INFO vs. SCRIPT_NAME bug
210           (Mark Blythe)
211         - add _application accessor to Catalyst::Base
212         - Support current_view
213         - Allow use of Catalyst::Test without app name (Ton Voon, Altinity)
214         - Catalyst::Manual moved to its own package
215         - Add option to FastCGI engine to send errors to stdout, not the web server
216         - Use Module::Install's auto_install to install prerequisite modules 
217         - various documentation fixes and improvements
218         
219 5.7003   2006-09-21 16:29:45
220         - Additions and updates to tutorial
221
222 5.7002   2006-09-17 19:35:32
223         - unescape captures to match args
224         - fix for relative Chained under namespace '' (root)
225         - fix for hashrefs in action attributes from config
226         - fix for Chained to require correct number of CaptureArgs
227
228 5.7001   2006-07-19 23:46:54
229         - fix for component loading
230         - uri_for and uri_with now behave as they used to with non-
231           array references
232
233 5.7000   2006-07-07 08:08:08
234         - fix FCGI.pm warning message with FastCGI engine
235         - bumped inc::Module::Install to 0.63 in Makefile.PL
236         - fixes to uri_for_action for DispatchType::Chained
237         - Further doc work.
238         - Minor code cleanups 
239         - Changed catalyst.pl to depend on Catalyst::Devel
240
241 5.70_03  2006-06-28 16:42:00
242         - fixup to registered plugins debug at app startup
243         - refactored Catalyst::Utils::home
244
245 5.70_02  2006-06-27 11:51:00
246         - Updated tutorial.
247
248 5.70_01  2006-06-26 10:49:00
249
250         - fixed a Catalyst::Base bug causing duplicate action registrations
251         - modified DispatchTypes to support multiple registrations
252         - added Catalyst::Runtime module as dist marker
253         - added Catalyst::ActionChain and Chained DispatchType
254         - removed retarded registration requirement in dispatcher
255         - removed Module::Pluggable::Fast hack in favor of
256           Module::Pluggable::Object
257         - extended uri_for, added dispatcher->uri_for_action
258         - added Catalyst::Base->action_for('methodname')
259         - checked and tested :Args multimethod dispatch
260         - added ability to set action attributes from controller config
261         - added merge_config_hashes() as a convenience method
262         - Swapped out CGI::Cookie in favour of CGI::Simple::Cookie
263         - Removed test dependencies on Test::NoWarnings, Test::MockObject
264         - Removed dependency on UNIVERSAL::require
265         - Split out Catalyst::Helper into a new distribution
266         - un-bundled the plugins as they are now pre-reqs for Catalyst::Helper
267         - nuked each() out of core with prejudice (due to lurking buglets)
268         - Added tests from phaylon for dispatcher precedence
269         - Use Class::Inspector->loaded($class) instead of $class->can('can')
270         - Added ActionClass attribute
271         - Removed Test::WWW::Mechanize::Catalyst from Makefile.PL (circular dep)
272         - Updated docs for Catalyst::Component
273         - Separated execute and dispatch on Catalyst::Action
274         - cleaned up logging and debug output
275         - significant documentation revisions
276         - Added warning for setup being called twice
277         - Fix pod to use DBIC::Schema instead of DBIC model
278         - Fix ->config failing to copy _config for subclassing
279         - Updated log format
280         - Updated debug dump
281
282 5.6902  2006-05-04 13:00:00
283         - Remove tarballs and OSX metadata files.
284
285 5.6901  2006-05-03 11.17:00
286         - Module::Install didn't overwrite META.yml. 
287
288 5.6900  2006-05-03 11.17:00
289         - Stupid pause indexer can't count.
290         - Better fix for Catalyst::Test
291         - more tests.
292
293 5.682   2006-04-27 13:51:00
294         - Damn OSX attributes again :( 
295
296 5.681   2006-04-27 08:47:00
297         - Updated manifest.
298         - Add basename to core . (Deprecates Catalyst::Plugin::Basename)
299     
300 5.68    2006-04-26 12:23:00
301         - ConfigLoader: Updated to version 0.06
302         - fixed undef warnings in uri_for() and uri_with()
303         - Fixed Catalyst::Test to report errors on failed Class load
304
305 5.678   2006-04-24 12:30:00
306         - Re-release of 5.67 without OSX metadata files.
307
308 5.67    2006-04-23 08:50:00
309         - Added $c->req->uri_with() helper
310         - ConfigLoader: Updated to version 0.05
311         - Fix up Engine to avoid a new 5.8.8 warning
312         - Added app name with :: support for PAR
313         - Added $c->models/views/controllers
314         - Static::Simple: Unescape the URI path before looking for the file.
315           This fixes issues with files that have spaces.
316         - Looping and recursion tests plus a fix
317         - Added lots of API documentation. Refactored main pod.
318         - Changed default behaviors for $c->model/$c->controller/$c->view
319           to more sane settings.
320         - added the clear_errors method - an alias for error(0)
321         - Added tmpdir option for uploads (woremacx)
322         - Applied patch from GEOFFR to allow normal filehandles.
323         - Refactored Dispatcher internals for better readability and speedup
324           (stress tests run 12% faster)
325         - Allow $c->error to run as a class method
326
327 5.66    2006-03-10 17:48:00
328         - Added Test::WWW::Mechanize::Catalyst support
329         - Cleaned generated tests
330         - Added Root controller concept
331         - Updated ConfigLoader plugin to version 0.04
332
333 5.65    2006-02-21 10:34:00
334         - Added plugin introspection.
335         - Support optional hashref as last param for parameters in uri_for.
336         - Updated tutorial to be more complete.
337         - Applied args patch from antirice (Fixes Ticket #67)
338
339 5.64    2006-02-07 20:29:00
340         - Fixed bug in FastCGI proc manager mode where pm_post_dispatch
341           was not run. (Eric Wong)
342         - Cleaned up generated tests
343         - Updated YAML support to use ConfigLoader
344         - Fixed path dispatch to canonicalise correctly
345             (see http://dev.catalyst.perl.org/ticket/62)
346         - Added Catalyst::Manual::About
347
348 5.63    2006-01-22 00:00:00
349         - Updated prereq versions
350
351 5.62    2006-01-17 16:30:00
352         - Large update to the tutorial (castaway)
353         - Added YAML config support
354         - Added COMPONENT() and ACCEPT_CONTEXT() support
355         - Action list in debug mode is now displayed as a tree in the
356           correct execution order.
357         - Fixed engine detection to allow custom mod_perl engines.
358         - Static::Simple: Fixed bug in ignore_dirs under win32.
359         - Display version numbers of loaded plugins. (Curtis Poe)
360         - Added class and method for caught exception messages.
361         - Updated PAR support to use "make catalyst_par",
362           packages are no longer written by Makefile.PL.
363         - Automatically determine Content-Length when serving a
364           filehandle.
365         - Exceptions now return status 500.
366         - Updated for Module::Install 0.44.
367         - Fixed additional file installation for multi level app names.
368         - Added REDIRECT_URL support for applications running behind
369           a RewriteRule in Apache. (Carl Franks)
370         - Fixed FastCGI engine under win32. (Carl Franks)
371         - FastCGI doc updates (Bill Moseley)
372         - Bugfix for $c->model and friends (defined).
373
374 5.61    2005-12-02 00:00:00
375         - Fixed ExtUtils::AutoInstall Bootstrap Code in Makefile.PL
376
377 5.60    2005-12-01 22:15:00
378         - Fixed Path and index actions in the appclass,
379           including those that attach to /
380         - Index is now weighted higher than Path
381         - Fixed restarter and -d debug switch in server.pl.
382         - Added a warning if you attempt to retrieve a parameter
383           using $c->req->params('foo').
384         - Fixed the Module::Install::Catalyst @ISA bug
385
386 5.59    2005-11-30 13:25:00
387         - Fixed shebang line for generated scripts
388         - Fixed forward to classes ($c->forward(qw/MyApp foo/))
389         - Wrap use block in begin to quelch C:C3 warnings
390         - Removed scrollbar from debug output
391         - Fixed catalyst_par_core() and catalyst_par_multiarch()
392
393 5.58    2005-11-24 10:51:00
394         - Added ExtUtils::AutoInstall support
395         - Allow overriding path in Catalyst::Helper.
396         - Added -makefile to catalyst.pl to generate a new Makefile.PL.
397         - Restored Catalyst::Build with a deprecation notice.
398         - Improved PAR support
399         - Replaced -short with auto-detection
400         - Fixed prereqs, added File::Copy::Recursive
401         - Static::Simple changes:
402             - Made prepare_action play nice with other plugins by not short-
403               circuiting.
404             - Added tmpl to the ignored extensions.
405             - Fixed security problem if req->path contained '..'.
406
407 5.57    2005-11-20 22:45:00
408         - Updated uri_for to accept undef actions
409         - Switched to Module::Install
410         - Renamed tests for easier editing
411         - Reformatted documentation
412         - Renamed -nonew to -force
413         - Added PAR support
414         - Added keep-alive support and bug fixes to HTTP engine.
415           (Sascha Kiefer)
416         - Added daemonize option to FastCGI engine. (Sam Vilain)
417
418 5.56   2005-11-16 10:33:00
419         - Fixed FastCGI engine to not clobber the global %ENV on each
420           request. (Sam Vilain)
421         - Updated benchmarking to work with detach
422         - Fixed dispatcher, so $c->req->action(undef) works again
423         - Updated Catalyst::Test to use HTTP::Request::AsCGI
424         - Added -pidfile to external FastCGI server.
425
426 5.55    2005-11-15 12:55:00
427         - Fixed multiple cookie handling
428
429 5.54    2005-11-14 22:55:00
430         - Fixed a Module::Pluggable::Fast related bug
431
432 5.53    2005-11-14 15:55:00
433         - Removed t/04prereq.t that was testing for non-required
434           modules.
435
436 5.52    2005-11-14 10:57:00
437         - Strip '..'s in static urls to fix security issue.
438
439 5.51    2005-11-14 00:45:00
440         - Changed uri_for to use namespace instead of match.
441
442 5.50    2005-11-13 20:45:00
443         - Fixed minor bugs.
444         - Updated docs.
445
446 5.49_05 2005-11-12 20:45:00
447         - Large update to the documentation. (David Kamholz)
448         - Fixed args handling in forward()
449         - Fixed forwarding to classes
450         - Fixed catalyst.pl-generated Build.PL Makefile section.
451         - Fixed relative forwarding
452         - Fixed forward arrows in debug output
453
454 5.49_04 2005-11-09 23:00:00
455         - Made context, dispatcher, engine, request and response classes
456           configurable.
457         - Added $c->stack.
458         - Fixed dispatcher to ignore unknown attributes.
459         - Improved format of startup debug log.
460         - Updated built in server to restart on win32. (Will Hawes)
461         - Fixed streaming write from a filehandle to stop writing
462           if the browser is closed.
463         - Added $c->controller, $c->model and $c->view shortcuts.
464         - Switched to Text::SimpleTable.
465
466 5.49_03 2005-11-03 12:00:00
467         - Fixed $c->req->{path} for backwards-compatibility.
468         - Allow debug to be disabled via ENV as well as enabled.
469         - Added -scripts option to catalyst.pl for script updating
470         - Changed helpers to default to long types, Controller instead of C
471         - Added Catalyst::Controller, Catalyst::Model and Catalyst::View
472           base classes
473         - Added JavaScript to debug screen to show and hide specific dumps
474         - Added _DISPATCH, _BEGIN, _AUTO, _ACTION and _END actions
475         - Added multi process external FastCGI support
476           (see myapp_fastcgi.pl -help) (Sam Vilain)
477         - Restarter process in HTTP engine now properly exits when the
478           parent app is shut down.  
479         - Improved performance of restarter loop while watching for
480           changed files.
481         - Restarter will now detect new files added to an app on systems
482           that change directory mtimes when new files are created.
483         - Restarter now properly handles modules that are deleted from an
484           application.
485         - Fixed memory leak in TestApp.
486
487 5.49_02 2005-10-26 12:39:00 
488         - Whole new dispatcher!
489         - Added index action
490         - Added path_to method
491         - Added support for passing an IO::Handle object to $c->res->body.
492           (Andrew Bramble)
493         - Added a new welcome screen.
494         - Included Catalyst buttons and icons in helper.
495         - Added Static::Simple plugin to core.
496         - Added self restarting test server
497         - Added filename to debug output for uploaded files.
498         - Fixed forwarding with embedded arguments.
499         - Fixed handling of escaped query strings.
500         - Added upload parameters back into $c->req->params.
501         - Added multiple paths support to dispatcher
502         - Fixed bug in req->path where changing the path added a trailing
503           slash.
504         - Removed req->handle and res->handle
505         - Added prepare_body_chunk method as a hook for upload progress.
506         - Fixed bug in uri_for method when base has no path.
507         - Added automated tests for HTTP, CGI, and FastCGI servers.
508
509 5.49_01 2005-10-10 10:15:00 
510         - Refactored all internals, should be 99% compatible to previous
511           versions.
512         - *IMPORTANT* The Apache engines have been moved to a separate package
513           for this release.  Please install Catalyst::Engine::Apache if you
514           need Apache support.
515
516         - Added support for calling forward with arguments in the path, i.e.
517           $c->forward('/foo/bar/arg1/arg2')
518         - Made $c->req->uri a URI object, added req->path_info for CGI compat.
519           Raw query string is available as $c->req->uri->query.
520         - Made $c->req->base a URI object.
521         - Parameters with multiple values (?a=1&a=2) now display properly
522           in the debug output.
523         - Semi-colon separators in query strings now work properly.
524         - Expanded documentation of catalyst.pl (Andrew Ford)
525         - Added support for running as a backend server behind a frontend
526           proxy so req->base and req->address are set properly.
527         - Added an 'abort' method to the Log api, so that you can
528           kill loggging for a whole request.
529         - Added $c->uri_for method to simplify url handling.
530         - Added more tests and reorganized the t directory.
531         - Reimplemented core engines, all are now CGI based for better test
532           coverage and maintainability.
533         - Added fork support to built in test server.
534         - Fixed all memory leaks.
535         - Thread-related bug fixes and tests.  We now believe the Catalyst
536           core to be thread-safe.
537         - Added streaming IO support through $c->req->read() and
538           $c->res->write()
539         - Added MyApp->config->{parse_on_demand} (streaming input)
540         - Added $c->req->handle and $c->res->handle
541         - Improved documentation
542         - Fixed mkpath in Catalyst::Helper (Autrijus Tang)
543         - Fixed bug in dispatcher where an invalid path could call a valid
544           action. (Andy Grundman)
545         - Fixed Helper so it works with CRLF line-endings. (Andy Grundman)
546
547 5.33  2005-08-10 15:25:00
548         - Now with updated manifest.
549
550 5.32  2005-08-10 15:10:00
551         - Dispatcher might fail if object returns false. (Florian Ragwitz)
552
553 5.31  2005-06-04 12:35:00 (never released to CPAN)
554
555         - helpers now create .new files where files already exist and differ
556         - fixed $Data::Dumper::Terse (Robin Berjon)
557         - added arguments for detach
558         - new credits section in pod
559         - fixed detach to allow relative action names (Matt and Robert)
560         - added the ability to have whitespaces in Path( '' ) and Regex( '' )
561
562 5.30  2005-06-04 12:35:00
563
564         - Fixed a bug where it was not possible to $c->forward to a 
565           component 
566           that was not inheriting from Catalyst::Base.
567         - Fix for inheritance bug.
568         - Allow forward with arguments.
569         - Updated cookbook
570         - Allow overriding home/root in config.
571         - make module build cons README automatically.
572         - prettify home path by resolving '..' (Andy Grundman)
573         - improved helper templates a bit, new naming scheme for tests.
574         - added support for case sensitivity, MyApp->config->{case_sensitive}
575         - added $c->detach for non-returning forwards
576         - added unified error handling, Catalyst::Exception
577         - added section on param handling in Intro.pod
578         - added $c->request->cookie
579         - added Catalyst::Setup
580         - refactored Catalyst::import()
581         - improved rendering of error messages in debug mode
582         - fixed a bug in Catalyst::Helper::mk_dir
583         - further doc changes, esp. to Intro.pod
584
585 5.23  2005-06-03 02:30:00
586         - added support for non Catalyst::Base components to live in namespace
587         - improved concurrency connections in Catalyst::Engine::HTTP::Daemon
588
589 5.22  2005-05-26 14:24:00
590         - improved base locating in MP engines
591         - improved error messages in C::E::HTTP::Daemon
592         - hostnames are now resolved on demand unless provided by engine
593         - fixed memory leak in $c->execute (Michael Reece, Matt S Trout)
594
595 5.21  2005-05-24 14:56:00
596         - fixed a bug in https detection
597         - fixed auto chain finally
598         - added MYAPP_HOME and CATALYST_HOME environment variables
599
600 5.20  2005-05-18 19:52:00
601         - improved uploads and parameters
602         - added $c->req->protocol and $c->req->secure
603         - added $c->req->user and $c->req->uri
604         - improved error message when forwarding to unknown module
605         - fixed win32 installer
606         - added deep recursion detection
607         - fixed auto actions
608         - fixed inheritance in dispatcher
609         - allow whitespaces between brackets and quoted string
610           in Path and Regex attributes
611         - new helper templates
612         - installer now supports install_base and destdir
613         - allow multiple Catalyst apps to run on the same mod_perl
614           instance (not the same app!)
615         - fixed MP2 engines
616         - removed apreq dependency from all MP engines
617         - added support for MP registry scripts
618         - added support for LocationMatch and ScriptAliasMatch in MP engines
619         - added SpeedyCGI engine
620
621 5.10  2005-04-23 11:16:00
622         - updated dependencies to require latest module::pluggable::fast
623         - new installer for templates and stuff using Module::Build
624         - scripts are now prefixed, for being installable
625         IMPORTANT: You have to regenerate the script directory,
626         remove Makefile.PL and add Build.PL
627         - Added compat to install Module::Build if required.
628         - Improved: Params handling with MP engines
629         - Fixed: Params handling on POST with CGI engine (Andy Grundman)
630         - Fixed: Helper.pm on Win32 (Matt S Trout)
631
632 5.03  2005-04-19 20:35:00 (Revision 462)
633         - fixed Test example (Torsten Seeman)
634         - added Plugins chapter to manual
635         - applied doc patch from Robert Boone <robert@rlb3.com>
636         - improved Dispatcher error messages.
637         - refactored so we don't need to include helper from
638           Catalyst.pm - Fixes issues with FindBin
639         - applied HTTP.pm patch from Andy Grundman <andy@hybridized.org>
640         - added plugin() method for instant plugins
641         - FCGI is no more considered experimental
642
643 5.02  2005-04-18 10:00:00 
644         - fixed manifest
645
646 5.01  2005-04-17 23:00:00 
647         - some documentation bugs fixed
648         - added Catalyst::Utils
649         - fixed regexp bug (Matt S Trout)
650         - fixed upload bug with MP19
651         - added $c->req->body
652         - aliased $c->res->output to $c->res->body
653         - Read AUTHOR from passwd or $ENV{AUTHOR} when 
654           generating code.
655         - extended attribute handling
656         - added global config for components
657
658 5.00  2005-04-15 18:00:00
659         - new core to support inheritance trees
660         - new syntax for action declaration
661         - new helper system using TT2
662         - problems with mod_perl2 fixed
663         - added Test::Pod support
664         - added new server backend with HTTP/1.1 support
665         - added option to run tests against a remote server
666         - renamed errors() to error()
667         - more better docs
668         - countless minor improvements
669           IMPORTANT: This release is very incompatible to previous ones
670           and you have to regenerate the helper scripts again...
671
672 4.34  2005-03-23 07:00:00 2005
673         - added some messages to Makefile.PL
674         - added Catalyst::Engine::Test
675         - added Catalyst::Engine::CGI::NPH
676         - simplified Catalyst::Log to be easier to implement/subclass
677         - added cgi.pl
678         - updated Catalyst::Test to use Catalyst::Engine::Test
679         - updated helper scripts
680           IMPORTANT: this will be the last time you'll have to regenerate
681           the script directory. We promise!
682
683 4.33  2005-03-23 01:00:00 2005
684         - documented the log() accessor method in Catalyst (Andrew Ford)
685         - added optional arguments to Catalyst::Log methods (Andrew Ford)
686         - removed cgi-server.pl
687         - added fcgi.pl and Catalyst::Engine::FCGI
688         - fixed an undef durng make test (Dan Sully)
689         - new path test (Christian Hansen)
690           IMPORTANT: you have to regenerate the script directory again
691
692 4.32  2005-03-22 02:10:00 2005
693         - made a damn typo *AAAAAAAAAAAAAAHHHH!!!*
694
695 4.31  2005-03-22 02:00:00
696         - fixed inheritance (Christian Hansen)
697         - previous release was borked!
698           fixed that, but you have to regenerate the scripts again :(
699
700 4.30  2005-03-21 23:00:00 
701         - more documentation (Andrew Ford)
702         - added connection informations (Christian Hansen)
703         - HTTP::Request support in Catalyst::Test (Christian Hansen)
704         - moved cgi.pl to nph-cgi.pl
705         - added Catalyst::Engine::Server (Christian Hansen)
706         - removed Catalyst::Test::server
707         - updated helper scripts
708           IMPORTANT: note that you have to regenerate script/server.pl,
709           script/cgi-server.pl and script/cgi.pl (now nph-cgi.pl)
710
711 4.28  2005-03-19 22:00:00
712         - fixed isa tree (Christian Hansen)
713         - added script/cgi-server.pl, so no more server restarting after
714           code changes
715         - reworked documentation (Andrew Ford <A.Ford@ford-mason.co.uk>)
716
717 4.27  2005-03-19 01:00:00
718         - debug message for parameters
719         - Fix redirects (Christian Hansen <ch@ngmedia.com>)
720         - some random fixes
721         - new helper api for Catalyst::Helper::* support
722           you have to update script/create.pl to use it
723
724 4.26  2005-03-16 10:00:00
725         - fixed the weird bug that caused regex actions to fail on every
726           second request
727         - more debug messages
728         - 100% pod coverage.
729
730 4.25  2005-03-12 18:00:00
731         - correct perl pathes for helper generated scripts (Tatsuhiko Miyagawa)
732         - improved cgi engine docs (Christoper Hicks)
733
734 4.24  2005-03-12 01:00:00
735         - updated cookbook example  
736         - fixed base for apache and https (Andrew Ruthven)
737         
738 4.23  2005-03-09 20:00:00
739         - no more regex actions in forward
740         - added support for test directories t/m, t/v and t/c
741
742 4.22  2005-03-08 20:00:00
743         - catch errors in application class
744         - handle die properly.
745
746 4.21  2005-03-05 17:00:00
747         - fixed docs
748
749 4.20  2005-03-04 22:00:00
750         - moved bin to script
751
752 4.13  2005-03-03 11:00:00
753         - improved documentation
754         - pod coverage test for helper generated apps
755         - new helper api
756
757 4.12  2005-03-02 11:00:00 2005
758         - server_base sucks, removed
759         - added $c->log->dump()
760
761 4.11  2005-03-02 11:00:00 2005
762         - removed some warnings
763         - improved docs
764         - private prefixed actions override private non prefixed actions
765         - added server_base
766         - updated Catalyst::Manual::Intro
767
768 4.10  2005-03-02 10:00:00 2005
769         - improved documentation
770         - fixed upload bug
771         - fixed prefixed private actions bug
772         - fixed more little bugs
773
774 4.01  2005-03-01 10:00:00 2005
775         - improved documentation
776         - documentation fixes (Johan Lindstrom)
777
778 4.00  2005-02-27 22:00:00
779         - more verbose debug messages, especially for forward()
780         - implemented prefixed prvate actions, icluding built in
781           !?default, !?begin and !?end
782         - new Catalyst::Manual::Intro
783         - new helpers, bin/catalyst
784         - helper api
785
786 3.11  2005-02-23 21:00:00
787         - added dependency to UNIVERSAL::require (Marcus Ramberg)
788         - added a little workaround for a warning in Catalyst::Test
789           (Marcus Ramberg)
790         - improved documentation for actions
791
792 3.10  2005-02-19 20:00:00
793         - removed roles management from Catalyst::Engine
794           and added it to Catalyst::Plugin::Authentication::CDBI
795
796 3.04  2005-02-17 21:00:00 
797         - error reporting for app class
798         - no more engine debug messages
799         - class->method forwards get resolved now
800
801 3.03  2005-02-16 23:00:00 
802         - friendlier statistics
803
804 3.02  2005-02-16 22:00:00
805         - fixed unintialized actions (Marcus Ramberg)
806
807 3.01  2005-02-16 20:30:00
808         - better statistics
809
810 3.00  2005-02-16 20:00:00
811         - real version number for CPAN.pm
812         - fixed redirect in CGI engine
813         - more statistics in debug logs
814         - ? prefix for forward()
815
816 2.99_15  2005-02-02 22:00:00
817         - support for short namespaces, MyApp::M, MyApp::V and MyApp::C
818         - Replaced "Catched" with "Caught" in Catalyst::Engine
819           (Gary Ashton Jones)
820         - replaced _ with ! for private actions
821         - added ? for prefixed actions
822         - misc improvememts
823
824 2.99_14  2005-01-31 22:00:00 2005
825         - arguments for _default
826         - $c->entrance removed for more flexibility
827         - added $c->req->method
828
829 2.99_13  2005-01-30 18:00:00 2005
830         - POD fixes and improvements
831
832 2.99_12  2005-01-28 22:00:00 2005
833         - first development release