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