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