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