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