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