Update Changes to include mention of HTTP::Body fix
[catagits/Catalyst-Runtime.git] / Changes
1 This file documents the revision history for Perl extension Catalyst.
2
3 5.7008  XXXX-XX-XX
4         - Allow "0" for a path in uri_for.
5         - Performance improvements to uri_for by inlining encoding.
6         - Updated HTTP::Body dependency to 0.8 to handle the case where IE sometimes
7           sends an extra CRLF after a POST body.
8
9 5.7007  2006-03-13 14:18:00
10         - Performance and stability improvements to the built-in HTTP server.
11         - Don't ignore file uploads if form contains a text field with the
12           same name.  (Carl Franks)
13         - Support restart_delay of 0 (for use in the POE engine).
14         - Skip body processing if we don't have a Content-Length header.
15           Results in about a 9% performance increase when handling GET/HEAD
16           requests.
17         - Add a default body to redirect responses.
18         - MyApp->model/view now looks at MyApp->config->{default_view/model}
19           (Bogdan Lucaciu)
20
21 5.7006   2006-11-03 14.18
22         - Updated manifest
23         - Fix Slurp dependency
24         - Updated HTTP::Body dependency to 0.6, 0.5 can break on large POST 
25           requests.
26         - Skip utf8 fix for undef values in uri_with() and uri_for()
27
28 5.7005   2006-11-07 19:37:35
29         - Fixed lighttpd tests to be properly skipped.
30         - Moved IE workarounds to exist only in the HTTP engine.
31         - Added installation instructions (from Catalyst-Manual dist)
32
33 5.7004   2006-11-06 20:48:35
34         - Fix Engine::HTTP crash when using IE. (Jesper Krogh, Peter Edwards)
35         - clean up Catalyst::Utils to handle some edge cases
36         - Properly work around lighttpd PATH_INFO vs. SCRIPT_NAME bug
37           (Mark Blythe)
38         - add _application accessor to Catalyst::Base
39         - Support current_view
40         - Allow use of Catalyst::Test without app name (Ton Voon, Altinity)
41         - Catalyst::Manual moved to its own package
42         - Add option to FastCGI engine to send errors to stdout, not the web server
43         - Use Module::Install's auto_install to install prerequisite modules 
44         - various documentation fixes and improvements
45         
46 5.7003   2006-09-21 16:29:45
47         - Additions and updates to tutorial
48
49 5.7002   2006-09-17 19:35:32
50         - unescape captures to match args
51         - fix for relative Chained under namespace '' (root)
52         - fix for hashrefs in action attributes from config
53         - fix for Chained to require correct number of CaptureArgs
54
55 5.7001   2006-07-19 23:46:54
56         - fix for component loading
57         - uri_for and uri_with now behave as they used to with non-
58           array references
59
60 5.7000   2006-07-07 08:08:08
61         - fix FCGI.pm warning message with FastCGI engine
62         - bumped inc::Module::Install to 0.63 in Makefile.PL
63         - fixes to uri_for_action for DispatchType::Chained
64         - Further doc work.
65         - Minor code cleanups 
66         - Changed catalyst.pl to depend on Catalyst::Devel
67
68 5.70_03  2006-06-28 16:42:00
69         - fixup to registered plugins debug at app startup
70         - refactored Catalyst::Utils::home
71
72 5.70_02  2006-06-27 11:51:00
73         - Updated tutorial.
74
75 5.70_01  2006-06-26 10:49:00
76
77         - fixed a Catalyst::Base bug causing duplicate action registrations
78         - modified DispatchTypes to support multiple registrations
79         - added Catalyst::Runtime module as dist marker
80         - added Catalyst::ActionChain and Chained DispatchType
81         - removed retarded registration requirement in dispatcher
82         - removed Module::Pluggable::Fast hack in favor of
83           Module::Pluggable::Object
84         - extended uri_for, added dispatcher->uri_for_action
85         - added Catalyst::Base->action_for('methodname')
86         - checked and tested :Args multimethod dispatch
87         - added ability to set action attributes from controller config
88         - added merge_config_hashes() as a convenience method
89         - Swapped out CGI::Cookie in favour of CGI::Simple::Cookie
90         - Removed test dependencies on Test::NoWarnings, Test::MockObject
91         - Removed dependency on UNIVERSAL::require
92         - Split out Catalyst::Helper into a new distribution
93         - un-bundled the plugins as they are now pre-reqs for Catalyst::Helper
94         - nuked each() out of core with prejudice (due to lurking buglets)
95         - Added tests from phaylon for dispatcher precedence
96         - Use Class::Inspector->loaded($class) instead of $class->can('can')
97         - Added ActionClass attribute
98         - Removed Test::WWW::Mechanize::Catalyst from Makefile.PL (circular dep)
99         - Updated docs for Catalyst::Component
100         - Separated execute and dispatch on Catalyst::Action
101         - cleaned up logging and debug output
102         - significant documentation revisions
103         - Added warning for setup being called twice
104         - Fix pod to use DBIC::Schema instead of DBIC model
105         - Fix ->config failing to copy _config for subclassing
106         - Updated log format
107         - Updated debug dump
108
109 5.6902  2006-05-04 13:00:00
110         - Remove tarballs and OSX metadata files.
111
112 5.6901  2006-05-03 11.17:00
113         - Module::Install didn't overwrite META.yml. 
114
115 5.6900  2006-05-03 11.17:00
116         - Stupid pause indexer can't count.
117         - Better fix for Catalyst::Test
118         - more tests.
119
120 5.682   2006-04-27 13:51:00
121         - Damn OSX attributes again :( 
122
123 5.681   2006-04-27 08:47:00
124         - Updated manifest.
125         - Add basename to core . (Deprecates Catalyst::Plugin::Basename)
126     
127 5.68    2006-04-26 12:23:00
128         - ConfigLoader: Updated to version 0.06
129         - fixed undef warnings in uri_for() and uri_with()
130         - Fixed Catalyst::Test to report errors on failed Class load
131
132 5.678   2006-04-24 12:30:00
133         - Re-release of 5.67 without OSX metadata files.
134
135 5.67    2006-04-23 08:50:00
136         - Added $c->req->uri_with() helper
137         - ConfigLoader: Updated to version 0.05
138         - Fix up Engine to avoid a new 5.8.8 warning
139         - Added app name with :: support for PAR
140         - Added $c->models/views/controllers
141         - Static::Simple: Unescape the URI path before looking for the file.
142           This fixes issues with files that have spaces.
143         - Looping and recursion tests plus a fix
144         - Added lots of API documentation. Refactored main pod.
145         - Changed default behaviors for $c->model/$c->controller/$c->view
146           to more sane settings.
147         - added the clear_errors method - an alias for error(0)
148         - Added tmpdir option for uploads (woremacx)
149         - Applied patch from GEOFFR to allow normal filehandles.
150         - Refactored Dispatcher internals for better readability and speedup
151           (stress tests run 12% faster)
152         - Allow $c->error to run as a class method
153
154 5.66    2006-03-10 17:48:00
155         - Added Test::WWW::Mechanize::Catalyst support
156         - Cleaned generated tests
157         - Added Root controller concept
158         - Updated ConfigLoader plugin to version 0.04
159
160 5.65    2006-02-21 10:34:00
161         - Added plugin introspection.
162         - Support optional hashref as last param for parameters in uri_for.
163         - Updated tutorial to be more complete.
164         - Applied args patch from antirice (Fixes Ticket #67)
165
166 5.64    2006-02-07 20:29:00
167         - Fixed bug in FastCGI proc manager mode where pm_post_dispatch
168           was not run. (Eric Wong)
169         - Cleaned up generated tests
170         - Updated YAML support to use ConfigLoader
171         - Fixed path dispatch to canonicalise correctly
172             (see http://dev.catalyst.perl.org/ticket/62)
173         - Added Catalyst::Manual::About
174
175 5.63    2006-01-22 00:00:00
176         - Updated prereq versions
177
178 5.62    2006-01-17 16:30:00
179         - Large update to the tutorial (castaway)
180         - Added YAML config support
181         - Added COMPONENT() and ACCEPT_CONTEXT() support
182         - Action list in debug mode is now displayed as a tree in the
183           correct execution order.
184         - Fixed engine detection to allow custom mod_perl engines.
185         - Static::Simple: Fixed bug in ignore_dirs under win32.
186         - Display version numbers of loaded plugins. (Curtis Poe)
187         - Added class and method for caught exception messages.
188         - Updated PAR support to use "make catalyst_par",
189           packages are no longer written by Makefile.PL.
190         - Automatically determine Content-Length when serving a
191           filehandle.
192         - Exceptions now return status 500.
193         - Updated for Module::Install 0.44.
194         - Fixed additional file installation for multi level app names.
195         - Added REDIRECT_URL support for applications running behind
196           a RewriteRule in Apache. (Carl Franks)
197         - Fixed FastCGI engine under win32. (Carl Franks)
198         - FastCGI doc updates (Bill Moseley)
199         - Bugfix for $c->model and friends (defined).
200
201 5.61    2005-12-02 00:00:00
202         - Fixed ExtUtils::AutoInstall Bootstrap Code in Makefile.PL
203
204 5.60    2005-12-01 22:15:00
205         - Fixed Path and index actions in the appclass,
206           including those that attach to /
207         - Index is now weighted higher than Path
208         - Fixed restarter and -d debug switch in server.pl.
209         - Added a warning if you attempt to retrieve a parameter
210           using $c->req->params('foo').
211         - Fixed the Module::Install::Catalyst @ISA bug
212
213 5.59    2005-11-30 13:25:00
214         - Fixed shebang line for generated scripts
215         - Fixed forward to classes ($c->forward(qw/MyApp foo/))
216         - Wrap use block in begin to quelch C:C3 warnings
217         - Removed scrollbar from debug output
218         - Fixed catalyst_par_core() and catalyst_par_multiarch()
219
220 5.58    2005-11-24 10:51:00
221         - Added ExtUtils::AutoInstall support
222         - Allow overriding path in Catalyst::Helper.
223         - Added -makefile to catalyst.pl to generate a new Makefile.PL.
224         - Restored Catalyst::Build with a deprecation notice.
225         - Improved PAR support
226         - Replaced -short with auto-detection
227         - Fixed prereqs, added File::Copy::Recursive
228         - Static::Simple changes:
229             - Made prepare_action play nice with other plugins by not short-
230               circuiting.
231             - Added tmpl to the ignored extensions.
232             - Fixed security problem if req->path contained '..'.
233
234 5.57    2005-11-20 22:45:00
235         - Updated uri_for to accept undef actions
236         - Switched to Module::Install
237         - Renamed tests for easier editing
238         - Reformatted documentation
239         - Renamed -nonew to -force
240         - Added PAR support
241         - Added keep-alive support and bug fixes to HTTP engine.
242           (Sascha Kiefer)
243         - Added daemonize option to FastCGI engine. (Sam Vilain)
244
245 5.56   2005-11-16 10:33:00
246         - Fixed FastCGI engine to not clobber the global %ENV on each
247           request. (Sam Vilain)
248         - Updated benchmarking to work with detach
249         - Fixed dispatcher, so $c->req->action(undef) works again
250         - Updated Catalyst::Test to use HTTP::Request::AsCGI
251         - Added -pidfile to external FastCGI server.
252
253 5.55    2005-11-15 12:55:00
254         - Fixed multiple cookie handling
255
256 5.54    2005-11-14 22:55:00
257         - Fixed a Module::Pluggable::Fast related bug
258
259 5.53    2005-11-14 15:55:00
260         - Removed t/04prereq.t that was testing for non-required
261           modules.
262
263 5.52    2005-11-14 10:57:00
264         - Strip '..'s in static urls to fix security issue.
265
266 5.51    2005-11-14 00:45:00
267         - Changed uri_for to use namespace instead of match.
268
269 5.50    2005-11-13 20:45:00
270         - Fixed minor bugs.
271         - Updated docs.
272
273 5.49_05 2005-11-12 20:45:00
274         - Large update to the documentation. (David Kamholz)
275         - Fixed args handling in forward()
276         - Fixed forwarding to classes
277         - Fixed catalyst.pl-generated Build.PL Makefile section.
278         - Fixed relative forwarding
279         - Fixed forward arrows in debug output
280
281 5.49_04 2005-11-09 23:00:00
282         - Made context, dispatcher, engine, request and response classes
283           configurable.
284         - Added $c->stack.
285         - Fixed dispatcher to ignore unknown attributes.
286         - Improved format of startup debug log.
287         - Updated built in server to restart on win32. (Will Hawes)
288         - Fixed streaming write from a filehandle to stop writing
289           if the browser is closed.
290         - Added $c->controller, $c->model and $c->view shortcuts.
291         - Switched to Text::SimpleTable.
292
293 5.49_03 2005-11-03 12:00:00
294         - Fixed $c->req->{path} for backwards-compatibility.
295         - Allow debug to be disabled via ENV as well as enabled.
296         - Added -scripts option to catalyst.pl for script updating
297         - Changed helpers to default to long types, Controller instead of C
298         - Added Catalyst::Controller, Catalyst::Model and Catalyst::View
299           base classes
300         - Added JavaScript to debug screen to show and hide specific dumps
301         - Added _DISPATCH, _BEGIN, _AUTO, _ACTION and _END actions
302         - Added multi process external FastCGI support
303           (see myapp_fastcgi.pl -help) (Sam Vilain)
304         - Restarter process in HTTP engine now properly exits when the
305           parent app is shut down.  
306         - Improved performance of restarter loop while watching for
307           changed files.
308         - Restarter will now detect new files added to an app on systems
309           that change directory mtimes when new files are created.
310         - Restarter now properly handles modules that are deleted from an
311           application.
312         - Fixed memory leak in TestApp.
313
314 5.49_02 2005-10-26 12:39:00 
315         - Whole new dispatcher!
316         - Added index action
317         - Added path_to method
318         - Added support for passing an IO::Handle object to $c->res->body.
319           (Andrew Bramble)
320         - Added a new welcome screen.
321         - Included Catalyst buttons and icons in helper.
322         - Added Static::Simple plugin to core.
323         - Added self restarting test server
324         - Added filename to debug output for uploaded files.
325         - Fixed forwarding with embedded arguments.
326         - Fixed handling of escaped query strings.
327         - Added upload parameters back into $c->req->params.
328         - Added multiple paths support to dispatcher
329         - Fixed bug in req->path where changing the path added a trailing
330           slash.
331         - Removed req->handle and res->handle
332         - Added prepare_body_chunk method as a hook for upload progress.
333         - Fixed bug in uri_for method when base has no path.
334         - Added automated tests for HTTP, CGI, and FastCGI servers.
335
336 5.49_01 2005-10-10 10:15:00 
337         - Refactored all internals, should be 99% compatible to previous
338           versions.
339         - *IMPORTANT* The Apache engines have been moved to a separate package
340           for this release.  Please install Catalyst::Engine::Apache if you
341           need Apache support.
342
343         - Added support for calling forward with arguments in the path, i.e.
344           $c->forward('/foo/bar/arg1/arg2')
345         - Made $c->req->uri a URI object, added req->path_info for CGI compat.
346           Raw query string is available as $c->req->uri->query.
347         - Made $c->req->base a URI object.
348         - Parameters with multiple values (?a=1&a=2) now display properly
349           in the debug output.
350         - Semi-colon separators in query strings now work properly.
351         - Expanded documentation of catalyst.pl (Andrew Ford)
352         - Added support for running as a backend server behind a frontend
353           proxy so req->base and req->address are set properly.
354         - Added an 'abort' method to the Log api, so that you can
355           kill loggging for a whole request.
356         - Added $c->uri_for method to simplify url handling.
357         - Added more tests and reorganized the t directory.
358         - Reimplemented core engines, all are now CGI based for better test
359           coverage and maintainability.
360         - Added fork support to built in test server.
361         - Fixed all memory leaks.
362         - Thread-related bug fixes and tests.  We now believe the Catalyst
363           core to be thread-safe.
364         - Added streaming IO support through $c->req->read() and
365           $c->res->write()
366         - Added MyApp->config->{parse_on_demand} (streaming input)
367         - Added $c->req->handle and $c->res->handle
368         - Improved documentation
369         - Fixed mkpath in Catalyst::Helper (Autrijus Tang)
370         - Fixed bug in dispatcher where an invalid path could call a valid
371           action. (Andy Grundman)
372         - Fixed Helper so it works with CRLF line-endings. (Andy Grundman)
373
374 5.33  2005-08-10 15:25:00
375         - Now with updated manifest.
376
377 5.32  2005-08-10 15:10:00
378         - Dispatcher might fail if object returns false. (Florian Ragwitz)
379
380 5.31  2005-06-04 12:35:00 (never released to CPAN)
381
382         - helpers now create .new files where files already exist and differ
383         - fixed $Data::Dumper::Terse (Robin Berjon)
384         - added arguments for detach
385         - new credits section in pod
386         - fixed detach to allow relative action names (Matt and Robert)
387         - added the ability to have whitespaces in Path( '' ) and Regex( '' )
388
389 5.30  2005-06-04 12:35:00
390
391         - Fixed a bug where it was not possible to $c->forward to a 
392           component 
393           that was not inheriting from Catalyst::Base.
394         - Fix for inheritance bug.
395         - Allow forward with arguments.
396         - Updated cookbook
397         - Allow overriding home/root in config.
398         - make module build cons README automatically.
399         - prettify home path by resolving '..' (Andy Grundman)
400         - improved helper templates a bit, new naming scheme for tests.
401         - added support for case sensitivity, MyApp->config->{case_sensitive}
402         - added $c->detach for non-returning forwards
403         - added unified error handling, Catalyst::Exception
404         - added section on param handling in Intro.pod
405         - added $c->request->cookie
406         - added Catalyst::Setup
407         - refactored Catalyst::import()
408         - improved rendering of error messages in debug mode
409         - fixed a bug in Catalyst::Helper::mk_dir
410         - further doc changes, esp. to Intro.pod
411
412 5.23  2005-06-03 02:30:00
413         - added support for non Catalyst::Base components to live in namespace
414         - improved concurrency connections in Catalyst::Engine::HTTP::Daemon
415
416 5.22  2005-05-26 14:24:00
417         - improved base locating in MP engines
418         - improved error messages in C::E::HTTP::Daemon
419         - hostnames are now resolved on demand unless provided by engine
420         - fixed memory leak in $c->execute (Michael Reece, Matt S Trout)
421
422 5.21  2005-05-24 14:56:00
423         - fixed a bug in https detection
424         - fixed auto chain finally
425         - added MYAPP_HOME and CATALYST_HOME environment variables
426
427 5.20  2005-05-18 19:52:00
428         - improved uploads and parameters
429         - added $c->req->protocol and $c->req->secure
430         - added $c->req->user and $c->req->uri
431         - improved error message when forwarding to unknown module
432         - fixed win32 installer
433         - added deep recursion detection
434         - fixed auto actions
435         - fixed inheritance in dispatcher
436         - allow whitespaces between brackets and quoted string
437           in Path and Regex attributes
438         - new helper templates
439         - installer now supports install_base and destdir
440         - allow multiple Catalyst apps to run on the same mod_perl
441           instance (not the same app!)
442         - fixed MP2 engines
443         - removed apreq dependency from all MP engines
444         - added support for MP registry scripts
445         - added support for LocationMatch and ScriptAliasMatch in MP engines
446         - added SpeedyCGI engine
447
448 5.10  2005-04-23 11:16:00
449         - updated dependencies to require latest module::pluggable::fast
450         - new installer for templates and stuff using Module::Build
451         - scripts are now prefixed, for being installable
452         IMPORTANT: You have to regenerate the script directory,
453         remove Makefile.PL and add Build.PL
454         - Added compat to install Module::Build if required.
455         - Improved: Params handling with MP engines
456         - Fixed: Params handling on POST with CGI engine (Andy Grundman)
457         - Fixed: Helper.pm on Win32 (Matt S Trout)
458
459 5.03  2005-04-19 20:35:00 (Revision 462)
460         - fixed Test example (Torsten Seeman)
461         - added Plugins chapter to manual
462         - applied doc patch from Robert Boone <robert@rlb3.com>
463         - improved Dispatcher error messages.
464         - refactored so we don't need to include helper from
465           Catalyst.pm - Fixes issues with FindBin
466         - applied HTTP.pm patch from Andy Grundman <andy@hybridized.org>
467         - added plugin() method for instant plugins
468         - FCGI is no more considered experimental
469
470 5.02  2005-04-18 10:00:00 
471         - fixed manifest
472
473 5.01  2005-04-17 23:00:00 
474         - some documentation bugs fixed
475         - added Catalyst::Utils
476         - fixed regexp bug (Matt S Trout)
477         - fixed upload bug with MP19
478         - added $c->req->body
479         - aliased $c->res->output to $c->res->body
480         - Read AUTHOR from passwd or $ENV{AUTHOR} when 
481           generating code.
482         - extended attribute handling
483         - added global config for components
484
485 5.00  2005-04-15 18:00:00
486         - new core to support inheritance trees
487         - new syntax for action declaration
488         - new helper system using TT2
489         - problems with mod_perl2 fixed
490         - added Test::Pod support
491         - added new server backend with HTTP/1.1 support
492         - added option to run tests against a remote server
493         - renamed errors() to error()
494         - more better docs
495         - countless minor improvements
496           IMPORTANT: This release is very incompatible to previous ones
497           and you have to regenerate the helper scripts again...
498
499 4.34  2005-03-23 07:00:00 2005
500         - added some messages to Makefile.PL
501         - added Catalyst::Engine::Test
502         - added Catalyst::Engine::CGI::NPH
503         - simplified Catalyst::Log to be easier to implement/subclass
504         - added cgi.pl
505         - updated Catalyst::Test to use Catalyst::Engine::Test
506         - updated helper scripts
507           IMPORTANT: this will be the last time you'll have to regenerate
508           the script directory. We promise!
509
510 4.33  2005-03-23 01:00:00 2005
511         - documented the log() accessor method in Catalyst (Andrew Ford)
512         - added optional arguments to Catalyst::Log methods (Andrew Ford)
513         - removed cgi-server.pl
514         - added fcgi.pl and Catalyst::Engine::FCGI
515         - fixed an undef durng make test (Dan Sully)
516         - new path test (Christian Hansen)
517           IMPORTANT: you have to regenerate the script directory again
518
519 4.32  2005-03-22 02:10:00 2005
520         - made a damn typo *AAAAAAAAAAAAAAHHHH!!!*
521
522 4.31  2005-03-22 02:00:00
523         - fixed inheritance (Christian Hansen)
524         - previous release was borked!
525           fixed that, but you have to regenerate the scripts again :(
526
527 4.30  2005-03-21 23:00:00 
528         - more documentation (Andrew Ford)
529         - added connection informations (Christian Hansen)
530         - HTTP::Request support in Catalyst::Test (Christian Hansen)
531         - moved cgi.pl to nph-cgi.pl
532         - added Catalyst::Engine::Server (Christian Hansen)
533         - removed Catalyst::Test::server
534         - updated helper scripts
535           IMPORTANT: note that you have to regenerate script/server.pl,
536           script/cgi-server.pl and script/cgi.pl (now nph-cgi.pl)
537
538 4.28  2005-03-19 22:00:00
539         - fixed isa tree (Christian Hansen)
540         - added script/cgi-server.pl, so no more server restarting after
541           code changes
542         - reworked documentation (Andrew Ford <A.Ford@ford-mason.co.uk>)
543
544 4.27  2005-03-19 01:00:00
545         - debug message for parameters
546         - Fix redirects (Christian Hansen <ch@ngmedia.com>)
547         - some random fixes
548         - new helper api for Catalyst::Helper::* support
549           you have to update script/create.pl to use it
550
551 4.26  2005-03-16 10:00:00
552         - fixed the weird bug that caused regex actions to fail on every
553           second request
554         - more debug messages
555         - 100% pod coverage.
556
557 4.25  2005-03-12 18:00:00
558         - correct perl pathes for helper generated scripts (Tatsuhiko Miyagawa)
559         - improved cgi engine docs (Christoper Hicks)
560
561 4.24  2005-03-12 01:00:00
562         - updated cookbook example  
563         - fixed base for apache and https (Andrew Ruthven)
564         
565 4.23  2005-03-09 20:00:00
566         - no more regex actions in forward
567         - added support for test directories t/m, t/v and t/c
568
569 4.22  2005-03-08 20:00:00
570         - catch errors in application class
571         - handle die properly.
572
573 4.21  2005-03-05 17:00:00
574         - fixed docs
575
576 4.20  2005-03-04 22:00:00
577         - moved bin to script
578
579 4.13  2005-03-03 11:00:00
580         - improved documentation
581         - pod coverage test for helper generated apps
582         - new helper api
583
584 4.12  2005-03-02 11:00:00 2005
585         - server_base sucks, removed
586         - added $c->log->dump()
587
588 4.11  2005-03-02 11:00:00 2005
589         - removed some warnings
590         - improved docs
591         - private prefixed actions override private non prefixed actions
592         - added server_base
593         - updated Catalyst::Manual::Intro
594
595 4.10  2005-03-02 10:00:00 2005
596         - improved documentation
597         - fixed upload bug
598         - fixed prefixed private actions bug
599         - fixed more little bugs
600
601 4.01  2005-03-01 10:00:00 2005
602         - improved documentation
603         - documentation fixes (Johan Lindstrom)
604
605 4.00  2005-02-27 22:00:00
606         - more verbose debug messages, especially for forward()
607         - implemented prefixed prvate actions, icluding built in
608           !?default, !?begin and !?end
609         - new Catalyst::Manual::Intro
610         - new helpers, bin/catalyst
611         - helper api
612
613 3.11  2005-02-23 21:00:00
614         - added dependency to UNIVERSAL::require (Marcus Ramberg)
615         - added a little workaround for a warning in Catalyst::Test
616           (Marcus Ramberg)
617         - improved documentation for actions
618
619 3.10  2005-02-19 20:00:00
620         - removed roles management from Catalyst::Engine
621           and added it to Catalyst::Plugin::Authentication::CDBI
622
623 3.04  2005-02-17 21:00:00 
624         - error reporting for app class
625         - no more engine debug messages
626         - class->method forwards get resolved now
627
628 3.03  2005-02-16 23:00:00 
629         - friendlier statistics
630
631 3.02  2005-02-16 22:00:00
632         - fixed unintialized actions (Marcus Ramberg)
633
634 3.01  2005-02-16 20:30:00
635         - better statistics
636
637 3.00  2005-02-16 20:00:00
638         - real version number for CPAN.pm
639         - fixed redirect in CGI engine
640         - more statistics in debug logs
641         - ? prefix for forward()
642
643 2.99_15  2005-02-02 22:00:00
644         - support for short namespaces, MyApp::M, MyApp::V and MyApp::C
645         - Replaced "Catched" with "Caught" in Catalyst::Engine
646           (Gary Ashton Jones)
647         - replaced _ with ! for private actions
648         - added ? for prefixed actions
649         - misc improvememts
650
651 2.99_14  2005-01-31 22:00:00 2005
652         - arguments for _default
653         - $c->entrance removed for more flexibility
654         - added $c->req->method
655
656 2.99_13  2005-01-30 18:00:00 2005
657         - POD fixes and improvements
658
659 2.99_12  2005-01-28 22:00:00 2005
660         - first development release