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