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