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