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