updated changes
[catagits/Catalyst-Runtime.git] / Changes
1 # This file documents the revision history for Perl extension Catalyst.
2
3 5.90021 - TBA
4   - documentation updates around forwarding to chained actions
5   - Fixed bug when a PSGI engine need to use psgix logger
6   - Added cpanfile as a way to notice we are a dev checkout
7   - Added 'x-tunneled-method' HTTP Header method override to match features in
8     Catalyst::Action::REST and in other similar systems on CPAN
9
10 5.90020 - 2013-02-22
11   ! Catalyst::Action now defines 'match_captures' so it is no long considered
12     an optional method.  This might break you code if you have made custom
13     action roles/classes where you define 'match_captures'.  You must change
14     your code to use a method modifier (such as 'around').
15   - New match method "Method($HTTP_METHOD)" where $HTTP_METHOD in (GET, POST,
16     PUT, HEAD, DELETE, OPTION) and shortcuts in controllers called "GET, POST
17     PUT, HEAD, DELETE, OPTION").  Tests and documentation.  Please note if you
18     are currently using Catalyst::ActionRole::MatchRequestMethods there may
19     be compatibility issues.  You should remove that actionrole since the built
20     in behavior is compatible on its own.
21   - Initial debug screen now shows HTTP Method Match info
22   - security fixes in the way we handle redirects
23   - Make Catalyst::Engine and Catalyst::Base immutable
24   - Some test and documentation improvements
25
26 5.90019 - 2012-12-04 21:31:00
27   - Fix for perl 5.17.6 (commit g7dc8663). RT#81601
28   - Fix for perl 5.8. RT#61122
29   - Remove use of MooseX::Types as MooseX::Types is broken on perl5.8
30     RT#77100 & RT#81121
31
32 5.90018 - 2012-10-23 20:55:00
33   - Changed code in test suite so it no longer trips up on recent changes to
34     HTTP::Message.
35
36 5.90017 - 2012-10-19 22:33:00
37   - Change Catalyst _parse_attrs so that when sub attr handlers:
38
39     1) Can return multiple pairs of new attributes.
40     2) Get their returned attributes passed through the correct attribute handler.
41
42     e.g sub _parse_Whatever_attr { return Chained => 'foo', PathPart => 'bar' }
43
44     Will now work because both new attributes are respected, and the Chained
45     attribute is passed to _parse_Chained_attr and fixed up correctly by that.
46
47   - In Catalyst::Test, don't mangle headers of non-HTML responses. RT#79043
48
49   - Refactor request and response class construction to add methods
50     that roles can hook to feed extra parameters into the constructor
51     of request or response classes.
52
53 5.90016 - 2012-08-16 15:35:00
54   - prepare_parameters is no longer an attribute builder.  It is now a method
55     that calls the correct underlying functionality (Bill Moseley++)
56   - Updated Makefile.PL to handle MacOXS tar
57   - Fix uri_for to handle a stringifiable object
58   - Fix model/view/controller methods to handle stringifiable objects
59   - Fix RT#78377 - IIS7 ignores response body for 3xx requests, which
60     causes (a different) response to be broken when using keepalive.
61     Fixed by applying Middleware which removes the response body and
62     content length that Catalyst supplies with redirects.
63
64 5.90015 - 2012-06-30 16:57:00
65   - Fix $c->finalize_headers getting called twice. RT#78090
66   - Fix test fails in Catalyst-Plugin-Session-State-Cookie. RT#76179
67   - Fix test fails in Catalyst-Plugin-StackTrace
68   - Fix test fails in Test-WWW-Mechanize-Catalyst
69
70 5.90014 - 2012-06-26 10:00:00
71
72   - Fix calling finalize_headers before writing body when using $c->write /
73     $c->res->write (fixes RT#76179).
74
75 5.90013 - 2012-06-21 10:40:00
76
77   - Release previous TRIAL as stable.
78   - We failed to note in the previous changelog that the Makefile.PL has been
79     improved to make it easier for authors to bootstrap a developer install
80     of Catalyst.
81
82 5.90013 - TRIAL 2012-06-07 20:21:00
83
84  New features:
85   - Merge Catalyst::Controller::ActionRole into Catalyst::Controller.
86
87  Bug fixes:
88   - Fix warnings in some matching cases for Action methods with
89     Args(), when using Catalyst::DispatchType::Chained
90
91   - Fix request body parameters to not be undef if no parameters
92     are supplied.
93
94   - Fix action_args config so that it can be specified in the
95     top level config.
96
97   - Fix t/author/http-server.t on Win32
98
99   - Fix use of Test::Aggregate to make tests faster.
100
101 5.90012 - 2012-05-16 09:59:00
102
103  Distribution META.yml changes:
104   - author key is now correct, rather than what Module::Install
105     mis-parses from the documentation.
106   - x_authority key added.
107
108  Bug fixes:
109   - Fix request body parameters being multiply rebuilt. Fixes both
110     RT#75607 and CatalystX::DebugFilter
111
112   - Make plugin de-duplication work as intended originally, as whilst
113     duplicate plugins are totally unwise, the C3 error given to the user
114     is less than helpful.
115
116   - Remove dependence on obscure behaviour in B::Hooks::EndOfScope
117     for backward compatibility. This fixes issues with behaviour changes
118     in bleadperl. RT#76437
119
120   - Work around Moose bug RT#75367 which breaks
121     Catalyst::Controller::DBIC::API.
122
123  Documentation:
124   - Fix documentation in Catalyst::Component to show attributes and
125     calling readers, rather than accessing elements in the $self->{} hash
126     directly.
127   - Add note in Catalyst::Component to strongly disrecommend $self->config
128   - Fix vague 'checkout' wording in Catalyst::Utils. RT#77000
129   - Fix documentation for the 'secure' method in Catalyst:Request. RT#76710
130
131 5.90011 - 2012-03-08 16:43:00
132
133  Bug fixes:
134   - Simplification of the previous changes to Catalyst::ScriptRunner
135     We now just push $FindBin::Bin/../lib to the @INC path again, but
136     only if one of the dist indicator files (Makefile.PL Build.PL or
137     dist.ini) can be found in $FindBin::Bin/../$_
138     This avoids heuristics when the app is unloaded and therefore
139     works better for extensions which have entire applications in
140     their test suites.
141   - Bug fix to again correctly detect checkouts in dist zilla using
142     applications.
143   - --background option for the server script now only closes
144     STDIN, STDOUT and STDERR. This fixes issues with Log::Dispatch
145     and other loggers which open a file handle when
146   - Change incorrect use of File::Spec->catdir to File::Spec->catfile
147     so that we work on platforms which care about this (VMS?)
148   - Make it more obvious if our PSGI server doesn't pass in a response
149     callback.
150
151 5.90010 - 2012-02-18 00:01:00
152
153  Bug fixes:
154   - Fix the previous fix to Catalyst::ScriptRunner which was resulting
155     in the lib directory not being pushed onto @INC.
156     This meant perl ./script/myapp_server.pl failed, however
157     perl -Ilib ./script/myapp_server.pl would succeed.
158
159 5.90009 - 2012-02-16 09:06:00
160
161  Bug fixes:
162   - Fix the debug page so that it works as expected with the latest
163     refactoring.
164
165   - The Catalyst::Utils::home function is used to find if the application
166     is a checkout in Catalyst::ScriptRunner. This means that a non-existant
167     lib directory that is relative to the script install location is not
168     included when not running from a checkout.
169
170   - Fix dead links to cpansearch.perl.org to point to metacpan.org.
171
172   - Require the latest version of B::Hooks::EndOfScope (0.10) to avoid an
173     issue with new versions of Module::Runtime (0.012) on perl 5.10
174     which stopped Catalyst::Controller from compiling.
175
176   - In Catalyst::Test, don't mangle headers of non-HTML responses. RT#79043
177
178 5.90008 - TRIAL 2012-02-06 20:49:00
179
180  New features and refactoring:
181   - Much of the Catalyst::Engine code has been moved into Catalyst::Request
182     and Catalyst::Response, to be able to better support asynchronous web
183     servers such as Twiggy, by making the application engine more reenterant.
184
185     This change is as a prequel to full asynchronous support inside Catalyst
186     for AnyEvent and IO::Async backends, which allow highly scaleable streaming
187     (for applications such as multi-part XML HTTPRequests, and Websockets).
188
189  Deprecations:
190   - This means that the $c->engine->env method to access the PSGI environment
191     is now deprecated. The accessor for the PSGI env is now on Catalyst::Request
192     as per applications which were using Catalyst::Engine::PSGI
193
194     Catalyst::Engine::PSGI is now considered fully deprecated.
195
196   - The private _dump method in Catalyst::Log is now deprecated. The dumper is
197     not pluggable and which dumper to use should be a user choice. Using
198     an imported Dump() or Dumper() function is less typing than $c->log->_dump
199     and as this method is unused anywhere else in Catalyst, it has been scheduled
200     for removal as a cleanup. Calling this method will now emit a stack trace
201     on first call (but not on subsequent calls).
202
203  Back compatibility fixes:
204   - Applications still using Catalyst::Engine::PSGI as they rely on
205     $c->request->env - this is now the provided (and recommended) way of
206     accessing the raw PSGI environment.
207
208  Tests:
209   - Spurious warnings have been removed from the test suite
210
211  Documentation:
212   - Fix the display of PROJECT FOUNDER and CONTRIBUTORS sections in the
213     documentation. These were erroneously being emitted when the Pod
214     was converted to HTML for search.cpan.org
215
216   - Fix documentation for the build_psgi_app app method. Previously the
217     documentation advised that it provided the psgi app already wrapped
218     in default middleware. This is not the case - it is the raw app psgi
219
220 5.90007 - 2011-11-22 20:35:00
221
222   New features:
223    - Implement a match_captures hook which, if it exists on an action,
224      is called with the $ctx and \@captures and is expected to return
225      true to continue the chain matching and false to stop matching.
226      This can be used to implement action classes or roles which match
227      conditionally (for example only matching captures which are integers).
228
229   Bug fixes:
230    - Lighttpd script name fix is only applied for lighttpd versions
231      < 1.4.23. This should fix non-root installs of lighttpd in versions
232      over that.
233    - Prepare_action is now inside a try {} block, so that requests containing
234      bad unicode can be appropriately trapped by
235      Catalyst::Plugin::Unicode::Encoding
236
237 5.90006 - 2011-10-25 09:18:00
238
239   New features:
240    - A new 'run_options' class data method has been added to Catalyst.pm
241      This is used to store all the options passed by scripts, allowing
242      application authors to add custom options to their scripts then
243      get them passed through to the application.
244
245   Doumentation:
246    - Clarify that if you manually write your own .psgi file, then optional
247      proxy support (via the using_frontend_proxy config value) will not be
248      enabled unless you explicitly apply the default middlewares from
249      Catalyst, or you apply the middleware manually.
250
251   Bug fixes:
252    - Fix issue due to perl internals bugs in 5.8 and 5.10 (not present in
253      other perl versions) require can pass the context inappropriately,
254      meaning that some methods of loading classes can fail due to void
255      context being passed throuh to make_immutable, causing it to not return
256      a value.
257      This bug caused loading Catalyst::Script::XXX to fail and is fixed
258      both by bumping the Class::Load dependency, and also adding an explicit
259      '1;' to the end of the classes, avoiding the context issue.
260
261    - Fix using_frontend_proxy support in mod_perl by using the psgi wrapped
262      in default middleware in mod_perl context, rather than the raw psgi.
263
264 5.90005 - 2011-10-22 13:35:00
265
266   New features:
267
268    - $c->uri_for_action can now take an array of CaptureArgs and Args
269      If you have an action which has both, then you can now say:
270      $c->uri_for_action('/myaction', [@captures, @args]);
271      whereas before you had to say:
272      $c->uri_for_action('/myaction', [@captures], @args);
273      The previous form is still supported, however in many cases it is
274      easier for the application code to not have to differentiate between
275      the two.
276
277    - Catalyst::ScriptRunner has been enhanced so that it will now
278      load and apply traits, making it easier to customise.
279      - MyApp::TraitFor::Script (if it exists) will be applied to all
280        scripts in the application.
281      - MyApp::TraitFor::Script::XXXX will be applied to the relevant script
282        (for example MyApp::TraitFor::Script::Server will be applied to
283        MyApp::Script::Server if it exists, or Catalyst::Script::Server
284        otherwise).
285
286   Documentation:
287
288    - Document how to get the vhost of the request in $c->req->hostname
289      to avoid confusion
290    - Remove documentation showing Global / Regex / Private actionsi
291      as whilst these still exist (and work), they are not recommended.
292    - Remove references to the -Engine flag.
293    - Remove references to the deprecated Catalyst->plugin method
294    - Spelling fixed (and tested) throughout the documentation
295    - Note that wrapping the setup method will not work with method modifiers
296      and provide an alternative.
297
298 5.90004 - 2011-10-11 17:12:00
299
300   Bug fixes:
301
302    - Don't guess engine class names when setting an engine through
303      MyApp->engine_class.
304
305 5.90003 - 2011-10-05 08:32:00
306   Bug fixes:
307
308    - Make default body reponses for 302s W3C compliant. RT#71237
309
310    - Fix issue where groups of attributes to override controller actions
311      in config would be (incorrectly) overwritten, if the parser for that
312      attribute mangled the contents of the attribute. This was found
313      with Catalyst::Controller::ActionRole, where Does => [ '+Foo' ]
314      would be transformed to Does => [ 'Foo' ] and written back to config,
315      whereas Does => '+Foo' would not be changed in config. RT#65463
316
317   Enhancements:
318
319    - Set a matching Content-type for the redirect if Catalyst sets the
320      body. This is for compatibility with a WatchGuard Firewall.
321
322   Backward compatibility fixes:
323
324    - Restore (an almost empty) Catalyst::Engine::HTTP to the dist for old
325      scripts which explictly require Catalyst::Engine::HTTP
326
327   Documentation fixes:
328
329    - Document Catalyst::Plugin::Authentication fails tests unless
330      you use the latest version with Catalyst 5.9
331
332    - Clarify that prepare is called as a class method
333
334    - Clarify use of uri_for further. RT#57011
335
336 5.90002 - 2011-08-22 21:44:00
337   Backward compatibility fixes:
338
339     - Deploying via mod_perl in some cases is fixed by making
340       Catalyst::EngineLoader detect mod_perl in more generic
341       circumstances.
342       https://github.com/miyagawa/Plack/issues/239
343
344   Documentation fixes:
345
346     - Fix incorrect example in Catalyst::PSGI.
347     - Add note that if you are using the PSGI engine, then $c->req->env
348       needs to become $c->engine->env when you upgrade.
349
350 5.90001 - 2011-08-15 22:42
351
352  Realise that we accidentally chopped a digit off the versioning scheme
353  without anyone noticing, which is a bad thing.
354
355  Feel like a fool. Well done t0m.
356
357  Cut another release.
358
359 5.9000 - 2011-08-15 22:18
360
361  See Catalyst::Delta for the major changes in this release.
362
363  Changelog since the last TRIAL release:
364
365    Backward compatibility fixes:
366
367     - Fix calling MyApp->engine_class to set the engine class manually.
368
369     - Re-add a $res->headers->{status} field to Catalyst::Test responses.
370       This _should_ be accessed with $c->res->code instead, but is here
371       for backward compatibility.
372
373    Documentation:
374
375     - Documentation which was in the now removed Catalyst::Engine::* classes
376       has been moved to Catalyst::Manual::Deployment
377
378    Changes:
379
380     - nginx specific behaviour is removed as it is not needed with any
381       web server configuration I can come up with (recommended config is
382       documented in Catalst::Manual::Deployment::nginx::FastCGI)
383
384 5.89003 2011-07-28 20:11:50 (TRIAL release)
385
386  Backward compatibility fixes:
387
388   - Application scripts which have not been upgraded to newer
389     Catalyst::Script::XXX style scripts have been fixed
390
391  Bug fixes:
392
393   - mod_perl handler fixed to work with application classes which have manually
394     been made immutable.
395
396   - Scripts now force the Plack engine choice manually, rather than relying
397     on auto-detection, as the automatic mechanism gets it wrong if (for
398     example) Coro is loaded.
399
400   - Server script option for --fork --keepalive are now handled by loading
401     the Starman server, rather than silently ignored.
402
403   - Server script options for --background and --pid are now fixed by
404     using MooseX::Deamonize
405
406   - Plack middlewares to deal with issues in Lighttpd and IIS6 are now
407     automatically applied to applications and deployments which need them
408     (when there is not a user written .psgi script available).
409     This fixes compatibility with previous stable releases for applications
410     deployed in these environments.
411
412  Enhancements:
413
414   - Catalyst::Test's remote_request method not uses Plack::Test to perform
415     the remote request.
416
417  Documentation:
418   - Added a Catalyst::PSGI manual page with information about writing a .psgi
419     file for your application.
420
421    - Catalyst::Uprading has been improved, and the status of old Catalyst
422      engines clarified.
423
424  Deprecations:
425   - Catalyst::Test's local_request function is now deprecated. You should just
426     use the normal request function against a local server instead.
427
428 5.80033 2011-07-24 16:09:00
429
430  Bug fixes:
431   - Fix Catalyst::Request so that the hostname accessor is not incorrectly
432     populated with 'localhost' if a reverse DNS lookup fails.
433
434   - Fix Path actions debug screen to display number of arguments
435
436   - Fix a regression that prevented configuring attributes for all actions using
437     ->config(actions => { '*' => \%attrs }) from working
438
439   - Append $\ in Catalyst::Response->print to more closely match
440     IO::Handle's behaviour.
441
442   - Fixed situation where a detach($action) from a forward within auto
443     was not breaking out correctly
444
445   - Fix the disable_component_resolution_regex_fallback config setting
446     to also work in the $c->component method.
447
448   - Handle users setting cookies with an undef value by not trying to
449     output that cookie (rather than trying to do so and causing an exception
450     as previously happened). A warning is logged if this occurs in debug
451     mode.
452   - Update tests to ignore $ENV{CATALYST_HOME} where required
453
454   - Change repository metadata to point at git.
455
456   - Clean namespaces in Catalyst::Request::Upload
457
458   - Catalyst::Test: Fixes to action_ok, action_redirect and action_notfound
459     test functions to be better documented, and have better default test
460     names.
461
462   - Update tests to ignore CATALYST_HOME env var.
463
464 5.89002 2011-03-02 11:30:00 (TRIAL release)
465
466  Bug fixes:
467   - Fix a couple of test failures caused by optional dependencies such as FCGI
468     not being installed.
469
470  Refactoring:
471   - Simplified the API for getting a PSGI application code reference for a
472     Catalyst application for use in, for example, .psgi files. See
473     Catalyst::Upgrading for details.
474
475 5.89001 2011-03-01 15:27:00 (TRIAL release)
476
477  Bug fixes:
478   - Fixed command-line argument passing in Catalyst::Script::FastCGI.
479
480   - Fixed Catalyst::Engine::Stomp compatibility. Applications using
481     Catalyst::Engine::Stomp are believed to continue working without
482     any changes with the new Catalyst major version.
483
484   - Fixed issues auto-loading engine with older scripts.
485
486  Known problems:
487   - Catalyst::Engine::Wx is officially unsupported and BROKEN. If you
488     are using this engine then please get in touch with us and we'll
489     be happy to help with the changes it needs to be compatible with
490     the new major version of Catalyst.
491
492  Documentation:
493   - The section of Catalyst::Upgrading describing how to upgrade to version 5.90
494     of Catalyst has been much improved.
495
496 5.80032 2011-02-23 01:10:00
497
498  Bug fixes:
499   - Fix compatibility issue with code which was testing the value of
500     $c->res->body multiple times. Previously this would cause the value
501     to be built, and ergo cause the $c->res->has_body predicate to start
502     returning true.
503     Having a response body is indicated by $c->res->body being defined.
504
505   - Fix bug with calling $upload->slurp multiple times in one request
506     not working as expected as the file handle wasn't returned to
507     the zero position. (Adam Sjøgren)
508
509   - Fix some weird perl 5.8 situations where $c can get squashed unexpectedly
510     in Catalyst::execute
511
512   - Fix chained dispatch where chains were being compared for length (number
513     of private parts in the chain) vs where they are being compared for
514     PathPart length (i.e. number of non-capturing URI elements in your path).
515
516     This bug meant that sometimes multiple Args or CaptureArgs (e.g. /*/*)
517     type paths would be preferred to those with fixed path elements
518     (e.g. /account/*)
519
520  New features:
521    - Add MYAPP_RESTARTER and CATALYST_RESTARTER environment variables to
522      allow the restarter class to be chosen per application or generally.
523
524      This feature was added to enable GUI restarters (such as the soon to
525      be released CatalystX::Restarter::GTK to be enabled more easily by
526      developers without changing their application code.
527
528 5.80031 2011-01-31 08:13:02
529
530  Bug fixes:
531   - Update dependency on MooseX::Role::WithOverloading to ensure that
532     a version which can deal with / depends on a new Package::Stash
533     is installed. (As if some other dependency is pulled in during upgrading
534     which results in new Package::Stash, then it can leave you with a broken
535     version of MooseX::Role::WithOverloading.
536
537   - Fix undef warning in Catalyst::Engine::FastCGI when writing an empty
538     body (e.g. doing a redirect)
539
540 5.89000 2011-01-24 09:28:45 (TRIAL release)
541
542  This is a development release from psgi branch of Catalyst-Runtime.
543
544  Removed features:
545
546   - All of the Catalyst::Engine::* namespace is now gone. Instead we only have
547     one Catalyst::Engine class speaking the PSGI protocol natively. Everything
548     the various Catalyst::Engine:: classes did before is now supposed to happen
549     through PSGI handlers such as Plack::Handler::FCGI,
550     Plack::Handler::HTTP::Server::PSGI, Plack::Handler::Apache2, and so
551     on. However, deployment can still work the same as it did before. The
552     catalyst scripts still exist and continue to work.
553
554     If you find anything that either doesn't work anymore as it did before or
555     anything that could be done before with the various Catalyst::Engine::
556     classes, but can't be done anymore with the single PSGI Catalyst::Engine
557     class, please tell us *now*.
558
559 5.80030 2011-01-04 13:13:02
560
561  New features:
562   - Add a --proc_title option to the FCGI script to set the process
563     title.
564   - Allow the response body to be set to `undef' explicitly to indicate the
565     absence of a body. It can be used to indicate that no body should be sent at
566     all and processing of views should be skipped. This is especially useful for
567     things like X-Sendfile, which now no longer require providing fake response
568     bodies to suppress view processing. In order for this to work, you will also
569     have upgrade Catalyst::Action::RenderView to at least version 0.15.
570
571  Bug fixes:
572   - Deal correctly with GLOB file handles in the response body (setting
573     the Content-Length header appropriately)
574   - Chained dispatch has been fixed to always prefer paths
575     with the minimum number of captures (rather than the
576     maximum number of actions). This means that (for example)
577     a URI path /foo/* made out of 2 actions will take preference
578     to a URI path /*/* made out of 3 actions. Please check your applications
579     if you are using chained action and please write new test to report
580     failing case.
581   - Stop relying on bugs in the pure-perl version of Package::Stash. New
582     versions of Package::Stash load Package::Stash::XS if
583     available. Package::Stash::XS fixes some of the bugs of the pure-perl
584     version, exposing our faulty assumption and breaking things. We now work
585     with both old and new versions of Package::Stash, both with and without
586     Package::Stash::XS being installed. Older versions of Catalyst-Runtime also
587     work with both old and new versions of Package::Stash, but only if
588     Package::Stash::XS is *not* installed.
589
590  Documentation:
591   - Clarify that when forwarding or detaching, the end action associated
592     with the original dispatched action will be run afterwards (fallen)
593
594 5.80029 2010-10-03 16:39:00
595
596  New features:
597   - Add a warning when $c->view is called and cannot locate a default_view
598     or current_view. This clarifies the logging when ::RenderView gets
599     confused.
600
601  Warning fixes:
602   - Deal warning in with Moose >= 1.15 if you add a method called 'meta' to a
603     class which already has one by using _add_meta_method.
604
605 5.80028 2010-09-28 20:49:00
606
607  Bug fixes:
608   - use Class::MOP in Catalyst::Utils.
609
610   - Do not keep a reference to a closed over context in ctx_request, allowing
611     the caller to dispose of the request context at their leisure.
612
613   - Changes to be compatible with bleadperl
614
615 5.80027 2010-09-01 22:14:00
616
617  Bug fixes:
618   - Fix an issue with newly added test cases which depended on Catalyst::Action::RenderView
619
620 5.80026 2010-09-01 15:14:00
621
622  Bug fixes:
623   - Fix so that CATALYST_EXCEPTION_CLASS in MyApp is always respected by
624     not loading Catalyst::Exception in Utils.pm BEGIN, because some Scripts::*
625     load Utils before MyApp.pm
626
627   - Fix warnings with new Moose versions about "excludes" during role
628     application
629
630   - Fix warning from MooseX::Getopt regarding duplicate "help" aliases.
631
632   - parse_on_demand fixed when used in conjunction with debug mode.
633     A regression was introduced in 5.80022 which would cause the body
634     to always be parsed for logging at the end of the request when in
635     debug mode. This has been fixed so that if the body has not been parsed
636     by the time the request is logged, then the body is omitted.
637
638   - Fix show_internal_actions config setting producing warnings in debug
639     mode (RT#59738)
640
641   - Make Catalyst::Test::local_request() set the response base from base href
642     in the returned document so that links can be resolved correctly by
643     Test::WWW::Mechanize::Catalyst
644
645  Refactoring:
646    - moved component name sort that happens in setup_components to
647      locate_components to allow methods to wrap around locate_components
648
649  Documentation:
650     - Fix some typos
651
652     - Advertise Catalyst::Plugin::SmartURI
653
654
655 5.80025 2010-07-29 01:50:00
656
657  New features:
658   - An 'action_class' method has been added to Catalyst::Controller to
659     allow controller base classes, roles or traits
660     (e.g. Catalyst::Controller::ActionRole) to more easily override
661     the default action creation.
662
663  Bug fixes:
664   - Fix the --mech and --mechanize options to the myapp_create.pl script
665     to operate correctly by fixing the options passed down into the script.
666   - Fix controllers with no method attributes (where the action definitions
667     are entirely contained in config). RT#58057
668   - Fix running as a CGI under IIS at non-root locations.
669   - Fix warning about "excludes" during role application
670   - Fix warning from MooseX::Getopt regarding duplicate "help" aliases
671
672  Documentation:
673   - Fix missing - in the docs when describing the --mechanize option at one
674     point.
675   - Explained the common practice how to access the component's config
676     values.
677   - Fixed typo in Catalyst/Script/Server.pm (RT #58474)
678
679 5.80024 2010-05-15 11:55:44
680
681   Bug fixes:
682    - Revert the path resolution behaviour to how it used to work before
683      Catalyst 5.80014_02, so that application paths are (by default)
684      resolved from $ENV{PATH_INFO} and $ENV{SCRIPT_NAME}. This fixes backward
685      compatibility breakage seen by a number of people since that release
686      with mod_rewrite and SSI.
687
688   New features:
689    - Add a use_request_uri_for_path config setting to optionally
690      use the (more correct) $ENV{REQUEST_URI} path resolution behaviour.
691
692   Documentation:
693    - Clarify the documentation for the Catalyst::Stats interface.
694    - Copious documentation about the use_request_uri_for_path feature
695      and the implications of setting this to true/false in
696      Catalyst::Engine::CGI
697
698 5.80023 2010-05-07 23:50:27
699
700   Bug fixes:
701    - Ensure to always cleanup temporary uploaded files in all cases, even
702      when exceptions occur during request processing, using HTTP::Body's
703      ->cleanup feature. (RT#41442)
704    - Ensure that Catalyst::Engine::HTTP's options hash is defined before
705      dereferencing it. (RT#49267)
706    - Fix regex special characters in REDIRECT_URL variable breaking
707      the request base. (2nd part of RT#24951)
708    - Fix not stripping backslashes in DispatchType::Regex::uri_for_action
709
710   New features:
711    - Setting __PACKAGE__->config(enable_catalyst_header => 1); in your MyApp.pm
712      now enables the X-Catalyst header being printed when not in debug mode.
713    - Require CGI::Simple::Cookie version 1.109 to ensure support for the
714      HttpOnly flag
715    - Allow the myapp_test.pl script to be given a list of paths which it
716      will retrieve all of. (RT#53653)
717    - Allow parameterized roles to be applied as plugins.
718    - Allow requiring minimum versions of plugins when loading them.
719
720   Documentation:
721    - The Catalyst::Test::get method is documented as returning the raw
722      response bytes without any character decoding (RT#53678)
723
724   Cleanups:
725    - Removal of $Catalyst::PRETTY_VERSION. Future releases will always have the
726      full and unmangled version number, including trailing zeroes, in
727      $Catalyst::VERSION.
728
729 5.80022 2010-03-28 19:43:01
730
731   New features:
732    - Log an extra line in debug mode with the response status code,
733      the content type and content length if available.
734
735   Refactoring / optimizations:
736    - Display of the end of hit debug messages has been factored out into
737      log_headers, log_request, log_request_headers, log_response,
738      log_response_status_line and log_response_headers methods so that
739      plugins which customise how much information is shown on the debug
740      screen as easy to write.
741    - Make all logging of request and response state get the information from
742      $c->dump_these so that there is a unified point from which to hook
743      in parameter filtering (for example).
744    - $c->model/view/controller have become a lot faster for non-regexp names
745      by using direct hash lookup instead of looping.
746    - IP address => hostname mapping for the server is only done once and cached
747      by Catalyst::Engine::HTTP to somewhat mitigate the problem of people
748      developing on machines pointed at slow DNS servers.
749
750   Bugs fixed:
751     - DispatchType::Index's uri_for_action only returns for actions registered
752       with it (prevents 'index :Path' or similar resolving to the wrong URI)
753     - Make sure to construct Upload objects properly, even if there are
754       multiple Content-Type headers (Closes RT#55976).
755
756 5.80021 2010-03-03 23:02:01
757
758   Bug fixed:
759    - $c->uri_for will now escape unsafe characters in captures
760      ($c->request->captures) and correctly encode utf8 charracters.
761
762 5.80020 2010-02-04 06:51:18
763
764   New features:
765     - Allow components to specify additional components to be set up by
766       overriding the expand_modules method. (Oliver Charles)
767
768 5.80019 2010-01-29 01:04:09
769
770   Bug fixed:
771    - Calls to $c->uri_for with private paths as strings (e.g.
772      $c->uri_for('controller/action', 'arg1', 'arg2') ) no longer have
773      / encoded to %2F. This is due to $c->uri_for('static', 'css/foo', $bar)
774      which should not be encoded.
775      Calls with an action object (rather than a string), or uri_for action
776      will still encode / in args and captures to %2F
777
778    - The above noted / => %2F encoding in uri_for_action or uri_for with
779      an action object has been fixed to not just encode the first slash in
780      any set of args/captures.
781
782    - nginx and lighttpd FCGI requests with URI encoded sections as the first
783      path part have been fixed to operate correctly.
784
785    - A source of bogus warnings in Catalyst::Component::BUILDARGS has been
786      removed.
787
788   Documentation:
789    - Improve the documentation about -Home and how Catalyst finds the home path
790      for applications.
791    - Various minor typo fixes.
792
793   New features:
794    - Allow passing additional arguments to action constructors.
795
796 5.80018 2010-01-12 22:24:20
797
798   Bug fixed:
799    - Call ->canonical on URI derived from $ENV{REQUEST_URI} to get
800      paths correctly decoded. This bug was previously hidden by a bug
801      in HTTP::Request::AsCGI.
802
803   Documentation:
804    - Clarify that uri_for_action works on private paths, with example.
805    - Clarify documentation about debug
806
807   Deprecations:
808    - Saying use Catalyst::Test; (without an application name or () to stop
809      the importer running is now deprecated and will issue a warning.
810      You should be saying use Catalyst::Test ();
811
812 5.80017 2010-01-10 02:27:29
813
814   Documentation:
815    - Fix docs for ->forward method when passed a class name - this should
816      be a component name (e.g. View::HTML, not a full class name, like
817      MyApp::View::HTML).
818
819   Bug fixes:
820    - --daemon and -d options to Catalyst::Script::FastCGI are fixed.
821    - Fix the debug dump for applications which use Catalyst::Plugin::Session
822      (RT#52898)
823    - Fix regression in the case where mod_rewrite is being used to rewrite
824      requests into a path below your application base introduced with the
825      %2F related fixes in 5.80014_02.
826    - Do not crash on SIGHUP if Catalyst::Engine::HTTP->run is not passed the
827      argv key in the options hash.
828    - Correctly pass the arguments to Catalyst::Script::Server through to
829      Catalyst::Engine::HTTP->run so that the server can restart itself
830      with the correct options on SIGHUP.
831    - Require new MooseX::MethodAttributes to be compatible with Moose
832      versions >= 0.93_01
833    - Require new MooseX::Role::WithOverloading to be compatible with Moose
834      versions >= 0.93_01
835
836   Cleanups:
837     - Stop suppressing warnings from Class::C3::Adopt::NEXT now that most plugins
838       have been updated to not use NEXT. If you get warnings then please upgrade
839       your components or log a bug with the component author if an upgrade is
840       not available. The Class::C3::Adopt::NEXT documentation contains information
841       about how to suppress the warnings in your application if you need to.
842
843 5.80016 2009-12-11 23:23:33
844
845   Bug fixes:
846
847    - Fix slurping a file to work correctly with binary on Win32 in the
848      encoding test controller.
849
850   Bug fixes in the new scripts (for applications which have been upgraded):
851
852    - Allow --restartdirectory as an option for the Server script, for
853      backwards compatibility. (Dave Rolsky)
854    - The --host option for the server script defaulted to localhost, rather
855      than listening on all interfaces, which was the previous default. (Dave
856      Rolsky)
857    - Restore -p option for pid file in the FastCGI server script.
858    - Fix the script environment variables MYAPP_PORT and MYAPP_RELOAD RT#52604
859    - Fix aliasing applications under non-root paths with mod_rewrite in
860      some apache versions where %ENV{SCRIPT_NAME} is set to the real name of
861      the script, by using $ENV{REDIRECT_URL} which contains the non-rewritten
862      URI.
863    - Fix usage display when myapp_create.pl is run with no arguments. RT#52630
864
865   New features:
866
867    - The __MOP__ hash element is suppressed from being dumped fully
868      (and instead stringified) when dumping the error screen to be
869      less packed with information of no use.
870
871   Documentation:
872
873    - Fix Pod nits (RT#52370)
874
875 5.80015 2009-12-02 15:13:54
876   Bug fixes:
877    - Fix bug in Catalyst::Engine which would cause a request parsing to end
878      prematurely in the hypothetical case where calling $engine->read returned
879      the single character '0'.
880    - Fix failing tests when combined with new HTTP::Request::AsCGI
881
882   Documentation:
883    - Improved documentation on read and read_chunk methods in Catalyst::Engine.
884    - Fix reversal of SCRIPT_NAME and PATH_INFO in previously correct nginx
885      FastCGI documentation introduced in _02.
886
887 5.80014_02 2009-12-01 00:55:23
888   Bug fixes:
889    - Fix reporting the wrong Content-Length if the response body is an
890      upgraded string. Strings mean the same thing whether or not they are
891      upgraded, may get upgraded even after they are encoded, and will
892      produce the same output either way, but bytes::length returns too big
893      values for upgraded strings containing characters >127
894    - Fix t/live_fork.t with bleadperl (RT#52100)
895    - Set $ENV{PATH_INFO} from $ENV{REQUEST_URI} combined with
896      $ENV{SCRIPT_NAME} if possible. This is many web servers always fully
897      decode PATH_INFO including URI reserved characters. This allows us to
898      tell foo%2cbar from foo%252cbar, and fixes issues with %2F in paths
899      being incorrectly decoded, resulting in too many path parts (rather
900      than 1 path part containing a /, on some web servers (at least nginx).
901      (RT#50082)
902    - Require new HTTP::Request::AsCGI so that it fully decodes $ENV{PATH_INFO}
903      in non CGI contexts. (RT#50082)
904
905   Refactoring / cleanups:
906    - NoTabs and Pod tests moved to t/author so that they're not run
907      (and then skipped) normally.
908
909   Documentation:
910     - Fix Pod nits in Catalyst::Response (RT#51818)
911
912 5.80014_01 2009-11-22 20:01:23
913
914   Bug fixes:
915    - Filehandle now forced to binmode in CGI and FastCGI engines. This appears
916      to correct some UTF-8 issues, but may break people's code which relies
917      on the old behaviour.
918
919   Refactoring / cleanups:
920    - Plugins which inherit from Catalyst::Controller or Catalyst::Component
921      are deprecated and now issue warnings.
922
923 5.80014 2009-11-21 02:51:14
924
925    Bug fixes:
926     - Require MooseX::MethodAttributes 0.17. This in turn requires new
927       MooseX::Types to stop warnings in Moose 0.91, and correctly supports
928       role combination of roles containing attributed methods.
929     - Catalyst::Dispatcher::dispatch_types no longer throws deprecated warnings
930       as there is no recommended alternative.
931     - Improved the suggested fix warning when component resolution uses regex
932       fallback for fully qualified component names.
933     - Catalyst::Test::local_request sets ->request on the response.
934     - Log flush moved to the end of setup so that roles and plugins which
935       hook setup_finalize can log things and have them appear in application
936       startup, rather than with the first hit.
937     - Require a newer version of LWP to avoid failing tests.
938     - Stop warnings when actions are forwarded to during dispatch.
939     - Remove warnings for using Catalyst::Dispatcher->dispatch_types as this is a
940       valid method to publicly call on the dispatcher.
941     - Args ($c->request->args) and CaptureArgs ($c->request->captrues)
942       passed to $c->uri_for with an action object ($c->action) will now
943       correctly round-trip when args or captures contain / as it is now
944       correctly uri encoded to %2F.
945
946   Documentation:
947     - Document no-args call to $c->uri_for.
948     - Document all top level application configuration parameters.
949     - Clarify how to fix actions in your application class (which is
950       deprecated and causes warnings).
951     - Pod fixes for ContextClosure.
952     - Fix documentation for go/visit to reference captures and arguments
953       in the correct order.
954     - Update $c->forward and $c->state documentation to address scalar
955       context.
956     - Pod fix in Catalyst::Request (RT#51490)
957     - Pod fixes to refer to ::Controller:: rather than ::C:: as the latter
958       is deprecated (RT#51489)
959
960   New features:
961     - Added disable_component_resolution_regex_fallback config option to
962       switch off (deprecated) regex fallback for component resolution.
963     - Added an nginx-specific behavior to the FastCGI engine to allow
964       proper PATH_INFO and SCRIPT_NAME processing for non-root applications
965     - Enable Catalyst::Utils::home() to find home within Dist::Zilla built
966       distributions
967     - Added the Catalyst::Exception::Interface role defining the interface
968       exception classes need to implement.
969     - Added Catalyst::Exception::Basic as a basic implementation of
970       Catalyst::Exception::Interface and made the existing exception classes
971       use it.
972
973   Refactoring / cleanups:
974     - Remove documentation for the case_sensitive setting
975     - Warning is now emitted at application startup if the case_sensitive
976       setting is turned on. This setting is not used by anyone, not
977       believed to be useful and adds unnecessary complexity to controllers
978       and the dispatcher. If you are using this setting and have good reasons
979       why it should stay then you need to be shouting, now.
980     - Writing to $c->req->body now fails as doing this never makes sense.
981
982 5.80013 2009-09-17 11:07:04
983
984    Bug fixes:
985      - Preserve immutable_options when temporarily making a class mutable in
986        Catalyst::ClassData as this is needed by new Class::MOP.
987        This could have potentially caused issues when using the deprecated runtime
988        plugins feature in an application with plugins which define their own new
989        method.
990      - Require new Moose version and new versions of various dependencies
991        to avoid warnings from newest Moose release.
992      - Fix go / visit expecting captures and arguments in reverse order.
993
994   Documentation:
995      - Rework the $c->go documentation to make it more clear.
996      - Additional documentation in Catalyst::Upgrading covering more deprecation
997        warnings.
998
999   Refactoring / cleanups:
1000      - Action methods in the application class are deprecated and applications
1001        using them will now generate a warning at startup.
1002      - The -short option has been removed from catalyst.pl, stopping new
1003        applications from being generated using the ::[MVC]:: naming scheme as
1004        this is deprecated and generates warnings. RT#49771
1005
1006 5.80012 2009-09-09 19:09:09
1007
1008   Bug fixes:
1009      - Fix t/optional_http-server.t test.
1010      - Fix t/optional_http-server-restart.t test.
1011      - Fix duplicate components being loaded at setup time, each component is
1012        now loaded at most once + tests.
1013      - Fix backward compatibility - hash key configured actions are stored in
1014        is returned to 'actions'.
1015      - Fix get_action_methods returning duplicate methods when a method is both
1016        decorated with method attributes and set as an action in config.
1017
1018   Refactoring / cleanups:
1019      - Reduce minimum supported perl version from 5.8.6 to 5.8.4 as there are
1020        many people still running/testing this version with no known issues.
1021
1022   Tests:
1023      - Make the optional_http_server.t test an author only test which must be
1024        run by authors to stop it being broken again.
1025      - Fix recursion warnings in the test suites.
1026
1027 5.80011 2009-08-23 13:48:15
1028
1029   Bug fixes:
1030       - Remove leftovers of the restarter engine. The removed code caused test
1031         failures, which weren't apparent for anyone still having an old version
1032         installed in @INC.
1033
1034 5.80010 2009-08-21 23:32:15
1035
1036   Bug fixes:
1037       - Fix and add tests for a regression introduced by 5.80008.
1038         Catalyst::Engine is now able to send out data from filehandles larger
1039         than the default chunksize of 64k again.
1040
1041 5.80009 2009-08-21 22:21:08
1042
1043   Bug fixes:
1044       - Fix and add tests for generating inner packages inside the COMPONENT
1045         method, and those packages being correctly registered as components.
1046         This fixes Catalyst::Model::DBIC among others.
1047
1048 5.80008 2009-08-21 17:47:30
1049
1050   Bug fixes:
1051        - Fix replace_constructor warning to actually work if you make your
1052          application class immutable without that option.
1053        - Depend on Module::Pluggable 3.9 to prevent a bug wherein components
1054          in inner packages might not be registered. This especially affected
1055          tests.
1056        - Catalyst::Engine::FastCGI - relax the check for versions of Microsoft
1057          IIS. Provides compatibility with Windows 2008 R2 as well as
1058          (hopefully) future versions.
1059        - In tests which depend on the values of environment variables,
1060          localise the environment, then delete only relevant environment
1061          variables (RT#48555)
1062        - Fix issue with Engine::HTTP not sending headers properly in some cases
1063          (RT#48623)
1064        - Make Catalyst::Engine write at least once when finalizing the response
1065          body from a filehandle, even if the write is empty. This avoids fail
1066          when trying to send out an empty response body from a filehandle.
1067        - Catalyst::Engine::HTTP - Accept a fully qualified absolute URI in the
1068          Request-URI of the Request-Line
1069
1070   Refactoring / cleanups:
1071        - Deleted the Restarter engine and its Watcher code. Use the
1072          new Catalyst::Restarter in a recent Catalyst::Devel instead.
1073        - New unit test for Catalyst::Action 'unit_core_action.t'
1074        - Bump minimum supported perl version from 5.8.1 to 5.8.6 as there are
1075          known issues with 5.8.3.
1076        - Debug output uses dynamic column sizing to create more readable output
1077          when using a larger $ENV{COLUMNS} setting. (groditi)
1078
1079   New features:
1080        - Added private_path method for Catalyst::Action
1081        - Allow uri_for($controller_instance) which will produce a URI
1082          for the controller namespace
1083        - Break setup_components into two more parts: locate_components and
1084          expand_component_module (rjbs)
1085        - Allow Components to return anon classed from their COMPONENT method
1086          correctly, and have action registration work on Controllers returned
1087          as such by adding a catalyst_component_name accessor for all components
1088          which returns the component instance's name to be used when building
1089          actions etc.
1090        - Adding X-Forwarded-Port to allow the frontend proxy to dictate the
1091          frontend port (jshirley)
1092        - Added Catalyst::Stats->created accessor for the time at the start of
1093          the request.
1094
1095   Documentation:
1096        - Fix POD to refer to ->config(key => $val), rather than
1097          ->config->{key} = $val, as the latter form is deprecated.
1098        - Clearer docs for the 'uri_for' method.
1099        - Fix POD refering to CGI::Cookie. We're using CGI::Simple::Cookie.
1100          (Forrest Cahoon)
1101
1102 5.80007 2009-06-30 23:54:34
1103
1104   Bug fixes:
1105        - Don't mangle query parameters passed to uri_for
1106          - Tests for this (Byron Young + Amir Sadoughi)
1107        - Inherited controller methods can now be specified in
1108          config->{action(s)}
1109        - Assigning an undef response body no longer produces warnings
1110        - Fix C3 incompatibility bug caused if you use Moose in MyApp.pm and
1111          add Catalyst to the right hand side of this in @ISA.
1112        - Make Catalyst.pm implement the Component::ApplicationAttribute
1113          interface so defining actions in MyApp.pm works again, if the
1114          actions have attributes that cause $self->_application to be used
1115          (like ActionClass).
1116
1117   New features:
1118        - Add optional second argument to uri_with which appends to existing
1119          params rather than replacing them. (foo=1 becomes foo=1&foo=2 when
1120          uri_with({ foo => 2 }, { mode => 'append' }) is called on a foo=1
1121          URI.
1122
1123 5.80006 2009-06-29 23:37:47
1124
1125   Bug fixes:
1126         - Revert change to URL encode things passed into $c->uri_for
1127           Args and CaptureArgs as this causes breakage to pre-existing
1128           applications.
1129         - Remove use of Test::MockObject as it doesn't install from CPAN
1130           in some environments.
1131         - Remove use of dclone to deep copy configs and replace with
1132           Catalyst::Utils::merge_hashes which has the same effect, of
1133           ensuring child classes don't inherit their parent's config,
1134           except works correctly with closures.
1135         - Add Class::C3::reinitialize into Catalyst::Test to avoid weird
1136           bugs in ctx_request (bokutin in RT#46459)
1137         - Fix issues with _parse_PathPrefix_attr method in Catalyst::Controller
1138           (jasonk in RT#42816)
1139         - Fix bugs with action sorting:
1140           - Path actions sorted so that the most specific wins.
1141           - Action methods named default and index fixed.
1142
1143   New features:
1144         - Use ~ as prefix for plugins or action classes which are located in
1145           MyApp::Plugin / MyApp::Action (mo)
1146         - Controller methods without attributes are now considered actions if
1147           they are specified in config->{action(s)} (mo)
1148         - Add Catalyst::Component::ContextClosure as an easy way to create code
1149           references, that close over the context, without creating leaks.
1150
1151   Refactoring / cleanups:
1152         - Clean namespaces in Catalyst::Exception*.
1153         - Turn Catalyst::Exception into an actual class and make the throw
1154           method create instances of it. They can still be used as normal
1155           strings, as before, as they are overloaded to stringify to their
1156           error message.
1157         - Add a rethrow method to Catalyst::Exception.
1158         - Add Catalyst::Exception::Detach and ::Go, and refactor detach() and
1159           go() to use them instead of magic, global strings.
1160           Fixes RT#47366
1161         - Clean up getting metaclass instance and making app class immutable
1162           again in Catalyst::Test
1163
1164 5.80005 2009-06-06 14:40:00
1165
1166   Behaviour changes:
1167         - Arguments ($c->req->args) in Chained dispatch are now automatically
1168           URL decoded to be consistent with Local/Path dispatch
1169
1170   Documentation:
1171         - Clarify correct techniques for Moose controllers (domm)
1172
1173   Bug fixes:
1174         - Further change pushing 'env' attribute down into Catalyst::Engine
1175           to make $c->engine->env work in all cases (kmx)
1176         - Also fix $c->engine->env in Catalyst::Test tests (kmx)
1177           - Tests for this
1178         - Fix Catalyst failing to start if any plugin changed $_ whilst
1179           loading
1180           - Tests for this
1181         - Be stricter about arguments to Args attributes for Chained actions,
1182           so that they blow up on load instead of causing undefined behavior
1183           later on
1184           - Tests for this
1185         - Prefer Path actions with a smaller (or set) number of Args (caelum)
1186           Bug reported here: http://stackoverflow.com/questions/931653/catalyst-action-that-matches-a-single-file-in-the-root-directory/933181#933181
1187           - Tests for this
1188
1189    New features:
1190         - Add $c->req->remote_user to disambiguate from $c->req->user (dwc)
1191         - Require MooseX::MethodAttributes 0.12 so that action methods
1192           (with attributes) can be used in / composed from Moose roles.
1193         - Allow the generation of cookies with the HTTPOnly flag set
1194           in Catalyst::Engine (kmx)
1195
1196 5.80004 2009-05-18 17:03:23
1197         - Rename the actions attribute in Catalyt::Controller to
1198           _controller_actions to avoid name clashes with application
1199           controller naming. (random)
1200         - Test for using Moose in components which have a non-Moose base class
1201           Fixed by 349cda in Moose 0.78
1202         - Fix deprecation message for Catalyst::Dispatcher to refer
1203           to the class actually calling the deprecated method. RT#45741
1204         - Clarify limitations of $request->base and $request->secure.
1205           (Phil Mitchell)
1206         - Add 'use Catalyst' to documentation for a Moose MyApp class as
1207           noted by dmaki.
1208         - Fix so that / (and other special characters) are URL encoded when
1209           passed into $c->uri_for as Args/CaptureArgs
1210         - Fix development server so that $c->engine->env returns the correct
1211           environment
1212         - Require Moose 0.78 to fix metaclass incompatibility issues
1213         - Require MooseX::MethodAttributes 0.10 and use
1214           Moose::Meta::Class->initialize rather than Moose->init_meta to fix
1215           bugs related to having a 'meta' method in your controller
1216         - Fix cases where your application failing to compile could cause perl
1217           to report 'Unknown Error'
1218         - Support adding Moose::Roles to the plugin list. These are applied to
1219           MyApp after plugins have been pushed onto @ISA
1220         - Fix calling $c->req->parameters as the first thing you do when
1221           parse_on_demand is on
1222
1223 5.80003 2009-04-29 16:23:53
1224         - Various POD tweaks. (hdp, dandv)
1225         - Fix formatting error in the regex fallback warning.
1226         - Convert the dispatcher's and restarter engine's BUILD method to
1227           attribute builders to not override the BUILD method from
1228           MooseX::Emulate::Class::Accessor::Fast.
1229         - Fix classes without metaclasses restarting, when not using
1230           B::Hooks::OP::Check::StashChange
1231         - Fix the unattached chain debug table for endpoints with no
1232           parents at all.
1233         - Turn off test aggregation by default. Only aggregate if the
1234           AGGREGATE_TESTS environment variable is set and a recent
1235           Test::Aggregate is available.
1236         - Bump to MooseX::MethodAttributes 0.09, to gain the
1237           get_nearest_methods_with_attributes method allowing methods without
1238           attributes in a subclass to override those with attributes in a
1239           superclass. This fixes CatalystX::CRUD's method of overriding /
1240           disabling functionality from base controllers.
1241         - Bump HTTP::Request::AsCGI dependency to avoid broken version
1242         - Bump Moose dependency to latest version to fix metaclass
1243           incompatibility issues in some cases.
1244         - Additional tests for setup_stats method.
1245         - Fix log levels in Catalyst::Log to be properly additive.
1246         - Fix RT#43375 by sorting results before testing them
1247         - Fixes for uri_for_action when using Catalyst::DispatchType::Regex
1248           + tests from RT#39369 (norbi)
1249         - Partial rewrite and reoganisation of the C3 docs in
1250           Catalyst::Upgrading based on feedback from kiffin
1251         - If you make your application class immutable and turn off
1252           constructor inlining, Catalyst will die and tell you pass
1253           the (replace_constructor => 1) argument to
1254           make_immutable. (Dave Rolsky)
1255
1256 5.80002 2009-04-22 01:28:36
1257         - Fix CATALYST_DEBUG and MYAPP_DEBUG environment variables
1258           turning debuging on if defined, rather than if set.
1259           They now force debugging on or off, taking precedence over
1260           configuration in your application.
1261           - Tests for this
1262         - pass replace_constructor to the immutable call to ensure
1263           applications get a Moose constructor rather than a C::A one
1264         - Fix issues with restarting the application class due to C3 failures
1265           on perl 5.10
1266         - Work around issues in Moose with initialization order of multiple
1267           levels of non-Moose classes inheriting from a Moose class
1268           - Test for this
1269         - Add backwards compatibility method for Catalyst::Log->body, which
1270           has been made private
1271         - Fix so that calling $c->req->parameters(undef) does not flatten
1272           the request parameters with undef + test
1273         - Fix so that width of table of unattached actions for debugging
1274           ::DispatchType::Chained varies according to your terminal width
1275           (Oleg Kostyuk)
1276         - Fix warning message about linearized @ISA in Catalyst::Component
1277           (Emanuele Zeppieri)
1278         - Require MX::MethodAttributes 0.06 to avoid issues with saying
1279           use base 'Catalyst::Controller'; use Moose; losing actions
1280         - Fix all of's typos in ::Upgrading and ::Delta (hobbs)
1281
1282 5.80001 2009-04-18 22:18
1283         - Don't inline the constructor for Catalyst::Log to avoid a
1284           warning on recent Moose versions.
1285         - Add delta documentation
1286         - Clean up recursion errors
1287         - Extra cross links in dispatch types POD (Ian Wells)
1288         - Test uri_with clears query params when they are set to undef
1289           (Ian Wells)
1290         - Complain about old Catalyst::Devel versions which generated
1291           ->setup(qw/-Debug... etc. as this is not recommended
1292
1293 5.8000_07 2009-04-12 13:37
1294         - Add the Catalyst::Dispatcher->dispatch_type method (ash)
1295         - Throw an exception rather than loading an app if an action
1296           tries to chain to itself
1297           - Tests for this
1298         - Change the $c->visit and $c->go methods to optionally take
1299           CaptureArgs, making them useful to call ActionChains with
1300           - Tests for this (radek)
1301         - Fix _invoke_as_component method to find the proper action instance
1302           for dispatchable actions so that ->visit or ->going to ActionChains
1303           with qw/Class::Name method_name/ works correctly
1304           - Tests for this (radek)
1305         - Added Catalyst::Test::ctx_request to be able to inspect
1306           the context object after a request is made (Jos Boumans)
1307         - debug() POD rewrite (jhannah)
1308         - Change the warning when you have conflicting components to
1309           present a list
1310         - Move NEXT use and testing deprecated features out to its own
1311           test application so that the main TestApp isn't polluted with
1312           spurious warnings
1313         - Add a warning for the old ::[MVC]:: style naming scheme
1314           - Test for this
1315         - Kill Class::C3::Adopt::NEXT warnings for the Catalyst:: namespace
1316           in production versions
1317         - Tidy up Catalyst::ClassData to ensure that all components get
1318           the correct metaclass
1319         - Make MyApp.pm restartable by unsetting setup_finished in
1320           the restarter process
1321         - Non-naive implementation of making mutable on restart using
1322           B::Hooks::OP::Check::StashChange if installed
1323           - Tests for this
1324         - Naive implementation of making all components mutable in the
1325           forked restart watcher process so native Moose apps using
1326           immutable restart correctly.
1327           - Tests for this
1328         - Bump Moose dependency to 0.70 so that we avoid nasty surprises
1329           with is_class_loaded and perl 5.80 when you Moosify MyApp.pm
1330         - Clarify that request arguments aren't unescaped automatically
1331           (Simon Bertrang) (Closes RT#41153)
1332         - Don't require C3 for the MRO test
1333         - Bump MX::Emulate::CAF prereq to support list assignment
1334         - Remove useless column in chained action debug table.
1335         - namespace::clean related cleanups
1336         - Import related cleanups and consistency fixes
1337         - Fix test suite TestApp /dump/env action
1338         - Add $res->code as alias for $res->status
1339         - Make Catalyst::ClassData compatible with the latest Class::MOP::Class
1340           changes. Also depend on the latest Class::MOP.
1341         - Add $c->uri_for_action method.
1342         - Don't stringify the meta method. Use its name instead.
1343         - Use MooseX::MethodAttributes::Inheritable to contain action
1344           attributes. This means that attributes are now represented in the MOP,
1345           allowing method modifiers on actions to work as expected.
1346         - Provide a reasonable API in Catalyst::Controller for working with
1347           and registering actions, allowing a controller sub-class to replace
1348           subroutine attributes for action declerations with an alternate
1349           syntax.
1350         - Instantiate correct sub-class of Moose::Meta::Class for non-Moose
1351           components where Catalyst forces the creation of a metaclass instance.
1352           This is more correct, and avoids metaclass incompatibility in complex
1353           cases
1354           - Tests for this
1355         - Use of deprecated Catalyst::Base now warns.
1356         - Add uri_with tests
1357
1358 5.8000_06 2009-02-04 21:00
1359         - Disallow writing to config after setup
1360         - Disallow calling setup more than once
1361         - Documentation fix regarding overloading of Engine and Dispatcher
1362           instances
1363         - Several documentation typo fixes
1364         - Stop Makefile.PL from warning about versions that fixed a conflict
1365         - Improved upgrading documentation
1366         - Seed the RNG in each FastCGI child process (Andrew Rodland)
1367         - Properly report dynamic bind port for the development server
1368           (Closes RT#38544)
1369         - Use the way documented by IO::Socket::INET to get the error message
1370           after trying to create a listening socket (Closes RT#41828)
1371         - Don't ignore SIGCHLD while handling requests with the dev server
1372           (Closes RT#42962)
1373
1374 5.8000_05 2008-29-01 00:00
1375         - Text::SimpleTable's go as wide as $ENV{COLUMNS} (jhannah)
1376           Patch written by Oleg Kostyuk <cub.uanic@gmail.com>
1377         - Improve docs for visit (mateu)
1378         - Add docs for finalize hook (dhoss)
1379         - Added ru/ua translations to error page
1380         - Improve the clarity and verbosity of the warning when component
1381           resolution uses regex fallback. (jhannah)
1382         - Handle leading CRLF in HTTP requests sometimes sent by IE6 in
1383           keep-alive requests.
1384         - Fixes for FastCGI with IIS 6.0 (janus)
1385         - Passing request method exported by Catalyst::Test an extra
1386           parameter used to be ignored, but started breaking if the parameter
1387           was not a hash in 5.8000_04. Extra parameter is now ignored if
1388           it isn't a hashref
1389         - Fix request argumentss getting corrupted if you override the
1390           dispatcher and call an action which detaches (for
1391           Catalyst::Plugin::Authorization::ACL)
1392         - Fix calling use Catalyst::Test 'MyApp' 'foo' which used to work,
1393           but stopped as the 2nd parameter can be an options hash now
1394         - Bump Moose dependency to fix make_immutable bug
1395         - Use compile time extends in Catalyst::Controller
1396         - Make Catalyst::Request::uploads attribute non-lazy, to fix
1397           test for Catalyst-Engine-Apache
1398         - Bump version of MooseX::Emulate::Class::Accessor::Fast
1399         - Stop using MooseX::Adopt::Class::Accessor::Fast by default, to stop
1400           breaking other packages which use Class::Accessor::Fast
1401         - Remove unused action_container_class attribute from
1402           Catalyst::Dispatcher
1403         - Replace {_body} instance access with calls to _body accessors
1404         - Add backwards compatibility alias methods for private attributes on
1405           Catalyst::Dispatcher which used to be public. Needed by
1406           Catalyst::Plugin::Server and  Catalyst::Plugin::Authorization::ACL
1407         - Fix return value of $c->req->body, which delegates to the body
1408           method on the requests HTTP::Body instance
1409           - Test for this
1410         - Fix calling $c->req->body from inside an overridden prepare_action
1411           method in a plugin, as used by Catalyst::Plugin::Server
1412           - Test for this
1413         - Fix assignment to Catalyst::Dispatcher's preload_dispatch_types and
1414           postload_dispatch_types attributes - assigning a list should later
1415           return a listref. Fixes Catalyst::Plugin::Server.
1416           - Tests for this
1417         - Change streaming test to serve itself rather than 01use.t, making
1418           test sync for engines easier
1419         - Refactor capturing of $app from Catalyst::Controller into
1420           Catalyst::Component::ApplicationAttribute for easier reuse in other
1421           components
1422         - Make the test suites YAML dependency optional
1423         - Make debug output show class name for the engine and dispatcher
1424           rather than the stringified ref.
1425         - Make MyApp immutable at the end of the scope after the setup
1426           method is called, fixing issues with plugins which have their
1427           own new methods by inlining a constructor on MyApp
1428           - Test for this and method modifiers in MyApp
1429         - Fix bug causing Catalyst::Request::Upload's basename method
1430           to return undef
1431           - Test for this (Carl Franks)
1432         - Fix loading of classes which do not define any symbols to not
1433           die, as it didn't in 5.70
1434           - Test for this
1435         - Bump MooseX::Emulate::Class::Accessor::Fast dependency
1436           to force new version which fixes a lot of plugins
1437         - Make log levels additive, and add documentation and tests
1438           for the setup_log method, which previously had none.
1439           Sewn together by from two patches provided by David E. Wheeler
1440         - Switch an around 'new' in Catalyst::Controller to a BUILDARGS
1441           method as it's much neater and more obvious what is going on
1442         - Add a clearer method on request and response _context
1443           attributes, and use if from ::Engine rather than deleting
1444           the key from the instance hash
1445         - Use handles on tree attribute of Catalyst::Stats to replace
1446           trivial delegation methods
1447         - Change the following direct hash accesses into attributes:
1448           Catalyst::Engine: _prepared_write
1449           Catalyst::Engine::CGI: _header_buf
1450           Catalyst::Engine::HTTP: options, _keepalive, _write_error
1451           Catalyst::Request: _path
1452           Catalyst::Stats: tree
1453         - Fix issues in Catalyst::Controller::WrapCGI
1454           and any other components which import (or define) their
1455           own meta method by always explicitly calling
1456           Class::MOP::Object->meta inside Catalyst
1457           - Add test for this
1458         - Add test case for the bug which is causing the
1459           Catalyst::Plugin::Authentication tests to fail
1460         - Fix a bug in uri_for which could cause it to generate paths
1461           with multiple slashes in them.
1462           - Add test for this
1463         - Fix SKIP block name in t/optional_http-server-restart.t,
1464           stopping 'Label not found for "last SKIP"' error from
1465           Test::More
1466         - Workaround max_redirect 0 bug in LWP
1467         - Move live_engine_response_print into aggregate
1468         - Fix dependency bug, s/parent/base/ in new test
1469         - Fix optional tests to run the live tests in the aggregate
1470           dir
1471         - Fix Catalyst->go error in remote tests
1472         - Fix upload test to work with remote servers, don't check for
1473           deleted files
1474         - Fix engine_request_uri tests to work on remote server with
1475           different URI
1476
1477 5.8000_04  2008-12-05 12:15:00
1478         - Silence Class::C3::Adopt::NEXT warnings in the test suite
1479         - Fix loads of 'used once, possible typo' warnings
1480         - Additional tests to ensure upload temp files are deleted
1481         - Remove use of NEXT from the test suite, except for one case
1482           which tests if Class::C3::Adopt::NEXT is working
1483         - Use a predicate to avoid recursion in cases where the uri
1484           method is overridden by a plugin, and calls the base method,
1485           for example Catalyst::Plugin::SmartURI
1486           - Test for this (caelum)
1487         - Compose the MooseX::Emulate::Class::Accessor::Fast role to
1488           Catalyst::Action, Catalyst::Request, and all other modules which
1489           inherit from Class::Accessor::Fast in 5.70.
1490           This fixes:
1491             - Catalyst::Controller::HTML::FormFu (zamolxes)
1492             - Catalyst::Request::REST
1493           - Test for this
1494         - Make hostname resolution lazy (Marc Mims)
1495         - Support mocking virtualhosts in test suite (Jason Gottshall)
1496         - Add README
1497         - Fix TODO list
1498         - Use Class::C3::Adopt::NEXT
1499         - Ignore C3 warnings on 5.10 when testing ensure_class_loaded
1500         - Add TODO test for chained bug (gbjk)
1501         - Fix list address in documentation (zarquon)
1502         - Fix ACCEPT_CONTEXT on MyApp, called as a class method
1503            - Test for this
1504         - Bump MooseX::Emulate::Class::Accessor::Fast version requirement to
1505           get more back compatibility
1506         - Improve documentation for $req->captures (caelum)
1507         - Fix a bug in Catalyst::Stats, stopping garbage being inserted into
1508           the stats if a user calls begin => but no end => (jhannah)
1509            - Test for this (jhannah)
1510         - Trim lines sooner in stats to avoid ugly Text::SimpleTable wrapping
1511           (jhannah)
1512         - Change Catalyst::ClassData to tweak the symbol table inline for
1513           performance after profiling
1514         - Fix POD typo in finalize_error (jhannah)
1515         - Add tests to ensure that we delete the temp files created by
1516           HTTP::Body's OctetStream parser
1517
1518 5.8000_03 2008-10-14 14:13:00
1519         - Fix forwarding to Catalyst::Action objects.
1520         - Fix links to the mailing lists (RT #39754 and Florian Ragwitz).
1521         - Use Class::MOP instead of Class::Inspector.
1522         - Change Catalyst::Test to use Sub::Exporter.
1523         - Fixed typo in Engine::HTTP::Restarter::Watcher causing -r to complain.
1524
1525 5.8000_02 2008-10-14 07:59:00
1526        - Fix manifest
1527
1528 5.8000_01 2008-10-13 22:52:00
1529         - Port to Moose
1530         - Added test for action stringify
1531         - Added test for component instances getting $self->{value} from config.
1532         - Add Catalyst::Response->print() method
1533         - Optionally aggregate tests using Test::Aggregate.
1534         - Additional docs for uri_for to mention how to use $c->action and
1535           $c->req->captures (jhannah)
1536         - List unattached chained actions in Debug mode.
1537         - Pod formatting fix for Engine::FastCGI (Oleg Kostyuk).
1538         - Add visit, a returning ->go
1539
1540 5.7XXXXXX XXXX
1541         - Workaround change in LWP that broke a cookie test (RT #40037)
1542         - Back out go() since that feature's been pushed to 5.80
1543         - Fix some Win32 test failures
1544         - Add pt translation of error message (wreis)
1545         - Make :Chained('../action') work
1546         - Add test actions
1547         - Chained doc improvements (rev 8326-8328)
1548
1549 5.7099_03 2008-07-20 10:10:00
1550         - Fix regressions for regexp fallback in model(), view() and controller()
1551         - Added the supplied argument to the regexp fallback warning for easier
1552           debugging
1553         - Ensure ACCEPT_CONTEXT is called for results from component()
1554
1555 5.7099_02 2008-07-16 19:10:00
1556         - Added PathPrefix attribute
1557         - Removed Catalyst::Build; we've long since moved to Module::Install
1558         - Updated Catalyst::Test docs to mention the use of HTTP::Request
1559           objects
1560
1561 5.7099_01 2008-06-25 22:36:00
1562         - Refactored component resolution (component(), models(), model(), et al). We now
1563           throw warnings for two reasons:
1564           1) model() or view() was called with no arguments, and two results are returned
1565              -- set default_(model|view), current_(model|view) or current_(model|view)_instance
1566              instead
1567           2) you call a component resolution method with a string, and it resorts to a regexp
1568              fallback wherein a result is returned -- if you really want to search, call the
1569              method with a regex as the argument
1570         - remove 0-length query string components so warnings aren't thrown (RT #36428)
1571         - Update HTTP::Body dep so that the uploadtmp config value will work (RT #22540)
1572         - Fix for LocalRegex when used in the Root controller
1573         - Get some of the optional_* tests working from dirs with spaces (RT #26455)
1574         - Fix Catalyst::Utils::home() when application .pm is in the current dir (RT #34437)
1575         - Added the ability to remove parameters in req->uri_with() by passing in
1576           an undef value (RT #34782)
1577         - Added $c->go, to do an internal redispatch to another action, while retaining the
1578           contents of the stash
1579
1580 5.7014  2008-05-25 15:26:00
1581         - Addition of .conf in restart regex in Catalyst::Engine::HTTP::Restarter::Watcher
1582         - Fix regression for relative uri_for arguments after a forward()
1583           introduced in 5.7013 (Peter Karman)
1584         - Fix regression for "sub foo : Path {}" in the root controller which
1585           was introduced when attempting to allow "0" as a Path.
1586
1587 5.7013  2008-05-16 18:20:00
1588         - Provide backwards compatability methods in Catalyst::Stats
1589         - Fix subdirs for scripts that run in subdirs more than one level deep.
1590         - Added test and updated docs for handling the Authorization header
1591           under mod_fastcgi/mod_cgi.
1592         - Fixed bug in HTTP engine where the connection was not closed properly if the
1593           client disconnected before sending any headers. (Ton Voon)
1594         - POD fix, IO::FileHandle => IO::Handle (RT #35690)
1595         - Fix grammar on welcome page (RT #33236)
1596         - Fix for Path('0') handling (RT #29334)
1597         - Workaround for Win32 and c3_mro.t (RT #26452, tested by Kenichi Ishigaki)
1598         - Fix for encoding query parameters
1599         - Fix Chained multiple test
1600
1601 5.7012  2007-12-16 23:44:00
1602         - Fix uri_for()'s and uri_with()'s handling of multibyte chars
1603           (Daisuke Murase)
1604         - Fix __PACKAGE__->config->{foo} = 'bar' case with subclassing
1605         - Add Catalyst::Stats (Jon Schutz)
1606         - Fixed a bug where ?q=bar=baz is decoded as q=>'bar', not 'bar=baz'.
1607           (Tatsuhiko Miyagawa, Masahiro Nagano)
1608         - Fixed a bug where -rr (restart regex) command line option could cause
1609           shell errors. (Aristotle Pagaltzis, Chisel Wright)
1610
1611 5.7011  2007-10-18 20:40:00
1612         - Allow multiple restart directories and added option to follow
1613           symlinks in the HTTP::Restarter engine (Sebastian Willert)
1614         - Fixed t/optional_http-server-restart.t so it actually tests
1615           if the server restarted or notified of an error (Sebastian Willert)
1616         - Return child PID from the HTTP engine when run with the 'background' option.
1617           (Emanuele Zeppieri)
1618         - Fixed bug in HTTP engine where writes could fail with
1619           'Resource temporarily unavailable'.
1620         - Fixed bug where %2b in query parameter is doubly decoded to ' ', instead of '+'
1621           (RT #30087, Gavin Henry, Tatsuhiko Miyagawa, Oleg Pronin)
1622         - Fixed bug where req->base and req->uri would include a port number when running
1623           in SSL mode.
1624         - Removed unnecessary sprintf in debug mode that caused warnings on locales where
1625           commas are used for decimal markers.
1626         - Improved error message for case when server picks up editor save
1627           files as module names. (James Mastros)
1628
1629 5.7010  2007-08-22 07:41:00
1630         - Resource forks in 5.7009
1631
1632 5.7009  2007-08-22 00:14:00
1633         - Moved Manual.pod to Manual.pm and clarified status of
1634           Catalyst-Manual dist
1635         - Doc patches to Catalyst::Controller
1636         - remove ignore_loaded from plugin load, commenting why
1637         - document the ignore_loaded feature in Catalyst::Utils
1638         - Add testing of inline plugins.
1639
1640 5.7008  2007-08-13 08:40:00
1641         - Added $c->request->query_keywords for getting the keywords
1642           (a query string with no parameters).
1643         - Add undef warning for uri_for.
1644         - Fix bug where a nested component would be setup twice.
1645         - Make ensure_class_loaded behave better with malformed class name.
1646         - Make _register_plugin use ensure_class_loaded.
1647         - Remove 'Argument "??" isn't numeric in sprintf' warning.
1648           (Emanuele Zeppieri)
1649         - Fixed a bug where Content-Length could be set to 0 if a filehandle
1650           object in $c->response->body did not report a size.
1651         - Fixed issue where development server running in fork mode did not
1652           properly exit after a write error.
1653           (http://rt.cpan.org/Ticket/Display.html?id=27135)
1654         - Remove warning for captures that are undef.
1655         - Fixed $c->read and parse_on_demand mode.
1656         - Fixed a bug with the HTTP engine where very large response bodies
1657           would not be sent properly.
1658
1659 5.7007  2007-03-13 14:18:00
1660         - Many performance improvements by not using URI.pm:
1661           * $c->uri_for (approx. 8x faster)
1662           * $c->engine->prepare_path (approx. 27x faster)
1663           * $c->engine->prepare_query_parameters (approx. 5x faster)
1664         - Updated HTTP::Body dependency to 0.9 which fixes the following issues:
1665           * Handle when IE sometimes sends an extra CRLF after the POST body.
1666           * Empty fields in multipart/form-data POSTs are no longer ignored.
1667           * Uploaded files with the name "0" are no longer ignored.
1668         - Sending SIGHUP to the dev server will now cause it to restart.
1669         - Allow "0" for a path in uri_for.
1670         - Performance and stability improvements to the built-in HTTP server.
1671         - Don't ignore file uploads if form contains a text field with the same name.
1672           (Carl Franks)
1673         - Support restart_delay of 0 (for use in the POE engine).
1674         - Skip body processing if we don't have a Content-Length header.
1675           Results in about a 9% performance increase when handling GET/HEAD
1676           requests.
1677         - Add a default body to redirect responses.
1678         - MyApp->model/view now looks at MyApp->config->{default_view/model}
1679           (Bogdan Lucaciu)
1680
1681 5.7006   2006-11-15 14.18
1682         - Updated manifest
1683         - Fix Slurp dependency
1684         - Updated HTTP::Body dependency to 0.6, 0.5 can break on large POST
1685           requests.
1686         - Skip utf8 fix for undef values in uri_with() and uri_for()
1687
1688 5.7005   2006-11-07 19:37:35
1689         - Fixed lighttpd tests to be properly skipped.
1690         - Moved IE workarounds to exist only in the HTTP engine.
1691         - Added installation instructions (from Catalyst-Manual dist)
1692
1693 5.7004   2006-11-06 20:48:35
1694         - Fix Engine::HTTP crash when using IE. (Jesper Krogh, Peter Edwards)
1695         - clean up Catalyst::Utils to handle some edge cases
1696         - Properly work around lighttpd PATH_INFO vs. SCRIPT_NAME bug
1697           (Mark Blythe)
1698         - add _application accessor to Catalyst::Base
1699         - Support current_view
1700         - Allow use of Catalyst::Test without app name (Ton Voon, Altinity)
1701         - Catalyst::Manual moved to its own package
1702         - Add option to FastCGI engine to send errors to stdout, not the web server
1703         - Use Module::Install's auto_install to install prerequisite modules
1704         - various documentation fixes and improvements
1705
1706 5.7003   2006-09-21 16:29:45
1707         - Additions and updates to tutorial
1708
1709 5.7002   2006-09-17 19:35:32
1710         - unescape captures to match args
1711         - fix for relative Chained under namespace '' (root)
1712         - fix for hashrefs in action attributes from config
1713         - fix for Chained to require correct number of CaptureArgs
1714
1715 5.7001   2006-07-19 23:46:54
1716         - fix for component loading
1717         - uri_for and uri_with now behave as they used to with non-
1718           array references
1719
1720 5.7000   2006-07-07 08:08:08
1721         - fix FCGI.pm warning message with FastCGI engine
1722         - bumped inc::Module::Install to 0.63 in Makefile.PL
1723         - fixes to uri_for_action for DispatchType::Chained
1724         - Further doc work.
1725         - Minor code cleanups
1726         - Changed catalyst.pl to depend on Catalyst::Devel
1727
1728 5.70_03  2006-06-28 16:42:00
1729         - fixup to registered plugins debug at app startup
1730         - refactored Catalyst::Utils::home
1731
1732 5.70_02  2006-06-27 11:51:00
1733         - Updated tutorial.
1734
1735 5.70_01  2006-06-26 10:49:00
1736
1737         - fixed a Catalyst::Base bug causing duplicate action registrations
1738         - modified DispatchTypes to support multiple registrations
1739         - added Catalyst::Runtime module as dist marker
1740         - added Catalyst::ActionChain and Chained DispatchType
1741         - removed retarded registration requirement in dispatcher
1742         - removed Module::Pluggable::Fast hack in favor of
1743           Module::Pluggable::Object
1744         - extended uri_for, added dispatcher->uri_for_action
1745         - added Catalyst::Base->action_for('methodname')
1746         - checked and tested :Args multimethod dispatch
1747         - added ability to set action attributes from controller config
1748         - added merge_config_hashes() as a convenience method
1749         - Swapped out CGI::Cookie in favour of CGI::Simple::Cookie
1750         - Removed test dependencies on Test::NoWarnings, Test::MockObject
1751         - Removed dependency on UNIVERSAL::require
1752         - Split out Catalyst::Helper into a new distribution
1753         - un-bundled the plugins as they are now pre-reqs for Catalyst::Helper
1754         - nuked each() out of core with prejudice (due to lurking buglets)
1755         - Added tests from phaylon for dispatcher precedence
1756         - Use Class::Inspector->loaded($class) instead of $class->can('can')
1757         - Added ActionClass attribute
1758         - Removed Test::WWW::Mechanize::Catalyst from Makefile.PL (circular dep)
1759         - Updated docs for Catalyst::Component
1760         - Separated execute and dispatch on Catalyst::Action
1761         - cleaned up logging and debug output
1762         - significant documentation revisions
1763         - Added warning for setup being called twice
1764         - Fix pod to use DBIC::Schema instead of DBIC model
1765         - Fix ->config failing to copy _config for subclassing
1766         - Updated log format
1767         - Updated debug dump
1768
1769 5.6902  2006-05-04 13:00:00
1770         - Remove tarballs and OSX metadata files.
1771
1772 5.6901  2006-05-03 11.17:00
1773         - Module::Install didn't overwrite META.yml.
1774
1775 5.6900  2006-05-03 11.17:00
1776         - Stupid pause indexer can't count.
1777         - Better fix for Catalyst::Test
1778         - more tests.
1779
1780 5.682   2006-04-27 13:51:00
1781         - Damn OSX attributes again :(
1782
1783 5.681   2006-04-27 08:47:00
1784         - Updated manifest.
1785         - Add basename to core . (Deprecates Catalyst::Plugin::Basename)
1786
1787 5.68    2006-04-26 12:23:00
1788         - ConfigLoader: Updated to version 0.06
1789         - fixed undef warnings in uri_for() and uri_with()
1790         - Fixed Catalyst::Test to report errors on failed Class load
1791
1792 5.678   2006-04-24 12:30:00
1793         - Re-release of 5.67 without OSX metadata files.
1794
1795 5.67    2006-04-23 08:50:00
1796         - Added $c->req->uri_with() helper
1797         - ConfigLoader: Updated to version 0.05
1798         - Fix up Engine to avoid a new 5.8.8 warning
1799         - Added app name with :: support for PAR
1800         - Added $c->models/views/controllers
1801         - Static::Simple: Unescape the URI path before looking for the file.
1802           This fixes issues with files that have spaces.
1803         - Looping and recursion tests plus a fix
1804         - Added lots of API documentation. Refactored main pod.
1805         - Changed default behaviors for $c->model/$c->controller/$c->view
1806           to more sane settings.
1807         - added the clear_errors method - an alias for error(0)
1808         - Added tmpdir option for uploads (woremacx)
1809         - Applied patch from GEOFFR to allow normal filehandles.
1810         - Refactored Dispatcher internals for better readability and speedup
1811           (stress tests run 12% faster)
1812         - Allow $c->error to run as a class method
1813
1814 5.66    2006-03-10 17:48:00
1815         - Added Test::WWW::Mechanize::Catalyst support
1816         - Cleaned generated tests
1817         - Added Root controller concept
1818         - Updated ConfigLoader plugin to version 0.04
1819
1820 5.65    2006-02-21 10:34:00
1821         - Added plugin introspection.
1822         - Support optional hashref as last param for parameters in uri_for.
1823         - Updated tutorial to be more complete.
1824         - Applied args patch from antirice (Fixes Ticket #67)
1825
1826 5.64    2006-02-07 20:29:00
1827         - Fixed bug in FastCGI proc manager mode where pm_post_dispatch
1828           was not run. (Eric Wong)
1829         - Cleaned up generated tests
1830         - Updated YAML support to use ConfigLoader
1831         - Fixed path dispatch to canonicalise correctly
1832             (see http://dev.catalyst.perl.org/ticket/62)
1833         - Added Catalyst::Manual::About
1834
1835 5.63    2006-01-22 00:00:00
1836         - Updated prereq versions
1837
1838 5.62    2006-01-17 16:30:00
1839         - Large update to the tutorial (castaway)
1840         - Added YAML config support
1841         - Added COMPONENT() and ACCEPT_CONTEXT() support
1842         - Action list in debug mode is now displayed as a tree in the
1843           correct execution order.
1844         - Fixed engine detection to allow custom mod_perl engines.
1845         - Static::Simple: Fixed bug in ignore_dirs under win32.
1846         - Display version numbers of loaded plugins. (Curtis Poe)
1847         - Added class and method for caught exception messages.
1848         - Updated PAR support to use "make catalyst_par",
1849           packages are no longer written by Makefile.PL.
1850         - Automatically determine Content-Length when serving a
1851           filehandle.
1852         - Exceptions now return status 500.
1853         - Updated for Module::Install 0.44.
1854         - Fixed additional file installation for multi level app names.
1855         - Added REDIRECT_URL support for applications running behind
1856           a RewriteRule in Apache. (Carl Franks)
1857         - Fixed FastCGI engine under win32. (Carl Franks)
1858         - FastCGI doc updates (Bill Moseley)
1859         - Bugfix for $c->model and friends (defined).
1860
1861 5.61    2005-12-02 00:00:00
1862         - Fixed ExtUtils::AutoInstall Bootstrap Code in Makefile.PL
1863
1864 5.60    2005-12-01 22:15:00
1865         - Fixed Path and index actions in the appclass,
1866           including those that attach to /
1867         - Index is now weighted higher than Path
1868         - Fixed restarter and -d debug switch in server.pl.
1869         - Added a warning if you attempt to retrieve a parameter
1870           using $c->req->params('foo').
1871         - Fixed the Module::Install::Catalyst @ISA bug
1872
1873 5.59    2005-11-30 13:25:00
1874         - Fixed shebang line for generated scripts
1875         - Fixed forward to classes ($c->forward(qw/MyApp foo/))
1876         - Wrap use block in begin to quelch C:C3 warnings
1877         - Removed scrollbar from debug output
1878         - Fixed catalyst_par_core() and catalyst_par_multiarch()
1879
1880 5.58    2005-11-24 10:51:00
1881         - Added ExtUtils::AutoInstall support
1882         - Allow overriding path in Catalyst::Helper.
1883         - Added -makefile to catalyst.pl to generate a new Makefile.PL.
1884         - Restored Catalyst::Build with a deprecation notice.
1885         - Improved PAR support
1886         - Replaced -short with auto-detection
1887         - Fixed prereqs, added File::Copy::Recursive
1888         - Static::Simple changes:
1889             - Made prepare_action play nice with other plugins by not short-
1890               circuiting.
1891             - Added tmpl to the ignored extensions.
1892             - Fixed security problem if req->path contained '..'.
1893
1894 5.57    2005-11-20 22:45:00
1895         - Updated uri_for to accept undef actions
1896         - Switched to Module::Install
1897         - Renamed tests for easier editing
1898         - Reformatted documentation
1899         - Renamed -nonew to -force
1900         - Added PAR support
1901         - Added keep-alive support and bug fixes to HTTP engine.
1902           (Sascha Kiefer)
1903         - Added daemonize option to FastCGI engine. (Sam Vilain)
1904
1905 5.56   2005-11-16 10:33:00
1906         - Fixed FastCGI engine to not clobber the global %ENV on each
1907           request. (Sam Vilain)
1908         - Updated benchmarking to work with detach
1909         - Fixed dispatcher, so $c->req->action(undef) works again
1910         - Updated Catalyst::Test to use HTTP::Request::AsCGI
1911         - Added -pidfile to external FastCGI server.
1912
1913 5.55    2005-11-15 12:55:00
1914         - Fixed multiple cookie handling
1915
1916 5.54    2005-11-14 22:55:00
1917         - Fixed a Module::Pluggable::Fast related bug
1918
1919 5.53    2005-11-14 15:55:00
1920         - Removed t/04prereq.t that was testing for non-required
1921           modules.
1922
1923 5.52    2005-11-14 10:57:00
1924         - Strip '..'s in static urls to fix security issue.
1925
1926 5.51    2005-11-14 00:45:00
1927         - Changed uri_for to use namespace instead of match.
1928
1929 5.50    2005-11-13 20:45:00
1930         - Fixed minor bugs.
1931         - Updated docs.
1932
1933 5.49_05 2005-11-12 20:45:00
1934         - Large update to the documentation. (David Kamholz)
1935         - Fixed args handling in forward()
1936         - Fixed forwarding to classes
1937         - Fixed catalyst.pl-generated Build.PL Makefile section.
1938         - Fixed relative forwarding
1939         - Fixed forward arrows in debug output
1940
1941 5.49_04 2005-11-09 23:00:00
1942         - Made context, dispatcher, engine, request and response classes
1943           configurable.
1944         - Added $c->stack.
1945         - Fixed dispatcher to ignore unknown attributes.
1946         - Improved format of startup debug log.
1947         - Updated built in server to restart on win32. (Will Hawes)
1948         - Fixed streaming write from a filehandle to stop writing
1949           if the browser is closed.
1950         - Added $c->controller, $c->model and $c->view shortcuts.
1951         - Switched to Text::SimpleTable.
1952
1953 5.49_03 2005-11-03 12:00:00
1954         - Fixed $c->req->{path} for backwards-compatibility.
1955         - Allow debug to be disabled via ENV as well as enabled.
1956         - Added -scripts option to catalyst.pl for script updating
1957         - Changed helpers to default to long types, Controller instead of C
1958         - Added Catalyst::Controller, Catalyst::Model and Catalyst::View
1959           base classes
1960         - Added JavaScript to debug screen to show and hide specific dumps
1961         - Added _DISPATCH, _BEGIN, _AUTO, _ACTION and _END actions
1962         - Added multi process external FastCGI support
1963           (see myapp_fastcgi.pl -help) (Sam Vilain)
1964         - Restarter process in HTTP engine now properly exits when the
1965           parent app is shut down.
1966         - Improved performance of restarter loop while watching for
1967           changed files.
1968         - Restarter will now detect new files added to an app on systems
1969           that change directory mtimes when new files are created.
1970         - Restarter now properly handles modules that are deleted from an
1971           application.
1972         - Fixed memory leak in TestApp.
1973
1974 5.49_02 2005-10-26 12:39:00
1975         - Whole new dispatcher!
1976         - Added index action
1977         - Added path_to method
1978         - Added support for passing an IO::Handle object to $c->res->body.
1979           (Andrew Bramble)
1980         - Added a new welcome screen.
1981         - Included Catalyst buttons and icons in helper.
1982         - Added Static::Simple plugin to core.
1983         - Added self restarting test server
1984         - Added filename to debug output for uploaded files.
1985         - Fixed forwarding with embedded arguments.
1986         - Fixed handling of escaped query strings.
1987         - Added upload parameters back into $c->req->params.
1988         - Added multiple paths support to dispatcher
1989         - Fixed bug in req->path where changing the path added a trailing
1990           slash.
1991         - Removed req->handle and res->handle
1992         - Added prepare_body_chunk method as a hook for upload progress.
1993         - Fixed bug in uri_for method when base has no path.
1994         - Added automated tests for HTTP, CGI, and FastCGI servers.
1995
1996 5.49_01 2005-10-10 10:15:00
1997         - Refactored all internals, should be 99% compatible to previous
1998           versions.
1999         - *IMPORTANT* The Apache engines have been moved to a separate package
2000           for this release.  Please install Catalyst::Engine::Apache if you
2001           need Apache support.
2002
2003         - Added support for calling forward with arguments in the path, i.e.
2004           $c->forward('/foo/bar/arg1/arg2')
2005         - Made $c->req->uri a URI object, added req->path_info for CGI compat.
2006           Raw query string is available as $c->req->uri->query.
2007         - Made $c->req->base a URI object.
2008         - Parameters with multiple values (?a=1&a=2) now display properly
2009           in the debug output.
2010         - Semi-colon separators in query strings now work properly.
2011         - Expanded documentation of catalyst.pl (Andrew Ford)
2012         - Added support for running as a backend server behind a frontend
2013           proxy so req->base and req->address are set properly.
2014         - Added an 'abort' method to the Log api, so that you can
2015           kill loggging for a whole request.
2016         - Added $c->uri_for method to simplify url handling.
2017         - Added more tests and reorganized the t directory.
2018         - Reimplemented core engines, all are now CGI based for better test
2019           coverage and maintainability.
2020         - Added fork support to built in test server.
2021         - Fixed all memory leaks.
2022         - Thread-related bug fixes and tests.  We now believe the Catalyst
2023           core to be thread-safe.
2024         - Added streaming IO support through $c->req->read() and
2025           $c->res->write()
2026         - Added MyApp->config->{parse_on_demand} (streaming input)
2027         - Added $c->req->handle and $c->res->handle
2028         - Improved documentation
2029         - Fixed mkpath in Catalyst::Helper (Autrijus Tang)
2030         - Fixed bug in dispatcher where an invalid path could call a valid
2031           action. (Andy Grundman)
2032         - Fixed Helper so it works with CRLF line-endings. (Andy Grundman)
2033
2034 5.33  2005-08-10 15:25:00
2035         - Now with updated manifest.
2036
2037 5.32  2005-08-10 15:10:00
2038         - Dispatcher might fail if object returns false.
2039
2040 5.31  2005-06-04 12:35:00 (never released to CPAN)
2041
2042         - helpers now create .new files where files already exist and differ
2043         - fixed $Data::Dumper::Terse (Robin Berjon)
2044         - added arguments for detach
2045         - new credits section in POD
2046         - fixed detach to allow relative action names (Matt and Robert)
2047         - added the ability to have whitespaces in Path( '' ) and Regex( '' )
2048
2049 5.30  2005-06-04 12:35:00
2050
2051         - Fixed a bug where it was not possible to $c->forward to a
2052           component
2053           that was not inheriting from Catalyst::Base.
2054         - Fix for inheritance bug.
2055         - Allow forward with arguments.
2056         - Updated cookbook
2057         - Allow overriding home/root in config.
2058         - make module build cons README automatically.
2059         - prettify home path by resolving '..' (Andy Grundman)
2060         - improved helper templates a bit, new naming scheme for tests.
2061         - added support for case sensitivity, MyApp->config->{case_sensitive}
2062         - added $c->detach for non-returning forwards
2063         - added unified error handling, Catalyst::Exception
2064         - added section on param handling in Intro.pod
2065         - added $c->request->cookie
2066         - added Catalyst::Setup
2067         - refactored Catalyst::import()
2068         - improved rendering of error messages in debug mode
2069         - fixed a bug in Catalyst::Helper::mk_dir
2070         - further doc changes, esp. to Intro.pod
2071
2072 5.23  2005-06-03 02:30:00
2073         - added support for non Catalyst::Base components to live in namespace
2074         - improved concurrency connections in Catalyst::Engine::HTTP::Daemon
2075
2076 5.22  2005-05-26 14:24:00
2077         - improved base locating in MP engines
2078         - improved error messages in C::E::HTTP::Daemon
2079         - hostnames are now resolved on demand unless provided by engine
2080         - fixed memory leak in $c->execute (Michael Reece, Matt S Trout)
2081
2082 5.21  2005-05-24 14:56:00
2083         - fixed a bug in https detection
2084         - fixed auto chain finally
2085         - added MYAPP_HOME and CATALYST_HOME environment variables
2086
2087 5.20  2005-05-18 19:52:00
2088         - improved uploads and parameters
2089         - added $c->req->protocol and $c->req->secure
2090         - added $c->req->user and $c->req->uri
2091         - improved error message when forwarding to unknown module
2092         - fixed win32 installer
2093         - added deep recursion detection
2094         - fixed auto actions
2095         - fixed inheritance in dispatcher
2096         - allow whitespaces between brackets and quoted string
2097           in Path and Regex attributes
2098         - new helper templates
2099         - installer now supports install_base and destdir
2100         - allow multiple Catalyst apps to run on the same mod_perl
2101           instance (not the same app!)
2102         - fixed MP2 engines
2103         - removed apreq dependency from all MP engines
2104         - added support for MP registry scripts
2105         - added support for LocationMatch and ScriptAliasMatch in MP engines
2106         - added SpeedyCGI engine
2107
2108 5.10  2005-04-23 11:16:00
2109         - updated dependencies to require latest module::pluggable::fast
2110         - new installer for templates and stuff using Module::Build
2111         - scripts are now prefixed, for being installable
2112         IMPORTANT: You have to regenerate the script directory,
2113         remove Makefile.PL and add Build.PL
2114         - Added compat to install Module::Build if required.
2115         - Improved: Params handling with MP engines
2116         - Fixed: Params handling on POST with CGI engine (Andy Grundman)
2117         - Fixed: Helper.pm on Win32 (Matt S Trout)
2118
2119 5.03  2005-04-19 20:35:00 (Revision 462)
2120         - fixed Test example (Torsten Seeman)
2121         - added Plugins chapter to manual
2122         - applied doc patch from Robert Boone <robert@rlb3.com>
2123         - improved Dispatcher error messages.
2124         - refactored so we don't need to include helper from
2125           Catalyst.pm - Fixes issues with FindBin
2126         - applied HTTP.pm patch from Andy Grundman <andy@hybridized.org>
2127         - added plugin() method for instant plugins
2128         - FCGI is no more considered experimental
2129
2130 5.02  2005-04-18 10:00:00
2131         - fixed manifest
2132
2133 5.01  2005-04-17 23:00:00
2134         - some documentation bugs fixed
2135         - added Catalyst::Utils
2136         - fixed regexp bug (Matt S Trout)
2137         - fixed upload bug with MP19
2138         - added $c->req->body
2139         - aliased $c->res->output to $c->res->body
2140         - Read AUTHOR from passwd or $ENV{AUTHOR} when
2141           generating code.
2142         - extended attribute handling
2143         - added global config for components
2144
2145 5.00  2005-04-15 18:00:00
2146         - new core to support inheritance trees
2147         - new syntax for action declaration
2148         - new helper system using TT2
2149         - problems with mod_perl2 fixed
2150         - added Test::Pod support
2151         - added new server backend with HTTP/1.1 support
2152         - added option to run tests against a remote server
2153         - renamed errors() to error()
2154         - more better docs
2155         - countless minor improvements
2156           IMPORTANT: This release is very incompatible to previous ones
2157           and you have to regenerate the helper scripts again...
2158
2159 4.34  2005-03-23 07:00:00 2005
2160         - added some messages to Makefile.PL
2161         - added Catalyst::Engine::Test
2162         - added Catalyst::Engine::CGI::NPH
2163         - simplified Catalyst::Log to be easier to implement/subclass
2164         - added cgi.pl
2165         - updated Catalyst::Test to use Catalyst::Engine::Test
2166         - updated helper scripts
2167           IMPORTANT: this will be the last time you'll have to regenerate
2168           the script directory. We promise!
2169
2170 4.33  2005-03-23 01:00:00 2005
2171         - documented the log() accessor method in Catalyst (Andrew Ford)
2172         - added optional arguments to Catalyst::Log methods (Andrew Ford)
2173         - removed cgi-server.pl
2174         - added fcgi.pl and Catalyst::Engine::FCGI
2175         - fixed an undef durng make test (Dan Sully)
2176         - new path test (Christian Hansen)
2177           IMPORTANT: you have to regenerate the script directory again
2178
2179 4.32  2005-03-22 02:10:00 2005
2180         - made a damn typo *AAAAAAAAAAAAAAHHHH!!!*
2181
2182 4.31  2005-03-22 02:00:00
2183         - fixed inheritance (Christian Hansen)
2184         - previous release was borked!
2185           fixed that, but you have to regenerate the scripts again :(
2186
2187 4.30  2005-03-21 23:00:00
2188         - more documentation (Andrew Ford)
2189         - added connection informations (Christian Hansen)
2190         - HTTP::Request support in Catalyst::Test (Christian Hansen)
2191         - moved cgi.pl to nph-cgi.pl
2192         - added Catalyst::Engine::Server (Christian Hansen)
2193         - removed Catalyst::Test::server
2194         - updated helper scripts
2195           IMPORTANT: note that you have to regenerate script/server.pl,
2196           script/cgi-server.pl and script/cgi.pl (now nph-cgi.pl)
2197
2198 4.28  2005-03-19 22:00:00
2199         - fixed isa tree (Christian Hansen)
2200         - added script/cgi-server.pl, so no more server restarting after
2201           code changes
2202         - reworked documentation (Andrew Ford <A.Ford@ford-mason.co.uk>)
2203
2204 4.27  2005-03-19 01:00:00
2205         - debug message for parameters
2206         - Fix redirects (Christian Hansen <ch@ngmedia.com>)
2207         - some random fixes
2208         - new helper api for Catalyst::Helper::* support
2209           you have to update script/create.pl to use it
2210
2211 4.26  2005-03-16 10:00:00
2212         - fixed the weird bug that caused regex actions to fail on every
2213           second request
2214         - more debug messages
2215         - 100% pod coverage.
2216
2217 4.25  2005-03-12 18:00:00
2218         - correct perl pathes for helper generated scripts (Tatsuhiko Miyagawa)
2219         - improved cgi engine docs (Christoper Hicks)
2220
2221 4.24  2005-03-12 01:00:00
2222         - updated cookbook example
2223         - fixed base for apache and https (Andrew Ruthven)
2224
2225 4.23  2005-03-09 20:00:00
2226         - no more regex actions in forward
2227         - added support for test directories t/m, t/v and t/c
2228
2229 4.22  2005-03-08 20:00:00
2230         - catch errors in application class
2231         - handle die properly.
2232
2233 4.21  2005-03-05 17:00:00
2234         - fixed docs
2235
2236 4.20  2005-03-04 22:00:00
2237         - moved bin to script
2238
2239 4.13  2005-03-03 11:00:00
2240         - improved documentation
2241         - pod coverage test for helper generated apps
2242         - new helper api
2243
2244 4.12  2005-03-02 11:00:00 2005
2245         - server_base sucks, removed
2246         - added $c->log->dump()
2247
2248 4.11  2005-03-02 11:00:00 2005
2249         - removed some warnings
2250         - improved docs
2251         - private prefixed actions override private non prefixed actions
2252         - added server_base
2253         - updated Catalyst::Manual::Intro
2254
2255 4.10  2005-03-02 10:00:00 2005
2256         - improved documentation
2257         - fixed upload bug
2258         - fixed prefixed private actions bug
2259         - fixed more little bugs
2260
2261 4.01  2005-03-01 10:00:00 2005
2262         - improved documentation
2263         - documentation fixes (Johan Lindstrom)
2264
2265 4.00  2005-02-27 22:00:00
2266         - more verbose debug messages, especially for forward()
2267         - implemented prefixed prvate actions, icluding built in
2268           !?default, !?begin and !?end
2269         - new Catalyst::Manual::Intro
2270         - new helpers, bin/catalyst
2271         - helper api
2272
2273 3.11  2005-02-23 21:00:00
2274         - added dependency to UNIVERSAL::require (Marcus Ramberg)
2275         - added a little workaround for a warning in Catalyst::Test
2276           (Marcus Ramberg)
2277         - improved documentation for actions
2278
2279 3.10  2005-02-19 20:00:00
2280         - removed roles management from Catalyst::Engine
2281           and added it to Catalyst::Plugin::Authentication::CDBI
2282
2283 3.04  2005-02-17 21:00:00
2284         - error reporting for app class
2285         - no more engine debug messages
2286         - class->method forwards get resolved now
2287
2288 3.03  2005-02-16 23:00:00
2289         - friendlier statistics
2290
2291 3.02  2005-02-16 22:00:00
2292         - fixed unintialized actions (Marcus Ramberg)
2293
2294 3.01  2005-02-16 20:30:00
2295         - better statistics
2296
2297 3.00  2005-02-16 20:00:00
2298         - real version number for CPAN.pm
2299         - fixed redirect in CGI engine
2300         - more statistics in debug logs
2301         - ? prefix for forward()
2302
2303 2.99_15  2005-02-02 22:00:00
2304         - support for short namespaces, MyApp::M, MyApp::V and MyApp::C
2305         - Replaced "Catched" with "Caught" in Catalyst::Engine
2306           (Gary Ashton Jones)
2307         - replaced _ with ! for private actions
2308         - added ? for prefixed actions
2309         - misc improvememts
2310
2311 2.99_14  2005-01-31 22:00:00 2005
2312         - arguments for _default
2313         - $c->entrance removed for more flexibility
2314         - added $c->req->method
2315
2316 2.99_13  2005-01-30 18:00:00 2005
2317         - POD fixes and improvements
2318
2319 2.99_12  2005-01-28 22:00:00 2005
2320         - first development release