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