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