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