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