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