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