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