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