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