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