Add doc for no-args call to ->uri_for
[catagits/Catalyst-Runtime.git] / Changes
1 # This file documents the revision history for Perl extension Catalyst.
2
3    Bug fixes:
4     - Require MooseX::MethodAttributes 0.17. This in turn requires new
5       MooseX::Types to stop warnings in Moose 0.91, and correctly supports
6       role combination of roles containing attributed methods.
7     - Catalyst::Dispatcher::dispatch_types no longer throws deprecated warnings
8       as there is no recommended alternative.
9     - Improved the suggested fix warning when component resolution uses regex
10       fallback for fully qualified component names.
11     - Catalyst::Test::local_request sets ->request on the response.
12     - Require HTTP::Request 5.814 and HTTP::Response 5.813 from LWP 5.814
13       to avoid test fails.
14
15   Documentation:
16     - Document no-args call to $c->uri_for.
17
18   New features:
19     - Added disable_component_resolution_regex_fallback config option to
20       switch off (deprecated) regex fallback for component resolution.
21     - Added an nginx-specific behavior to the FastCGI engine to allow
22       proper PATH_INFO and SCRIPT_NAME processing for non-root applications
23     - Enable Catalyst::Utils::home() to find home within Dist::Zilla built
24       distributions
25
26 5.80013 2009-09-17 11:07:04
27
28    Bug fixes:
29      - Preserve immutable_options when temporarily making a class mutable in
30        Catalyst::ClassData as this is needed by new Class::MOP.
31        This could have potentially caused issues when using the deprecated runtime
32        plugins feature in an application with plugins which define their own new
33        method.
34      - Require new Moose version and new versions of various dependencies
35        to avoid warnings from newest Moose release.
36      - Fix go / visit expecting captures and arguments in reverse order.
37
38   Documentation:
39      - Rework the $c->go documentation to make it more clear.
40      - Additional documentation in Catalyst::Upgrading covering more deprecation
41        warnings.
42
43   Refactoring / cleanups:
44      - Action methods in the application class are deprecated and applications
45        using them will now generate a warning at startup.
46      - The -short option has been removed from catalyst.pl, stopping new
47        applications from being generated using the ::[MVC]:: naming scheme as
48        this is deprecated and generates warnings. RT#49771
49
50 5.80012 2009-09-09 19:09:09
51
52   Bug fixes:
53      - Fix t/optional_http-server.t test.
54      - Fix t/optional_http-server-restart.t test.
55      - Fix duplicate components being loaded at setup time, each component is
56        now loaded at most once + tests.
57      - Fix backward compatibility - hash key configured actions are stored in
58        is returned to 'actions'.
59      - Fix get_action_methods returning duplicate methods when a method is both
60        decorated with method attributes and set as an action in config.
61
62   Refactoring / cleanups:
63      - Reduce minimum supported perl version from 5.8.6 to 5.8.4 as there are
64        many people still running/testing this version with no known issues.
65
66   Tests:
67      - Make the optional_http_server.t test an author only test which must be
68        run by authors to stop it being broken again.
69      - Fix recursion warnings in the test suites.
70
71 5.80011 2009-08-23 13:48:15
72
73   Bug fixes:
74       - Remove leftovers of the restarter engine. The removed code caused test
75         failures, which weren't apparent for anyone still having an old version
76         installed in @INC.
77
78 5.80010 2009-08-21 23:32:15
79
80   Bug fixes:
81       - Fix and add tests for a regression introduced by 5.80008.
82         Catalyst::Engine is now able to send out data from filehandles larger
83         than the default chunksize of 64k again.
84
85 5.80009 2009-08-21 22:21:08
86
87   Bug fixes:
88       - Fix and add tests for generating inner packages inside the COMPONENT
89         method, and those packages being correctly registered as components.
90         This fixes Catalyst::Model::DBIC among others.
91
92 5.80008 2009-08-21 17:47:30
93
94   Bug fixes:
95        - Fix replace_constructor warning to actually work if you make your
96          application class immutable without that option.
97        - Depend on Module::Pluggable 3.9 to prevent a bug wherein components
98          in inner packages might not be registered. This especially affected
99          tests.
100        - Catalyst::Engine::FastCGI - relax the check for versions of Microsoft
101          IIS. Provides compatibility with Windows 2008 R2 as well as
102          (hopefully) future versions.
103        - In tests which depend on the values of environment variables,
104          localise the environment, then delete only relevant environment
105          variables (RT#48555)
106        - Fix issue with Engine::HTTP not sending headers properly in some cases
107          (RT#48623)
108        - Make Catalyst::Engine write at least once when finalizing the response
109          body from a filehandle, even if the write is empty. This avoids fail
110          when trying to send out an empty response body from a filehandle.
111        - Catalyst::Engine::HTTP - Accept a fully qualified absolute URI in the
112          Request-URI of the Request-Line
113
114   Refactoring / cleanups:
115        - Deleted the Restarter engine and its Watcher code. Use the
116          new Catalyst::Restarter in a recent Catalyst::Devel instead.
117        - New unit test for Catalyst::Action 'unit_core_action.t'
118        - Bump minimum supported perl version from 5.8.1 to 5.8.6 as there are
119          known issues with 5.8.3.
120        - Debug output uses dynamic column sizing to create more readable output
121          when using a larger $ENV{COLUMNS} setting. (groditi)
122
123   New features:
124        - Added private_path method for Catalyst::Action
125        - Allow uri_for($controller_instance) which will produce a URI
126          for the controller namespace
127        - Break setup_components into two more parts: locate_components and
128          expand_component_module (rjbs)
129        - Allow Components to return anon classed from their COMPONENT method
130          correctly, and have action registration work on Controllers returned
131          as such by adding a catalyst_component_name accessor for all components
132          which returns the component instance's name to be used when building
133          actions etc.
134        - Adding X-Forwarded-Port to allow the frontend proxy to dictate the
135          frontend port (jshirley)
136        - Added Catalyst::Stats->created accessor for the time at the start of
137          the request.
138
139   Documentation:
140        - Fix POD to refer to ->config(key => $val), rather than
141          ->config->{key} = $val, as the latter form is deprecated.
142        - Clearer docs for the 'uri_for' method.
143        - Fix POD refering to CGI::Cookie. We're using CGI::Simple::Cookie.
144          (Forrest Cahoon)
145
146 5.80007 2009-06-30 23:54:34
147
148   Bug fixes:
149        - Don't mangle query parameters passed to uri_for
150          - Tests for this (Byron Young + Amir Sadoughi)
151        - Inherited controller methods can now be specified in
152          config->{action(s)}
153        - Assigning an undef response body no longer produces warnings
154        - Fix C3 incompatibility bug caused if you use Moose in MyApp.pm and
155          add Catalyst to the right hand side of this in @ISA.
156        - Make Catalyst.pm implement the Component::ApplicationAttribute
157          interface so defining actions in MyApp.pm works again, if the
158          actions have attributes that cause $self->_application to be used
159          (like ActionClass).
160
161   New features:
162        - Add optional second argument to uri_with which appends to existing
163          params rather than replacing them. (foo=1 becomes foo=1&foo=2 when
164          uri_with({ foo => 2 }, { mode => 'append' }) is called on a foo=1
165          URI.
166
167 5.80006 2009-06-29 23:37:47
168
169   Bug fixes:
170         - Revert change to URL encode things passed into $c->uri_for
171           Args and CaptureArgs as this causes breakage to pre-existing
172           applications.
173         - Remove use of Test::MockObject as it doesn't install from CPAN
174           in some environments.
175         - Remove use of dclone to deep copy configs and replace with
176           Catalyst::Utils::merge_hashes which has the same effect, of
177           ensuring child classes don't inherit their parent's config,
178           except works correctly with closures.
179         - Add Class::C3::reinitialize into Catalyst::Test to avoid weird
180           bugs in ctx_request (bokutin in RT#46459)
181         - Fix issues with _parse_PathPrefix_attr method in Catalyst::Controller
182           (jasonk in RT#42816)
183         - Fix bugs with action sorting:
184           - Path actions sorted so that the most specific wins.
185           - Action methods named default and index fixed.
186
187   New features:
188         - Use ~ as prefix for plugins or action classes which are located in
189           MyApp::Plugin / MyApp::Action (mo)
190         - Controller methods without attributes are now considered actions if
191           they are specified in config->{action(s)} (mo)
192         - Add Catalyst::Component::ContextClosure as an easy way to create code
193           references, that close over the context, without creating leaks.
194
195   Refactoring / cleanups:
196         - Clean namespaces in Catalyst::Exception*.
197         - Turn Catalyst::Exception into an actual class and make the throw
198           method create instances of it. They can still be used as normal
199           strings, as before, as they are overloaded to stringify to their
200           error message.
201         - Add a rethrow method to Catalyst::Exception.
202         - Add Catalyst::Exception::Detach and ::Go, and refactor detach() and
203           go() to use them instead of magic, global strings.
204           Fixes RT#47366
205         - Clean up getting metaclass instance and making app class immutable
206           again in Catalyst::Test
207
208 5.80005 2009-06-06 14:40:00
209
210   Behaviour changes:
211         - Arguments ($c->req->args) in Chained dispatch are now automatically
212           URL decoded to be consistent with Local/Path dispatch
213
214   Documentation:
215         - Clarify correct techniques for Moose controllers (domm)
216
217   Bug fixes:
218         - Further change pushing 'env' attribute down into Catalyst::Engine
219           to make $c->engine->env work in all cases (kmx)
220         - Also fix $c->engine->env in Catalyst::Test tests (kmx)
221           - Tests for this
222         - Fix Catalyst failing to start if any plugin changed $_ whilst
223           loading
224           - Tests for this
225         - Be stricter about arguments to Args attributes for Chained actions,
226           so that they blow up on load instead of causing undefined behavior
227           later on
228           - Tests for this
229         - Prefer Path actions with a smaller (or set) number of Args (caelum)
230           Bug reported here: http://stackoverflow.com/questions/931653/catalyst-action-that-matches-a-single-file-in-the-root-directory/933181#933181
231           - Tests for this
232
233    New features:
234         - Add $c->req->remote_user to disambiguate from $c->req->user (dwc)
235         - Require MooseX::MethodAttributes 0.12 so that action methods
236           (with attributes) can be used in / composed from Moose roles.
237         - Allow the generation of cookies with the HTTPOnly flag set
238           in Catalyst::Engine (kmx)
239
240 5.80004 2009-05-18 17:03:23
241         - Rename the actions attribute in Catalyt::Controller to
242           _controller_actions to avoid name clashes with application
243           controller naming. (random)
244         - Test for using Moose in components which have a non-Moose base class
245           Fixed by 349cda in Moose 0.78
246         - Fix deprecation message for Catalyst::Dispatcher to refer
247           to the class actually calling the deprecated method. RT#45741
248         - Clarify limitations of $request->base and $request->secure.
249           (Phil Mitchell)
250         - Add 'use Catalyst' to documentation for a Moose MyApp class as
251           noted by dmaki.
252         - Fix so that / (and other special characters) are URL encoded when
253           passed into $c->uri_for as Args/CaptureArgs
254         - Fix development server so that $c->engine->env returns the correct
255           environment
256         - Require Moose 0.78 to fix metaclass incompatibility issues
257         - Require MooseX::MethodAttributes 0.10 and use
258           Moose::Meta::Class->initialize rather than Moose->init_meta to fix
259           bugs related to having a 'meta' method in your controller
260         - Fix cases where your application failing to compile could cause perl
261           to report 'Unknown Error'
262         - Support adding Moose::Roles to the plugin list. These are applied to
263           MyApp after plugins have been pushed onto @ISA
264         - Fix calling $c->req->parameters as the first thing you do when
265           parse_on_demand is on
266
267 5.80003 2009-04-29 16:23:53
268         - Various POD tweaks. (hdp, dandv)
269         - Fix formatting error in the regex fallback warning.
270         - Convert the dispatcher's and restarter engine's BUILD method to
271           attribute builders to not override the BUILD method from
272           MooseX::Emulate::Class::Accessor::Fast.
273         - Fix classes without metaclasses restarting, when not using
274           B::Hooks::OP::Check::StashChange
275         - Fix the unattached chain debug table for endpoints with no
276           parents at all.
277         - Turn of test aggregation by default. Only aggregate if the
278           AGGREGATE_TESTS environment variable is set and a recent
279           Test::Aggregate is available.
280         - Bump to MooseX::MethodAttributes 0.09, to gain the
281           get_nearest_methods_with_attributes method allowing methods without
282           attributes in a subclass to override those with attributes in a
283           superclass. This fixes CatalystX::CRUD's method of overriding /
284           disabling functionality from base controllers.
285         - Bump HTTP::Request::AsCGI dependency to avoid broken version
286         - Bump Moose dependency to latest version to fix metaclass
287           incompatibility issues in some cases.
288         - Additional tests for setup_stats method.
289         - Fix log levels in Catalyst::Log to be properly additive.
290         - Fix RT#43375 by sorting results before testing them
291         - Fixes for uri_for_action when using Catalyst::DispatchType::Regex
292           + tests from RT#39369 (norbi)
293         - Partial rewrite and reoganisation of the C3 docs in
294           Catalyst::Upgrading based on feedback from kiffin
295         - If you make your application class immutable and turn off
296           constructor inlining, Catalyst will die and tell you pass
297           the (replace_constructor => 1) argument to
298           make_immutable. (Dave Rolsky)
299
300 5.80002 2009-04-22 01:28:36
301         - Fix CATALYST_DEBUG and MYAPP_DEBUG environment variables
302           turning debuging on if defined, rather than if set.
303           They now force debugging on or off, taking precedence over
304           configuration in your application.
305           - Tests for this
306         - pass replace_constructor to the immutable call to ensure
307           applications get a Moose constructor rather than a C::A one
308         - Fix issues with restarting the application class due to C3 failures
309           on perl 5.10
310         - Work around issues in Moose with initialization order of multiple
311           levels of non-Moose classes inheriting from a Moose class
312           - Test for this
313         - Add backwards compatibility method for Catalyst::Log->body, which
314           has been made private
315         - Fix so that calling $c->req->parameters(undef) does not flatten
316           the request parameters with undef + test
317         - Fix so that width of table of unattached actions for debugging
318           ::DispatchType::Chained varies according to your terminal width
319           (Oleg Kostyuk)
320         - Fix warning message about linearized @ISA in Catalyst::Component
321           (Emanuele Zeppieri)
322         - Require MX::MethodAttributes 0.06 to avoid issues with saying
323           use base 'Catalyst::Controller'; use Moose; losing actions
324         - Fix all of's typos in ::Upgrading and ::Delta (hobbs)
325
326 5.80001 2009-04-18 22:18
327         - Don't inline the constructor for Catalyst::Log to avoid a
328           warning on recent Moose versions.
329         - Add delta documentation
330         - Clean up recursion errors
331         - Extra cross links in dispatch types POD (Ian Wells)
332         - Test uri_with clears query params when they are set to undef
333           (Ian Wells)
334         - Complain about old Catalyst::Devel versions which generated
335           ->setup(qw/-Debug... etc. as this is not recommended
336
337 5.8000_07 2009-04-12 13:37
338         - Add the Catalyst::Dispatcher->dispatch_type method (ash)
339         - Throw an exception rather than loading an app if an action
340           tries to chain to itself
341           - Tests for this
342         - Change the $c->visit and $c->go methods to optionally take
343           CaptureArgs, making them useful to call ActionChains with
344           - Tests for this (radek)
345         - Fix _invoke_as_component method to find the proper action instance
346           for dispatchable actions so that ->visit or ->going to ActionChains
347           with qw/Class::Name method_name/ works correctly
348           - Tests for this (radek)
349         - Added Catalyst::Test::ctx_request to be able to inspect
350           the context object after a request is made (Jos Boumans)
351         - debug() POD rewrite (jhannah)
352         - Change the warning when you have conflicting components to
353           present a list
354         - Move NEXT use and testing deprecated features out to its own
355           test application so that the main TestApp isn't polluted with
356           spurious warnings
357         - Add a warning for the old ::[MVC]:: style naming scheme
358           - Test for this
359         - Kill Class::C3::Adopt::NEXT warnings for the Catalyst:: namespace
360           in production versions
361         - Tidy up Catalyst::ClassData to ensure that all components get
362           the correct metaclass
363         - Make MyApp.pm restartable by unsetting setup_finished in
364           the restarter process
365         - Non-naive implementation of making mutable on restart using
366           B::Hooks::OP::Check::StashChange if installed
367           - Tests for this
368         - Naive implementation of making all components mutable in the
369           forked restart watcher process so native Moose apps using
370           immutable restart correctly.
371           - Tests for this
372         - Bump Moose dependency to 0.70 so that we avoid nasty surprises
373           with is_class_loaded and perl 5.80 when you Moosify MyApp.pm
374         - Clarify that request arguments aren't unescaped automatically
375           (Simon Bertrang) (Closes RT#41153)
376         - Don't require C3 for the MRO test
377         - Bump MX::Emulate::CAF prereq to support list assignment
378         - Remove useless column in chained action debug table.
379         - namespace::clean related cleanups
380         - Import related cleanups and consistency fixes
381         - Fix test suite TestApp /dump/env action
382         - Add $res->code as alias for $res->status
383         - Make Catalyst::ClassData compatible with the latest Class::MOP::Class
384           changes. Also depend on the latest Class::MOP.
385         - Add $c->uri_for_action method.
386         - Don't stringify the meta method. Use its name instead.
387         - Use MooseX::MethodAttributes::Inheritable to contain action
388           attributes. This means that attributes are now represented in the MOP,
389           allowing method modifiers on actions to work as expected.
390         - Provide a reasonable API in Catalyst::Controller for working with
391           and registering actions, allowing a controller sub-class to replace
392           subroutine attributes for action declerations with an alternate
393           syntax.
394         - Instantiate correct sub-class of Moose::Meta::Class for non-Moose
395           components where Catalyst forces the creation of a metaclass instance.
396           This is more correct, and avoids metaclass incompatibility in complex
397           cases
398           - Tests for this
399         - Use of deprecated Catalyst::Base now warns.
400         - Add uri_with tests
401
402 5.8000_06 2009-02-04 21:00
403         - Disallow writing to config after setup
404         - Disallow calling setup more than once
405         - Documentation fix regarding overloading of Engine and Dispatcher
406           instances
407         - Several documentation typo fixes
408         - Stop Makefile.PL from warning about versions that fixed a conflict
409         - Improved upgrading documentation
410         - Seed the RNG in each FastCGI child process (Andrew Rodland)
411         - Properly report dynamic bind port for the development server
412           (Closes RT#38544)
413         - Use the way documented by IO::Socket::INET to get the error message
414           after trying to create a listening socket (Closes RT#41828)
415         - Don't ignore SIGCHLD while handling requests with the dev server
416           (Closes RT#42962)
417
418 5.8000_05 2008-29-01 00:00
419         - Text::SimpleTable's go as wide as $ENV{COLUMNS} (jhannah)
420           Patch written by Oleg Kostyuk <cub.uanic@gmail.com>
421         - Improve docs for visit (mateu)
422         - Add docs for finalize hook (dhoss)
423         - Added ru/ua translations to error page
424         - Improve the clarity and verbosity of the warning when component
425           resolution uses regex fallback. (jhannah)
426         - Handle leading CRLF in HTTP requests sometimes sent by IE6 in
427           keep-alive requests.
428         - Fixes for FastCGI with IIS 6.0 (janus)
429         - Passing request method exported by Catalyst::Test an extra
430           parameter used to be ignored, but started breaking if the parameter
431           was not a hash in 5.8000_04. Extra parameter is now ignored if
432           it isn't a hashref
433         - Fix request argumentss getting corrupted if you override the
434           dispatcher and call an action which detaches (for
435           Catalyst::Plugin::Authorization::ACL)
436         - Fix calling use Catalyst::Test 'MyApp' 'foo' which used to work,
437           but stopped as the 2nd parameter can be an options hash now
438         - Bump Moose dependency to fix make_immutable bug
439         - Use compile time extends in Catalyst::Controller
440         - Make Catalyst::Request::uploads attribute non-lazy, to fix
441           test for Catalyst-Engine-Apache
442         - Bump version of MooseX::Emulate::Class::Accessor::Fast
443         - Stop using MooseX::Adopt::Class::Accessor::Fast by default, to stop
444           breaking other packages which use Class::Accessor::Fast
445         - Remove unused action_container_class attribute from
446           Catalyst::Dispatcher
447         - Replace {_body} instance access with calls to _body accessors
448         - Add backwards compatibility alias methods for private attributes on
449           Catalyst::Dispatcher which used to be public. Needed by
450           Catalyst::Plugin::Server and  Catalyst::Plugin::Authorization::ACL
451         - Fix return value of $c->req->body, which delegates to the body
452           method on the requests HTTP::Body instance
453           - Test for this
454         - Fix calling $c->req->body from inside an overridden prepare_action
455           method in a plugin, as used by Catalyst::Plugin::Server
456           - Test for this
457         - Fix assignment to Catalyst::Dispatcher's preload_dispatch_types and
458           postload_dispatch_types attributes - assigning a list should later
459           return a listref. Fixes Catalyst::Plugin::Server.
460           - Tests for this
461         - Change streaming test to serve itself rather than 01use.t, making
462           test sync for engines easier
463         - Refactor capturing of $app from Catalyst::Controller into
464           Catalyst::Component::ApplicationAttribute for easier reuse in other
465           components
466         - Make the test suites YAML dependency optional
467         - Make debug output show class name for the engine and dispatcher
468           rather than the stringified ref.
469         - Make MyApp immutable at the end of the scope after the setup
470           method is called, fixing issues with plugins which have their
471           own new methods by inlining a constructor on MyApp
472           - Test for this and method modifiers in MyApp
473         - Fix bug causing Catalyst::Request::Upload's basename method
474           to return undef
475           - Test for this (Carl Franks)
476         - Fix loading of classes which do not define any symbols to not
477           die, as it didn't in 5.70
478           - Test for this
479         - Bump MooseX::Emulate::Class::Accessor::Fast dependency
480           to force new version which fixes a lot of plugins
481         - Make log levels additive, and add documentation and tests
482           for the setup_log method, which previously had none.
483           Sewn together by from two patches provided by David E. Wheeler
484         - Switch an around 'new' in Catalyst::Controller to a BUILDARGS
485           method as it's much neater and more obvious what is going on
486         - Add a clearer method on request and response _context
487           attributes, and use if from ::Engine rather than deleting
488           the key from the instance hash
489         - Use handles on tree attribute of Catalyst::Stats to replace
490           trivial delegation methods
491         - Change the following direct hash accesses into attributes:
492           Catalyst::Engine: _prepared_write
493           Catalyst::Engine::CGI: _header_buf
494           Catalyst::Engine::HTTP: options, _keepalive, _write_error
495           Catalyst::Request: _path
496           Catalyst::Stats: tree
497         - Fix issues in Catalyst::Controller::WrapCGI
498           and any other components which import (or define) their
499           own meta method by always explicitly calling
500           Class::MOP::Object->meta inside Catalyst
501           - Add test for this
502         - Add test case for the bug which is causing the
503           Catalyst::Plugin::Authentication tests to fail
504         - Fix a bug in uri_for which could cause it to generate paths
505           with multiple slashes in them.
506           - Add test for this
507         - Fix SKIP block name in t/optional_http-server-restart.t,
508           stopping 'Label not found for "last SKIP"' error from
509           Test::More
510         - Workaround max_redirect 0 bug in LWP
511         - Move live_engine_response_print into aggregate
512         - Fix dependency bug, s/parent/base/ in new test
513         - Fix optional tests to run the live tests in the aggregate
514           dir
515         - Fix Catalyst->go error in remote tests
516         - Fix upload test to work with remote servers, don't check for
517           deleted files
518         - Fix engine_request_uri tests to work on remote server with
519           different URI
520
521 5.8000_04  2008-12-05 12:15:00
522         - Silence Class::C3::Adopt::NEXT warnings in the test suite
523         - Fix loads of 'used once, possible typo' warnings
524         - Additional tests to ensure upload temp files are deleted
525         - Remove use of NEXT from the test suite, except for one case
526           which tests if Class::C3::Adopt::NEXT is working
527         - Use a predicate to avoid recursion in cases where the uri
528           method is overridden by a plugin, and calls the base method,
529           for example Catalyst::Plugin::SmartURI
530           - Test for this (caelum)
531         - Compose the MooseX::Emulate::Class::Accessor::Fast role to
532           Catalyst::Action, Catalyst::Request, and all other modules which
533           inherit from Class::Accessor::Fast in 5.70.
534           This fixes:
535             - Catalyst::Controller::HTML::FormFu (zamolxes)
536             - Catalyst::Request::REST
537           - Test for this
538         - Make hostname resolution lazy (Marc Mims)
539         - Support mocking virtualhosts in test suite (Jason Gottshall)
540         - Add README
541         - Fix TODO list
542         - Use Class::C3::Adopt::NEXT
543         - Ignore C3 warnings on 5.10 when testing ensure_class_loaded
544         - Add TODO test for chained bug (gbjk)
545         - Fix list address in documentation (zarquon)
546         - Fix ACCEPT_CONTEXT on MyApp, called as a class method
547            - Test for this
548         - Bump MooseX::Emulate::Class::Accessor::Fast version requirement to
549           get more back compatibility
550         - Improve documentation for $req->captures (caelum)
551         - Fix a bug in Catalyst::Stats, stopping garbage being inserted into
552           the stats if a user calls begin => but no end => (jhannah)
553            - Test for this (jhannah)
554         - Trim lines sooner in stats to avoid ugly Text::SimpleTable wrapping
555           (jhannah)
556         - Change Catalyst::ClassData to tweak the symbol table inline for
557           performance after profiling
558         - Fix POD typo in finalize_error (jhannah)
559         - Add tests to ensure that we delete the temp files created by
560           HTTP::Body's OctetStream parser
561
562 5.8000_03 2008-10-14 14:13:00
563         - Fix forwarding to Catalyst::Action objects.
564         - Fix links to the mailing lists (RT #39754 and Florian Ragwitz).
565         - Use Class::MOP instead of Class::Inspector.
566         - Change Catalyst::Test to use Sub::Exporter.
567         - Fixed typo in Engine::HTTP::Restarter::Watcher causing -r to complain.
568
569 5.8000_02 2008-10-14 07:59:00
570        - Fix manifest
571
572 5.8000_01 2008-10-13 22:52:00
573         - Port to Moose
574         - Added test for action stringify
575         - Added test for component instances getting $self->{value} from config.
576         - Add Catalyst::Response->print() method
577         - Optionally aggregate tests using Test::Aggregate.
578         - Additional docs for uri_for to mention how to use $c->action and
579           $c->req->captures (jhannah)
580         - List unattached chained actions in Debug mode.
581         - Pod formatting fix for Engine::FastCGI (Oleg Kostyuk).
582         - Add visit, a returning ->go
583
584 5.7XXXXXX XXXX
585         - Workaround change in LWP that broke a cookie test (RT #40037)
586         - Back out go() since that feature's been pushed to 5.80
587         - Fix some Win32 test failures
588         - Add pt translation of error message (wreis)
589         - Make :Chained('../action') work
590         - Add test actions
591         - Chained doc improvements (rev 8326-8328)
592
593 5.7099_03 2008-07-20 10:10:00
594         - Fix regressions for regexp fallback in model(), view() and controller()
595         - Added the supplied argument to the regexp fallback warning for easier
596           debugging
597         - Ensure ACCEPT_CONTEXT is called for results from component()
598
599 5.7099_02 2008-07-16 19:10:00
600         - Added PathPrefix attribute
601         - Removed Catalyst::Build; we've long since moved to Module::Install
602         - Updated Catalyst::Test docs to mention the use of HTTP::Request
603           objects
604
605 5.7099_01 2008-06-25 22:36:00
606         - Refactored component resolution (component(), models(), model(), et al). We now
607           throw warnings for two reasons:
608           1) model() or view() was called with no arguments, and two results are returned
609              -- set default_(model|view), current_(model|view) or current_(model|view)_instance
610              instead
611           2) you call a component resolution method with a string, and it resorts to a regexp
612              fallback wherein a result is returned -- if you really want to search, call the
613              method with a regex as the argument
614         - remove 0-length query string components so warnings aren't thrown (RT #36428)
615         - Update HTTP::Body dep so that the uploadtmp config value will work (RT #22540)
616         - Fix for LocalRegex when used in the Root controller
617         - Get some of the optional_* tests working from dirs with spaces (RT #26455)
618         - Fix Catalyst::Utils::home() when application .pm is in the current dir (RT #34437)
619         - Added the ability to remove parameters in req->uri_with() by passing in
620           an undef value (RT #34782)
621         - Added $c->go, to do an internal redispatch to another action, while retaining the
622           contents of the stash
623
624 5.7014  2008-05-25 15:26:00
625         - Addition of .conf in restart regex in Catalyst::Engine::HTTP::Restarter::Watcher
626         - Fix regression for relative uri_for arguments after a forward()
627           introduced in 5.7013 (Peter Karman)
628         - Fix regression for "sub foo : Path {}" in the root controller which
629           was introduced when attempting to allow "0" as a Path.
630
631 5.7013  2008-05-16 18:20:00
632         - Provide backwards compatability methods in Catalyst::Stats
633         - Fix subdirs for scripts that run in subdirs more than one level deep.
634         - Added test and updated docs for handling the Authorization header
635           under mod_fastcgi/mod_cgi.
636         - Fixed bug in HTTP engine where the connection was not closed properly if the
637           client disconnected before sending any headers. (Ton Voon)
638         - POD fix, IO::FileHandle => IO::Handle (RT #35690)
639         - Fix grammar on welcome page (RT #33236)
640         - Fix for Path('0') handling (RT #29334)
641         - Workaround for Win32 and c3_mro.t (RT #26452, tested by Kenichi Ishigaki)
642         - Fix for encoding query parameters
643         - Fix Chained multiple test
644
645 5.7012  2007-12-16 23:44:00
646         - Fix uri_for()'s and uri_with()'s handling of multibyte chars
647           (Daisuke Murase)
648         - Fix __PACKAGE__->config->{foo} = 'bar' case with subclassing
649         - Add Catalyst::Stats (Jon Schutz)
650         - Fixed a bug where ?q=bar=baz is decoded as q=>'bar', not 'bar=baz'.
651           (Tatsuhiko Miyagawa, Masahiro Nagano)
652         - Fixed a bug where -rr (restart regex) command line option could cause
653           shell errors. (Aristotle Pagaltzis, Chisel Wright)
654
655 5.7011  2007-10-18 20:40:00
656         - Allow multiple restart directories and added option to follow
657           symlinks in the HTTP::Restarter engine (Sebastian Willert)
658         - Fixed t/optional_http-server-restart.t so it actually tests
659           if the server restarted or notified of an error (Sebastian Willert)
660         - Return child PID from the HTTP engine when run with the 'background' option.
661           (Emanuele Zeppieri)
662         - Fixed bug in HTTP engine where writes could fail with
663           'Resource temporarily unavailable'.
664         - Fixed bug where %2b in query parameter is doubly decoded to ' ', instead of '+'
665           (RT #30087, Gavin Henry, Tatsuhiko Miyagawa, Oleg Pronin)
666         - Fixed bug where req->base and req->uri would include a port number when running
667           in SSL mode.
668         - Removed unnecessary sprintf in debug mode that caused warnings on locales where
669           commas are used for decimal markers.
670         - Improved error message for case when server picks up editor save
671           files as module names. (James Mastros)
672
673 5.7010  2007-08-22 07:41:00
674         - Resource forks in 5.7009
675
676 5.7009  2007-08-22 00:14:00
677         - Moved Manual.pod to Manual.pm and clarified status of
678           Catalyst-Manual dist
679         - Doc patches to Catalyst::Controller
680         - remove ignore_loaded from plugin load, commenting why
681         - document the ignore_loaded feature in Catalyst::Utils
682         - Add testing of inline plugins.
683
684 5.7008  2007-08-13 08:40:00
685         - Added $c->request->query_keywords for getting the keywords
686           (a query string with no parameters).
687         - Add undef warning for uri_for.
688         - Fix bug where a nested component would be setup twice.
689         - Make ensure_class_loaded behave better with malformed class name.
690         - Make _register_plugin use ensure_class_loaded.
691         - Remove 'Argument "??" isn't numeric in sprintf' warning.
692           (Emanuele Zeppieri)
693         - Fixed a bug where Content-Length could be set to 0 if a filehandle
694           object in $c->response->body did not report a size.
695         - Fixed issue where development server running in fork mode did not
696           properly exit after a write error.
697           (http://rt.cpan.org/Ticket/Display.html?id=27135)
698         - Remove warning for captures that are undef.
699         - Fixed $c->read and parse_on_demand mode.
700         - Fixed a bug with the HTTP engine where very large response bodies
701           would not be sent properly.
702
703 5.7007  2007-03-13 14:18:00
704         - Many performance improvements by not using URI.pm:
705           * $c->uri_for (approx. 8x faster)
706           * $c->engine->prepare_path (approx. 27x faster)
707           * $c->engine->prepare_query_parameters (approx. 5x faster)
708         - Updated HTTP::Body dependency to 0.9 which fixes the following issues:
709           * Handle when IE sometimes sends an extra CRLF after the POST body.
710           * Empty fields in multipart/form-data POSTs are no longer ignored.
711           * Uploaded files with the name "0" are no longer ignored.
712         - Sending SIGHUP to the dev server will now cause it to restart.
713         - Allow "0" for a path in uri_for.
714         - Performance and stability improvements to the built-in HTTP server.
715         - Don't ignore file uploads if form contains a text field with the same name.
716           (Carl Franks)
717         - Support restart_delay of 0 (for use in the POE engine).
718         - Skip body processing if we don't have a Content-Length header.
719           Results in about a 9% performance increase when handling GET/HEAD
720           requests.
721         - Add a default body to redirect responses.
722         - MyApp->model/view now looks at MyApp->config->{default_view/model}
723           (Bogdan Lucaciu)
724
725 5.7006   2006-11-15 14.18
726         - Updated manifest
727         - Fix Slurp dependency
728         - Updated HTTP::Body dependency to 0.6, 0.5 can break on large POST
729           requests.
730         - Skip utf8 fix for undef values in uri_with() and uri_for()
731
732 5.7005   2006-11-07 19:37:35
733         - Fixed lighttpd tests to be properly skipped.
734         - Moved IE workarounds to exist only in the HTTP engine.
735         - Added installation instructions (from Catalyst-Manual dist)
736
737 5.7004   2006-11-06 20:48:35
738         - Fix Engine::HTTP crash when using IE. (Jesper Krogh, Peter Edwards)
739         - clean up Catalyst::Utils to handle some edge cases
740         - Properly work around lighttpd PATH_INFO vs. SCRIPT_NAME bug
741           (Mark Blythe)
742         - add _application accessor to Catalyst::Base
743         - Support current_view
744         - Allow use of Catalyst::Test without app name (Ton Voon, Altinity)
745         - Catalyst::Manual moved to its own package
746         - Add option to FastCGI engine to send errors to stdout, not the web server
747         - Use Module::Install's auto_install to install prerequisite modules
748         - various documentation fixes and improvements
749
750 5.7003   2006-09-21 16:29:45
751         - Additions and updates to tutorial
752
753 5.7002   2006-09-17 19:35:32
754         - unescape captures to match args
755         - fix for relative Chained under namespace '' (root)
756         - fix for hashrefs in action attributes from config
757         - fix for Chained to require correct number of CaptureArgs
758
759 5.7001   2006-07-19 23:46:54
760         - fix for component loading
761         - uri_for and uri_with now behave as they used to with non-
762           array references
763
764 5.7000   2006-07-07 08:08:08
765         - fix FCGI.pm warning message with FastCGI engine
766         - bumped inc::Module::Install to 0.63 in Makefile.PL
767         - fixes to uri_for_action for DispatchType::Chained
768         - Further doc work.
769         - Minor code cleanups
770         - Changed catalyst.pl to depend on Catalyst::Devel
771
772 5.70_03  2006-06-28 16:42:00
773         - fixup to registered plugins debug at app startup
774         - refactored Catalyst::Utils::home
775
776 5.70_02  2006-06-27 11:51:00
777         - Updated tutorial.
778
779 5.70_01  2006-06-26 10:49:00
780
781         - fixed a Catalyst::Base bug causing duplicate action registrations
782         - modified DispatchTypes to support multiple registrations
783         - added Catalyst::Runtime module as dist marker
784         - added Catalyst::ActionChain and Chained DispatchType
785         - removed retarded registration requirement in dispatcher
786         - removed Module::Pluggable::Fast hack in favor of
787           Module::Pluggable::Object
788         - extended uri_for, added dispatcher->uri_for_action
789         - added Catalyst::Base->action_for('methodname')
790         - checked and tested :Args multimethod dispatch
791         - added ability to set action attributes from controller config
792         - added merge_config_hashes() as a convenience method
793         - Swapped out CGI::Cookie in favour of CGI::Simple::Cookie
794         - Removed test dependencies on Test::NoWarnings, Test::MockObject
795         - Removed dependency on UNIVERSAL::require
796         - Split out Catalyst::Helper into a new distribution
797         - un-bundled the plugins as they are now pre-reqs for Catalyst::Helper
798         - nuked each() out of core with prejudice (due to lurking buglets)
799         - Added tests from phaylon for dispatcher precedence
800         - Use Class::Inspector->loaded($class) instead of $class->can('can')
801         - Added ActionClass attribute
802         - Removed Test::WWW::Mechanize::Catalyst from Makefile.PL (circular dep)
803         - Updated docs for Catalyst::Component
804         - Separated execute and dispatch on Catalyst::Action
805         - cleaned up logging and debug output
806         - significant documentation revisions
807         - Added warning for setup being called twice
808         - Fix pod to use DBIC::Schema instead of DBIC model
809         - Fix ->config failing to copy _config for subclassing
810         - Updated log format
811         - Updated debug dump
812
813 5.6902  2006-05-04 13:00:00
814         - Remove tarballs and OSX metadata files.
815
816 5.6901  2006-05-03 11.17:00
817         - Module::Install didn't overwrite META.yml.
818
819 5.6900  2006-05-03 11.17:00
820         - Stupid pause indexer can't count.
821         - Better fix for Catalyst::Test
822         - more tests.
823
824 5.682   2006-04-27 13:51:00
825         - Damn OSX attributes again :(
826
827 5.681   2006-04-27 08:47:00
828         - Updated manifest.
829         - Add basename to core . (Deprecates Catalyst::Plugin::Basename)
830
831 5.68    2006-04-26 12:23:00
832         - ConfigLoader: Updated to version 0.06
833         - fixed undef warnings in uri_for() and uri_with()
834         - Fixed Catalyst::Test to report errors on failed Class load
835
836 5.678   2006-04-24 12:30:00
837         - Re-release of 5.67 without OSX metadata files.
838
839 5.67    2006-04-23 08:50:00
840         - Added $c->req->uri_with() helper
841         - ConfigLoader: Updated to version 0.05
842         - Fix up Engine to avoid a new 5.8.8 warning
843         - Added app name with :: support for PAR
844         - Added $c->models/views/controllers
845         - Static::Simple: Unescape the URI path before looking for the file.
846           This fixes issues with files that have spaces.
847         - Looping and recursion tests plus a fix
848         - Added lots of API documentation. Refactored main pod.
849         - Changed default behaviors for $c->model/$c->controller/$c->view
850           to more sane settings.
851         - added the clear_errors method - an alias for error(0)
852         - Added tmpdir option for uploads (woremacx)
853         - Applied patch from GEOFFR to allow normal filehandles.
854         - Refactored Dispatcher internals for better readability and speedup
855           (stress tests run 12% faster)
856         - Allow $c->error to run as a class method
857
858 5.66    2006-03-10 17:48:00
859         - Added Test::WWW::Mechanize::Catalyst support
860         - Cleaned generated tests
861         - Added Root controller concept
862         - Updated ConfigLoader plugin to version 0.04
863
864 5.65    2006-02-21 10:34:00
865         - Added plugin introspection.
866         - Support optional hashref as last param for parameters in uri_for.
867         - Updated tutorial to be more complete.
868         - Applied args patch from antirice (Fixes Ticket #67)
869
870 5.64    2006-02-07 20:29:00
871         - Fixed bug in FastCGI proc manager mode where pm_post_dispatch
872           was not run. (Eric Wong)
873         - Cleaned up generated tests
874         - Updated YAML support to use ConfigLoader
875         - Fixed path dispatch to canonicalise correctly
876             (see http://dev.catalyst.perl.org/ticket/62)
877         - Added Catalyst::Manual::About
878
879 5.63    2006-01-22 00:00:00
880         - Updated prereq versions
881
882 5.62    2006-01-17 16:30:00
883         - Large update to the tutorial (castaway)
884         - Added YAML config support
885         - Added COMPONENT() and ACCEPT_CONTEXT() support
886         - Action list in debug mode is now displayed as a tree in the
887           correct execution order.
888         - Fixed engine detection to allow custom mod_perl engines.
889         - Static::Simple: Fixed bug in ignore_dirs under win32.
890         - Display version numbers of loaded plugins. (Curtis Poe)
891         - Added class and method for caught exception messages.
892         - Updated PAR support to use "make catalyst_par",
893           packages are no longer written by Makefile.PL.
894         - Automatically determine Content-Length when serving a
895           filehandle.
896         - Exceptions now return status 500.
897         - Updated for Module::Install 0.44.
898         - Fixed additional file installation for multi level app names.
899         - Added REDIRECT_URL support for applications running behind
900           a RewriteRule in Apache. (Carl Franks)
901         - Fixed FastCGI engine under win32. (Carl Franks)
902         - FastCGI doc updates (Bill Moseley)
903         - Bugfix for $c->model and friends (defined).
904
905 5.61    2005-12-02 00:00:00
906         - Fixed ExtUtils::AutoInstall Bootstrap Code in Makefile.PL
907
908 5.60    2005-12-01 22:15:00
909         - Fixed Path and index actions in the appclass,
910           including those that attach to /
911         - Index is now weighted higher than Path
912         - Fixed restarter and -d debug switch in server.pl.
913         - Added a warning if you attempt to retrieve a parameter
914           using $c->req->params('foo').
915         - Fixed the Module::Install::Catalyst @ISA bug
916
917 5.59    2005-11-30 13:25:00
918         - Fixed shebang line for generated scripts
919         - Fixed forward to classes ($c->forward(qw/MyApp foo/))
920         - Wrap use block in begin to quelch C:C3 warnings
921         - Removed scrollbar from debug output
922         - Fixed catalyst_par_core() and catalyst_par_multiarch()
923
924 5.58    2005-11-24 10:51:00
925         - Added ExtUtils::AutoInstall support
926         - Allow overriding path in Catalyst::Helper.
927         - Added -makefile to catalyst.pl to generate a new Makefile.PL.
928         - Restored Catalyst::Build with a deprecation notice.
929         - Improved PAR support
930         - Replaced -short with auto-detection
931         - Fixed prereqs, added File::Copy::Recursive
932         - Static::Simple changes:
933             - Made prepare_action play nice with other plugins by not short-
934               circuiting.
935             - Added tmpl to the ignored extensions.
936             - Fixed security problem if req->path contained '..'.
937
938 5.57    2005-11-20 22:45:00
939         - Updated uri_for to accept undef actions
940         - Switched to Module::Install
941         - Renamed tests for easier editing
942         - Reformatted documentation
943         - Renamed -nonew to -force
944         - Added PAR support
945         - Added keep-alive support and bug fixes to HTTP engine.
946           (Sascha Kiefer)
947         - Added daemonize option to FastCGI engine. (Sam Vilain)
948
949 5.56   2005-11-16 10:33:00
950         - Fixed FastCGI engine to not clobber the global %ENV on each
951           request. (Sam Vilain)
952         - Updated benchmarking to work with detach
953         - Fixed dispatcher, so $c->req->action(undef) works again
954         - Updated Catalyst::Test to use HTTP::Request::AsCGI
955         - Added -pidfile to external FastCGI server.
956
957 5.55    2005-11-15 12:55:00
958         - Fixed multiple cookie handling
959
960 5.54    2005-11-14 22:55:00
961         - Fixed a Module::Pluggable::Fast related bug
962
963 5.53    2005-11-14 15:55:00
964         - Removed t/04prereq.t that was testing for non-required
965           modules.
966
967 5.52    2005-11-14 10:57:00
968         - Strip '..'s in static urls to fix security issue.
969
970 5.51    2005-11-14 00:45:00
971         - Changed uri_for to use namespace instead of match.
972
973 5.50    2005-11-13 20:45:00
974         - Fixed minor bugs.
975         - Updated docs.
976
977 5.49_05 2005-11-12 20:45:00
978         - Large update to the documentation. (David Kamholz)
979         - Fixed args handling in forward()
980         - Fixed forwarding to classes
981         - Fixed catalyst.pl-generated Build.PL Makefile section.
982         - Fixed relative forwarding
983         - Fixed forward arrows in debug output
984
985 5.49_04 2005-11-09 23:00:00
986         - Made context, dispatcher, engine, request and response classes
987           configurable.
988         - Added $c->stack.
989         - Fixed dispatcher to ignore unknown attributes.
990         - Improved format of startup debug log.
991         - Updated built in server to restart on win32. (Will Hawes)
992         - Fixed streaming write from a filehandle to stop writing
993           if the browser is closed.
994         - Added $c->controller, $c->model and $c->view shortcuts.
995         - Switched to Text::SimpleTable.
996
997 5.49_03 2005-11-03 12:00:00
998         - Fixed $c->req->{path} for backwards-compatibility.
999         - Allow debug to be disabled via ENV as well as enabled.
1000         - Added -scripts option to catalyst.pl for script updating
1001         - Changed helpers to default to long types, Controller instead of C
1002         - Added Catalyst::Controller, Catalyst::Model and Catalyst::View
1003           base classes
1004         - Added JavaScript to debug screen to show and hide specific dumps
1005         - Added _DISPATCH, _BEGIN, _AUTO, _ACTION and _END actions
1006         - Added multi process external FastCGI support
1007           (see myapp_fastcgi.pl -help) (Sam Vilain)
1008         - Restarter process in HTTP engine now properly exits when the
1009           parent app is shut down.
1010         - Improved performance of restarter loop while watching for
1011           changed files.
1012         - Restarter will now detect new files added to an app on systems
1013           that change directory mtimes when new files are created.
1014         - Restarter now properly handles modules that are deleted from an
1015           application.
1016         - Fixed memory leak in TestApp.
1017
1018 5.49_02 2005-10-26 12:39:00
1019         - Whole new dispatcher!
1020         - Added index action
1021         - Added path_to method
1022         - Added support for passing an IO::Handle object to $c->res->body.
1023           (Andrew Bramble)
1024         - Added a new welcome screen.
1025         - Included Catalyst buttons and icons in helper.
1026         - Added Static::Simple plugin to core.
1027         - Added self restarting test server
1028         - Added filename to debug output for uploaded files.
1029         - Fixed forwarding with embedded arguments.
1030         - Fixed handling of escaped query strings.
1031         - Added upload parameters back into $c->req->params.
1032         - Added multiple paths support to dispatcher
1033         - Fixed bug in req->path where changing the path added a trailing
1034           slash.
1035         - Removed req->handle and res->handle
1036         - Added prepare_body_chunk method as a hook for upload progress.
1037         - Fixed bug in uri_for method when base has no path.
1038         - Added automated tests for HTTP, CGI, and FastCGI servers.
1039
1040 5.49_01 2005-10-10 10:15:00
1041         - Refactored all internals, should be 99% compatible to previous
1042           versions.
1043         - *IMPORTANT* The Apache engines have been moved to a separate package
1044           for this release.  Please install Catalyst::Engine::Apache if you
1045           need Apache support.
1046
1047         - Added support for calling forward with arguments in the path, i.e.
1048           $c->forward('/foo/bar/arg1/arg2')
1049         - Made $c->req->uri a URI object, added req->path_info for CGI compat.
1050           Raw query string is available as $c->req->uri->query.
1051         - Made $c->req->base a URI object.
1052         - Parameters with multiple values (?a=1&a=2) now display properly
1053           in the debug output.
1054         - Semi-colon separators in query strings now work properly.
1055         - Expanded documentation of catalyst.pl (Andrew Ford)
1056         - Added support for running as a backend server behind a frontend
1057           proxy so req->base and req->address are set properly.
1058         - Added an 'abort' method to the Log api, so that you can
1059           kill loggging for a whole request.
1060         - Added $c->uri_for method to simplify url handling.
1061         - Added more tests and reorganized the t directory.
1062         - Reimplemented core engines, all are now CGI based for better test
1063           coverage and maintainability.
1064         - Added fork support to built in test server.
1065         - Fixed all memory leaks.
1066         - Thread-related bug fixes and tests.  We now believe the Catalyst
1067           core to be thread-safe.
1068         - Added streaming IO support through $c->req->read() and
1069           $c->res->write()
1070         - Added MyApp->config->{parse_on_demand} (streaming input)
1071         - Added $c->req->handle and $c->res->handle
1072         - Improved documentation
1073         - Fixed mkpath in Catalyst::Helper (Autrijus Tang)
1074         - Fixed bug in dispatcher where an invalid path could call a valid
1075           action. (Andy Grundman)
1076         - Fixed Helper so it works with CRLF line-endings. (Andy Grundman)
1077
1078 5.33  2005-08-10 15:25:00
1079         - Now with updated manifest.
1080
1081 5.32  2005-08-10 15:10:00
1082         - Dispatcher might fail if object returns false.
1083
1084 5.31  2005-06-04 12:35:00 (never released to CPAN)
1085
1086         - helpers now create .new files where files already exist and differ
1087         - fixed $Data::Dumper::Terse (Robin Berjon)
1088         - added arguments for detach
1089         - new credits section in POD
1090         - fixed detach to allow relative action names (Matt and Robert)
1091         - added the ability to have whitespaces in Path( '' ) and Regex( '' )
1092
1093 5.30  2005-06-04 12:35:00
1094
1095         - Fixed a bug where it was not possible to $c->forward to a
1096           component
1097           that was not inheriting from Catalyst::Base.
1098         - Fix for inheritance bug.
1099         - Allow forward with arguments.
1100         - Updated cookbook
1101         - Allow overriding home/root in config.
1102         - make module build cons README automatically.
1103         - prettify home path by resolving '..' (Andy Grundman)
1104         - improved helper templates a bit, new naming scheme for tests.
1105         - added support for case sensitivity, MyApp->config->{case_sensitive}
1106         - added $c->detach for non-returning forwards
1107         - added unified error handling, Catalyst::Exception
1108         - added section on param handling in Intro.pod
1109         - added $c->request->cookie
1110         - added Catalyst::Setup
1111         - refactored Catalyst::import()
1112         - improved rendering of error messages in debug mode
1113         - fixed a bug in Catalyst::Helper::mk_dir
1114         - further doc changes, esp. to Intro.pod
1115
1116 5.23  2005-06-03 02:30:00
1117         - added support for non Catalyst::Base components to live in namespace
1118         - improved concurrency connections in Catalyst::Engine::HTTP::Daemon
1119
1120 5.22  2005-05-26 14:24:00
1121         - improved base locating in MP engines
1122         - improved error messages in C::E::HTTP::Daemon
1123         - hostnames are now resolved on demand unless provided by engine
1124         - fixed memory leak in $c->execute (Michael Reece, Matt S Trout)
1125
1126 5.21  2005-05-24 14:56:00
1127         - fixed a bug in https detection
1128         - fixed auto chain finally
1129         - added MYAPP_HOME and CATALYST_HOME environment variables
1130
1131 5.20  2005-05-18 19:52:00
1132         - improved uploads and parameters
1133         - added $c->req->protocol and $c->req->secure
1134         - added $c->req->user and $c->req->uri
1135         - improved error message when forwarding to unknown module
1136         - fixed win32 installer
1137         - added deep recursion detection
1138         - fixed auto actions
1139         - fixed inheritance in dispatcher
1140         - allow whitespaces between brackets and quoted string
1141           in Path and Regex attributes
1142         - new helper templates
1143         - installer now supports install_base and destdir
1144         - allow multiple Catalyst apps to run on the same mod_perl
1145           instance (not the same app!)
1146         - fixed MP2 engines
1147         - removed apreq dependency from all MP engines
1148         - added support for MP registry scripts
1149         - added support for LocationMatch and ScriptAliasMatch in MP engines
1150         - added SpeedyCGI engine
1151
1152 5.10  2005-04-23 11:16:00
1153         - updated dependencies to require latest module::pluggable::fast
1154         - new installer for templates and stuff using Module::Build
1155         - scripts are now prefixed, for being installable
1156         IMPORTANT: You have to regenerate the script directory,
1157         remove Makefile.PL and add Build.PL
1158         - Added compat to install Module::Build if required.
1159         - Improved: Params handling with MP engines
1160         - Fixed: Params handling on POST with CGI engine (Andy Grundman)
1161         - Fixed: Helper.pm on Win32 (Matt S Trout)
1162
1163 5.03  2005-04-19 20:35:00 (Revision 462)
1164         - fixed Test example (Torsten Seeman)
1165         - added Plugins chapter to manual
1166         - applied doc patch from Robert Boone <robert@rlb3.com>
1167         - improved Dispatcher error messages.
1168         - refactored so we don't need to include helper from
1169           Catalyst.pm - Fixes issues with FindBin
1170         - applied HTTP.pm patch from Andy Grundman <andy@hybridized.org>
1171         - added plugin() method for instant plugins
1172         - FCGI is no more considered experimental
1173
1174 5.02  2005-04-18 10:00:00
1175         - fixed manifest
1176
1177 5.01  2005-04-17 23:00:00
1178         - some documentation bugs fixed
1179         - added Catalyst::Utils
1180         - fixed regexp bug (Matt S Trout)
1181         - fixed upload bug with MP19
1182         - added $c->req->body
1183         - aliased $c->res->output to $c->res->body
1184         - Read AUTHOR from passwd or $ENV{AUTHOR} when
1185           generating code.
1186         - extended attribute handling
1187         - added global config for components
1188
1189 5.00  2005-04-15 18:00:00
1190         - new core to support inheritance trees
1191         - new syntax for action declaration
1192         - new helper system using TT2
1193         - problems with mod_perl2 fixed
1194         - added Test::Pod support
1195         - added new server backend with HTTP/1.1 support
1196         - added option to run tests against a remote server
1197         - renamed errors() to error()
1198         - more better docs
1199         - countless minor improvements
1200           IMPORTANT: This release is very incompatible to previous ones
1201           and you have to regenerate the helper scripts again...
1202
1203 4.34  2005-03-23 07:00:00 2005
1204         - added some messages to Makefile.PL
1205         - added Catalyst::Engine::Test
1206         - added Catalyst::Engine::CGI::NPH
1207         - simplified Catalyst::Log to be easier to implement/subclass
1208         - added cgi.pl
1209         - updated Catalyst::Test to use Catalyst::Engine::Test
1210         - updated helper scripts
1211           IMPORTANT: this will be the last time you'll have to regenerate
1212           the script directory. We promise!
1213
1214 4.33  2005-03-23 01:00:00 2005
1215         - documented the log() accessor method in Catalyst (Andrew Ford)
1216         - added optional arguments to Catalyst::Log methods (Andrew Ford)
1217         - removed cgi-server.pl
1218         - added fcgi.pl and Catalyst::Engine::FCGI
1219         - fixed an undef durng make test (Dan Sully)
1220         - new path test (Christian Hansen)
1221           IMPORTANT: you have to regenerate the script directory again
1222
1223 4.32  2005-03-22 02:10:00 2005
1224         - made a damn typo *AAAAAAAAAAAAAAHHHH!!!*
1225
1226 4.31  2005-03-22 02:00:00
1227         - fixed inheritance (Christian Hansen)
1228         - previous release was borked!
1229           fixed that, but you have to regenerate the scripts again :(
1230
1231 4.30  2005-03-21 23:00:00
1232         - more documentation (Andrew Ford)
1233         - added connection informations (Christian Hansen)
1234         - HTTP::Request support in Catalyst::Test (Christian Hansen)
1235         - moved cgi.pl to nph-cgi.pl
1236         - added Catalyst::Engine::Server (Christian Hansen)
1237         - removed Catalyst::Test::server
1238         - updated helper scripts
1239           IMPORTANT: note that you have to regenerate script/server.pl,
1240           script/cgi-server.pl and script/cgi.pl (now nph-cgi.pl)
1241
1242 4.28  2005-03-19 22:00:00
1243         - fixed isa tree (Christian Hansen)
1244         - added script/cgi-server.pl, so no more server restarting after
1245           code changes
1246         - reworked documentation (Andrew Ford <A.Ford@ford-mason.co.uk>)
1247
1248 4.27  2005-03-19 01:00:00
1249         - debug message for parameters
1250         - Fix redirects (Christian Hansen <ch@ngmedia.com>)
1251         - some random fixes
1252         - new helper api for Catalyst::Helper::* support
1253           you have to update script/create.pl to use it
1254
1255 4.26  2005-03-16 10:00:00
1256         - fixed the weird bug that caused regex actions to fail on every
1257           second request
1258         - more debug messages
1259         - 100% pod coverage.
1260
1261 4.25  2005-03-12 18:00:00
1262         - correct perl pathes for helper generated scripts (Tatsuhiko Miyagawa)
1263         - improved cgi engine docs (Christoper Hicks)
1264
1265 4.24  2005-03-12 01:00:00
1266         - updated cookbook example
1267         - fixed base for apache and https (Andrew Ruthven)
1268
1269 4.23  2005-03-09 20:00:00
1270         - no more regex actions in forward
1271         - added support for test directories t/m, t/v and t/c
1272
1273 4.22  2005-03-08 20:00:00
1274         - catch errors in application class
1275         - handle die properly.
1276
1277 4.21  2005-03-05 17:00:00
1278         - fixed docs
1279
1280 4.20  2005-03-04 22:00:00
1281         - moved bin to script
1282
1283 4.13  2005-03-03 11:00:00
1284         - improved documentation
1285         - pod coverage test for helper generated apps
1286         - new helper api
1287
1288 4.12  2005-03-02 11:00:00 2005
1289         - server_base sucks, removed
1290         - added $c->log->dump()
1291
1292 4.11  2005-03-02 11:00:00 2005
1293         - removed some warnings
1294         - improved docs
1295         - private prefixed actions override private non prefixed actions
1296         - added server_base
1297         - updated Catalyst::Manual::Intro
1298
1299 4.10  2005-03-02 10:00:00 2005
1300         - improved documentation
1301         - fixed upload bug
1302         - fixed prefixed private actions bug
1303         - fixed more little bugs
1304
1305 4.01  2005-03-01 10:00:00 2005
1306         - improved documentation
1307         - documentation fixes (Johan Lindstrom)
1308
1309 4.00  2005-02-27 22:00:00
1310         - more verbose debug messages, especially for forward()
1311         - implemented prefixed prvate actions, icluding built in
1312           !?default, !?begin and !?end
1313         - new Catalyst::Manual::Intro
1314         - new helpers, bin/catalyst
1315         - helper api
1316
1317 3.11  2005-02-23 21:00:00
1318         - added dependency to UNIVERSAL::require (Marcus Ramberg)
1319         - added a little workaround for a warning in Catalyst::Test
1320           (Marcus Ramberg)
1321         - improved documentation for actions
1322
1323 3.10  2005-02-19 20:00:00
1324         - removed roles management from Catalyst::Engine
1325           and added it to Catalyst::Plugin::Authentication::CDBI
1326
1327 3.04  2005-02-17 21:00:00
1328         - error reporting for app class
1329         - no more engine debug messages
1330         - class->method forwards get resolved now
1331
1332 3.03  2005-02-16 23:00:00
1333         - friendlier statistics
1334
1335 3.02  2005-02-16 22:00:00
1336         - fixed unintialized actions (Marcus Ramberg)
1337
1338 3.01  2005-02-16 20:30:00
1339         - better statistics
1340
1341 3.00  2005-02-16 20:00:00
1342         - real version number for CPAN.pm
1343         - fixed redirect in CGI engine
1344         - more statistics in debug logs
1345         - ? prefix for forward()
1346
1347 2.99_15  2005-02-02 22:00:00
1348         - support for short namespaces, MyApp::M, MyApp::V and MyApp::C
1349         - Replaced "Catched" with "Caught" in Catalyst::Engine
1350           (Gary Ashton Jones)
1351         - replaced _ with ! for private actions
1352         - added ? for prefixed actions
1353         - misc improvememts
1354
1355 2.99_14  2005-01-31 22:00:00 2005
1356         - arguments for _default
1357         - $c->entrance removed for more flexibility
1358         - added $c->req->method
1359
1360 2.99_13  2005-01-30 18:00:00 2005
1361         - POD fixes and improvements
1362
1363 2.99_12  2005-01-28 22:00:00 2005
1364         - first development release