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