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