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