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