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