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