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