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