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