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