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