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