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