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