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