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