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