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