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