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