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