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