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