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