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