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