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