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