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