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