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