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