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