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