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