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