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