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