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