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