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