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