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