08816f691f636a8e30580859e1b8646d8bfed16e
[catagits/Catalyst-Runtime.git] / Changes
1 This file documents the revision history for Perl extension Catalyst.
2
3         - Split out Catalyst::Helper into a new distribution
4         - un-bundled the plugins as they are now pre-reqs for Catalyst::Helper
5         - nuked each() out of core with prejudice (due to lurking buglets)
6         - Added tests from phaylon for dispatcher precedence
7         - Use Class::Inspector->loaded($class) instead of $class->can('can')
8         - Added ActionClass attribute
9         - Removed Test::WWW::Mechanize::Catalyst from Makefile.PL (circular dep)
10         - Updated docs for Catalyst::Component
11         - Separated execute and dispatch on Catalyst::Action
12         - cleaned up logging and debug output
13         - minor doc fixes
14         - Added warning for setup being called twice
15         - Fix pod to use DBIC::Schema instead of DBIC model
16         - Fix ->config failing to copy _config for subclassing
17         - Updated log format
18         - Updated debug dump
19
20 5.6902  2006-05-04 13:00:00
21         - Remove tarballs and OSX metadata files.
22
23 5.6901  2006-05-03 11.17:00
24         - Module::Install didn't overwrite META.yml. 
25
26 5.6900  2006-05-03 11.17:00
27         - Stupid pause indexer can't count.
28         - Better fix for Catalyst::Test
29         - more tests.
30
31 5.682   2006-04-27 13:51:00
32         - Damn OSX attributes again :( 
33
34 5.681   2006-04-27 08:47:00
35         - Updated manifest.
36         - Add basename to core . (Deprecates Catalyst::Plugin::Basename)
37     
38 5.68    2006-04-26 12:23:00
39         - ConfigLoader: Updated to version 0.06
40         - fixed undef warnings in uri_for() and uri_with()
41         - Fixed Catalyst::Test to report errors on failed Class load
42
43 5.678   2006-04-24 12:30:00
44         - Re-release of 5.67 without OSX metadata files.
45
46 5.67    2006-04-23 08:50:00
47         - Added $c->req->uri_with() helper
48         - ConfigLoader: Updated to version 0.05
49         - Fix up Engine to avoid a new 5.8.8 warning
50         - Added app name with :: support for PAR
51         - Added $c->models/views/controllers
52         - Static::Simple: Unescape the URI path before looking for the file.
53           This fixes issues with files that have spaces.
54         - Looping and recursion tests plus a fix
55         - Added lots of API documentation. Refactored main pod.
56         - Changed default behaviors for $c->model/$c->controller/$c->view
57           to more sane settings.
58         - added the clear_errors method - an alias for error(0)
59         - Added tmpdir option for uploads (woremacx)
60         - Applied patch from GEOFFR to allow normal filehandles.
61         - Refactored Dispatcher internals for better readability and speedup
62           (stress tests run 12% faster)
63         - Allow $c->error to run as a class method
64
65 5.66    2006-03-10 17:48:00
66         - Added Test::WWW::Mechanize::Catalyst support
67         - Cleaned generated tests
68         - Added Root controller concept
69         - Updated ConfigLoader plugin to version 0.04
70
71 5.65    2006-02-21 10:34:00
72         - Added plugin introspection.
73         - Support optional hashref as last param for parameters in uri_for.
74         - Updated tutorial to be more complete.
75         - Applied args patch from antirice (Fixes Ticket #67)
76
77 5.64    2006-02-07 20:29:00
78         - Fixed bug in FastCGI proc manager mode where pm_post_dispatch
79           was not run. (Eric Wong)
80         - Cleaned up generated tests
81         - Updated YAML support to use ConfigLoader
82         - Fixed path dispatch to canonicalise correctly
83             (see http://dev.catalyst.perl.org/ticket/62)
84         - Added Catalyst::Manual::About
85
86 5.63    2006-01-22 00:00:00
87         - Updated prereq versions
88
89 5.62    2006-01-17 16:30:00
90         - Large update to the tutorial (castaway)
91         - Added YAML config support
92         - Added COMPONENT() and ACCEPT_CONTEXT() support
93         - Action list in debug mode is now displayed as a tree in the
94           correct execution order.
95         - Fixed engine detection to allow custom mod_perl engines.
96         - Static::Simple: Fixed bug in ignore_dirs under win32.
97         - Display version numbers of loaded plugins. (Curtis Poe)
98         - Added class and method for caught exception messages.
99         - Updated PAR support to use "make catalyst_par",
100           packages are no longer written by Makefile.PL.
101         - Automatically determine Content-Length when serving a
102           filehandle.
103         - Exceptions now return status 500.
104         - Updated for Module::Install 0.44.
105         - Fixed additional file installation for multi level app names.
106         - Added REDIRECT_URL support for applications running behind
107           a RewriteRule in Apache. (Carl Franks)
108         - Fixed FastCGI engine under win32. (Carl Franks)
109         - FastCGI doc updates (Bill Moseley)
110         - Bugfix for $c->model and friends (defined).
111
112 5.61    2005-12-02 00:00:00
113         - Fixed ExtUtils::AutoInstall Bootstrap Code in Makefile.PL
114
115 5.60    2005-12-01 22:15:00
116         - Fixed Path and index actions in the appclass,
117           including those that attach to /
118         - Index is now weighted higher than Path
119         - Fixed restarter and -d debug switch in server.pl.
120         - Added a warning if you attempt to retrieve a parameter
121           using $c->req->params('foo').
122         - Fixed the Module::Install::Catalyst @ISA bug
123
124 5.59    2005-11-30 13:25:00
125         - Fixed shebang line for generated scripts
126         - Fixed forward to classes ($c->forward(qw/MyApp foo/))
127         - Wrap use block in begin to quelch C:C3 warnings
128         - Removed scrollbar from debug output
129         - Fixed catalyst_par_core() and catalyst_par_multiarch()
130
131 5.58    2005-11-24 10:51:00
132         - Added ExtUtils::AutoInstall support
133         - Allow overriding path in Catalyst::Helper.
134         - Added -makefile to catalyst.pl to generate a new Makefile.PL.
135         - Restored Catalyst::Build with a deprecation notice.
136         - Improved PAR support
137         - Replaced -short with auto-detection
138         - Fixed prereqs, added File::Copy::Recursive
139         - Static::Simple changes:
140             - Made prepare_action play nice with other plugins by not short-
141               circuiting.
142             - Added tmpl to the ignored extensions.
143             - Fixed security problem if req->path contained '..'.
144
145 5.57    2005-11-20 22:45:00
146         - Updated uri_for to accept undef actions
147         - Switched to Module::Install
148         - Renamed tests for easier editing
149         - Reformatted documentation
150         - Renamed -nonew to -force
151         - Added PAR support
152         - Added keep-alive support and bug fixes to HTTP engine.
153           (Sascha Kiefer)
154         - Added daemonize option to FastCGI engine. (Sam Vilain)
155
156 5.56   2005-11-16 10:33:00
157         - Fixed FastCGI engine to not clobber the global %ENV on each
158           request. (Sam Vilain)
159         - Updated benchmarking to work with detach
160         - Fixed dispatcher, so $c->req->action(undef) works again
161         - Updated Catalyst::Test to use HTTP::Request::AsCGI
162         - Added -pidfile to external FastCGI server.
163
164 5.55    2005-11-15 12:55:00
165         - Fixed multiple cookie handling
166
167 5.54    2005-11-14 22:55:00
168         - Fixed a Module::Pluggable::Fast related bug
169
170 5.53    2005-11-14 15:55:00
171         - Removed t/04prereq.t that was testing for non-required
172           modules.
173
174 5.52    2005-11-14 10:57:00
175         - Strip '..'s in static urls to fix security issue.
176
177 5.51    2005-11-14 00:45:00
178         - Changed uri_for to use namespace instead of match.
179
180 5.50    2005-11-13 20:45:00
181         - Fixed minor bugs.
182         - Updated docs.
183
184 5.49_05 2005-11-12 20:45:00
185         - Large update to the documentation. (David Kamholz)
186         - Fixed args handling in forward()
187         - Fixed forwarding to classes
188         - Fixed catalyst.pl-generated Build.PL Makefile section.
189         - Fixed relative forwarding
190         - Fixed forward arrows in debug output
191
192 5.49_04 2005-11-09 23:00:00
193         - Made context, dispatcher, engine, request and response classes
194           configurable.
195         - Added $c->stack.
196         - Fixed dispatcher to ignore unknown attributes.
197         - Improved format of startup debug log.
198         - Updated built in server to restart on win32. (Will Hawes)
199         - Fixed streaming write from a filehandle to stop writing
200           if the browser is closed.
201         - Added $c->controller, $c->model and $c->view shortcuts.
202         - Switched to Text::SimpleTable.
203
204 5.49_03 2005-11-03 12:00:00
205         - Fixed $c->req->{path} for backwards-compatibility.
206         - Allow debug to be disabled via ENV as well as enabled.
207         - Added -scripts option to catalyst.pl for script updating
208         - Changed helpers to default to long types, Controller instead of C
209         - Added Catalyst::Controller, Catalyst::Model and Catalyst::View
210           base classes
211         - Added JavaScript to debug screen to show and hide specific dumps
212         - Added _DISPATCH, _BEGIN, _AUTO, _ACTION and _END actions
213         - Added multi process external FastCGI support
214           (see myapp_fastcgi.pl -help) (Sam Vilain)
215         - Restarter process in HTTP engine now properly exits when the
216           parent app is shut down.  
217         - Improved performance of restarter loop while watching for
218           changed files.
219         - Restarter will now detect new files added to an app on systems
220           that change directory mtimes when new files are created.
221         - Restarter now properly handles modules that are deleted from an
222           application.
223         - Fixed memory leak in TestApp.
224
225 5.49_02 2005-10-26 12:39:00 
226         - Whole new dispatcher!
227         - Added index action
228         - Added path_to method
229         - Added support for passing an IO::Handle object to $c->res->body.
230           (Andrew Bramble)
231         - Added a new welcome screen.
232         - Included Catalyst buttons and icons in helper.
233         - Added Static::Simple plugin to core.
234         - Added self restarting test server
235         - Added filename to debug output for uploaded files.
236         - Fixed forwarding with embedded arguments.
237         - Fixed handling of escaped query strings.
238         - Added upload parameters back into $c->req->params.
239         - Added multiple paths support to dispatcher
240         - Fixed bug in req->path where changing the path added a trailing
241           slash.
242         - Removed req->handle and res->handle
243         - Added prepare_body_chunk method as a hook for upload progress.
244         - Fixed bug in uri_for method when base has no path.
245         - Added automated tests for HTTP, CGI, and FastCGI servers.
246
247 5.49_01 2005-10-10 10:15:00 
248         - Refactored all internals, should be 99% compatible to previous
249           versions.
250         - *IMPORTANT* The Apache engines have been moved to a separate package
251           for this release.  Please install Catalyst::Engine::Apache if you
252           need Apache support.
253
254         - Added support for calling forward with arguments in the path, i.e.
255           $c->forward('/foo/bar/arg1/arg2')
256         - Made $c->req->uri a URI object, added req->path_info for CGI compat.
257           Raw query string is available as $c->req->uri->query.
258         - Made $c->req->base a URI object.
259         - Parameters with multiple values (?a=1&a=2) now display properly
260           in the debug output.
261         - Semi-colon separators in query strings now work properly.
262         - Expanded documentation of catalyst.pl (Andrew Ford)
263         - Added support for running as a backend server behind a frontend
264           proxy so req->base and req->address are set properly.
265         - Added an 'abort' method to the Log api, so that you can
266           kill loggging for a whole request.
267         - Added $c->uri_for method to simplify url handling.
268         - Added more tests and reorganized the t directory.
269         - Reimplemented core engines, all are now CGI based for better test
270           coverage and maintainability.
271         - Added fork support to built in test server.
272         - Fixed all memory leaks.
273         - Thread-related bug fixes and tests.  We now believe the Catalyst
274           core to be thread-safe.
275         - Added streaming IO support through $c->req->read() and
276           $c->res->write()
277         - Added MyApp->config->{parse_on_demand} (streaming input)
278         - Added $c->req->handle and $c->res->handle
279         - Improved documentation
280         - Fixed mkpath in Catalyst::Helper (Autrijus Tang)
281         - Fixed bug in dispatcher where an invalid path could call a valid
282           action. (Andy Grundman)
283         - Fixed Helper so it works with CRLF line-endings. (Andy Grundman)
284
285 5.33  2005-08-10 15:25:00
286         - Now with updated manifest.
287
288 5.32  2005-08-10 15:10:00
289         - Dispatcher might fail if object returns false. (Florian Ragwitz)
290
291 5.31  2005-06-04 12:35:00 (never released to CPAN)
292
293         - helpers now create .new files where files already exist and differ
294         - fixed $Data::Dumper::Terse (Robin Berjon)
295         - added arguments for detach
296         - new credits section in pod
297         - fixed detach to allow relative action names (Matt and Robert)
298         - added the ability to have whitespaces in Path( '' ) and Regex( '' )
299
300 5.30  2005-06-04 12:35:00
301
302         - Fixed a bug where it was not possible to $c->forward to a 
303           component 
304           that was not inheriting from Catalyst::Base.
305         - Fix for inheritance bug.
306         - Allow forward with arguments.
307         - Updated cookbook
308         - Allow overriding home/root in config.
309         - make module build cons README automatically.
310         - prettify home path by resolving '..' (Andy Grundman)
311         - improved helper templates a bit, new naming scheme for tests.
312         - added support for case sensitivity, MyApp->config->{case_sensitive}
313         - added $c->detach for non-returning forwards
314         - added unified error handling, Catalyst::Exception
315         - added section on param handling in Intro.pod
316         - added $c->request->cookie
317         - added Catalyst::Setup
318         - refactored Catalyst::import()
319         - improved rendering of error messages in debug mode
320         - fixed a bug in Catalyst::Helper::mk_dir
321         - further doc changes, esp. to Intro.pod
322
323 5.23  2005-06-03 02:30:00
324         - added support for non Catalyst::Base components to live in namespace
325         - improved concurrency connections in Catalyst::Engine::HTTP::Daemon
326
327 5.22  2005-05-26 14:24:00
328         - improved base locating in MP engines
329         - improved error messages in C::E::HTTP::Daemon
330         - hostnames are now resolved on demand unless provided by engine
331         - fixed memory leak in $c->execute (Michael Reece, Matt S Trout)
332
333 5.21  2005-05-24 14:56:00
334         - fixed a bug in https detection
335         - fixed auto chain finally
336         - added MYAPP_HOME and CATALYST_HOME environment variables
337
338 5.20  2005-05-18 19:52:00
339         - improved uploads and parameters
340         - added $c->req->protocol and $c->req->secure
341         - added $c->req->user and $c->req->uri
342         - improved error message when forwarding to unknown module
343         - fixed win32 installer
344         - added deep recursion detection
345         - fixed auto actions
346         - fixed inheritance in dispatcher
347         - allow whitespaces between brackets and quoted string
348           in Path and Regex attributes
349         - new helper templates
350         - installer now supports install_base and destdir
351         - allow multiple Catalyst apps to run on the same mod_perl
352           instance (not the same app!)
353         - fixed MP2 engines
354         - removed apreq dependency from all MP engines
355         - added support for MP registry scripts
356         - added support for LocationMatch and ScriptAliasMatch in MP engines
357         - added SpeedyCGI engine
358
359 5.10  2005-04-23 11:16:00
360         - updated dependencies to require latest module::pluggable::fast
361         - new installer for templates and stuff using Module::Build
362         - scripts are now prefixed, for being installable
363         IMPORTANT: You have to regenerate the script directory,
364         remove Makefile.PL and add Build.PL
365         - Added compat to install Module::Build if required.
366         - Improved: Params handling with MP engines
367         - Fixed: Params handling on POST with CGI engine (Andy Grundman)
368         - Fixed: Helper.pm on Win32 (Matt S Trout)
369
370 5.03  2005-04-19 20:35:00 (Revision 462)
371         - fixed Test example (Torsten Seeman)
372         - added Plugins chapter to manual
373         - applied doc patch from Robert Boone <robert@rlb3.com>
374         - improved Dispatcher error messages.
375         - refactored so we don't need to include helper from
376           Catalyst.pm - Fixes issues with FindBin
377         - applied HTTP.pm patch from Andy Grundman <andy@hybridized.org>
378         - added plugin() method for instant plugins
379         - FCGI is no more considered experimental
380
381 5.02  2005-04-18 10:00:00 
382         - fixed manifest
383
384 5.01  2005-04-17 23:00:00 
385         - some documentation bugs fixed
386         - added Catalyst::Utils
387         - fixed regexp bug (Matt S Trout)
388         - fixed upload bug with MP19
389         - added $c->req->body
390         - aliased $c->res->output to $c->res->body
391         - Read AUTHOR from passwd or $ENV{AUTHOR} when 
392           generating code.
393         - extended attribute handling
394         - added global config for components
395
396 5.00  2005-04-15 18:00:00
397         - new core to support inheritance trees
398         - new syntax for action declaration
399         - new helper system using TT2
400         - problems with mod_perl2 fixed
401         - added Test::Pod support
402         - added new server backend with HTTP/1.1 support
403         - added option to run tests against a remote server
404         - renamed errors() to error()
405         - more better docs
406         - countless minor improvements
407           IMPORTANT: This release is very incompatible to previous ones
408           and you have to regenerate the helper scripts again...
409
410 4.34  2005-03-23 07:00:00 2005
411         - added some messages to Makefile.PL
412         - added Catalyst::Engine::Test
413         - added Catalyst::Engine::CGI::NPH
414         - simplified Catalyst::Log to be easier to implement/subclass
415         - added cgi.pl
416         - updated Catalyst::Test to use Catalyst::Engine::Test
417         - updated helper scripts
418           IMPORTANT: this will be the last time you'll have to regenerate
419           the script directory. We promise!
420
421 4.33  2005-03-23 01:00:00 2005
422         - documented the log() accessor method in Catalyst (Andrew Ford)
423         - added optional arguments to Catalyst::Log methods (Andrew Ford)
424         - removed cgi-server.pl
425         - added fcgi.pl and Catalyst::Engine::FCGI
426         - fixed an undef durng make test (Dan Sully)
427         - new path test (Christian Hansen)
428           IMPORTANT: you have to regenerate the script directory again
429
430 4.32  2005-03-22 02:10:00 2005
431         - made a damn typo *AAAAAAAAAAAAAAHHHH!!!*
432
433 4.31  2005-03-22 02:00:00
434         - fixed inheritance (Christian Hansen)
435         - previous release was borked!
436           fixed that, but you have to regenerate the scripts again :(
437
438 4.30  2005-03-21 23:00:00 
439         - more documentation (Andrew Ford)
440         - added connection informations (Christian Hansen)
441         - HTTP::Request support in Catalyst::Test (Christian Hansen)
442         - moved cgi.pl to nph-cgi.pl
443         - added Catalyst::Engine::Server (Christian Hansen)
444         - removed Catalyst::Test::server
445         - updated helper scripts
446           IMPORTANT: note that you have to regenerate script/server.pl,
447           script/cgi-server.pl and script/cgi.pl (now nph-cgi.pl)
448
449 4.28  2005-03-19 22:00:00
450         - fixed isa tree (Christian Hansen)
451         - added script/cgi-server.pl, so no more server restarting after
452           code changes
453         - reworked documentation (Andrew Ford <A.Ford@ford-mason.co.uk>)
454
455 4.27  2005-03-19 01:00:00
456         - debug message for parameters
457         - Fix redirects (Christian Hansen <ch@ngmedia.com>)
458         - some random fixes
459         - new helper api for Catalyst::Helper::* support
460           you have to update script/create.pl to use it
461
462 4.26  2005-03-16 10:00:00
463         - fixed the weird bug that caused regex actions to fail on every
464           second request
465         - more debug messages
466         - 100% pod coverage.
467
468 4.25  2005-03-12 18:00:00
469         - correct perl pathes for helper generated scripts (Tatsuhiko Miyagawa)
470         - improved cgi engine docs (Christoper Hicks)
471
472 4.24  2005-03-12 01:00:00
473         - updated cookbook example  
474         - fixed base for apache and https (Andrew Ruthven)
475         
476 4.23  2005-03-09 20:00:00
477         - no more regex actions in forward
478         - added support for test directories t/m, t/v and t/c
479
480 4.22  2005-03-08 20:00:00
481         - catch errors in application class
482         - handle die properly.
483
484 4.21  2005-03-05 17:00:00
485         - fixed docs
486
487 4.20  2005-03-04 22:00:00
488         - moved bin to script
489
490 4.13  2005-03-03 11:00:00
491         - improved documentation
492         - pod coverage test for helper generated apps
493         - new helper api
494
495 4.12  2005-03-02 11:00:00 2005
496         - server_base sucks, removed
497         - added $c->log->dump()
498
499 4.11  2005-03-02 11:00:00 2005
500         - removed some warnings
501         - improved docs
502         - private prefixed actions override private non prefixed actions
503         - added server_base
504         - updated Catalyst::Manual::Intro
505
506 4.10  2005-03-02 10:00:00 2005
507         - improved documentation
508         - fixed upload bug
509         - fixed prefixed private actions bug
510         - fixed more little bugs
511
512 4.01  2005-03-01 10:00:00 2005
513         - improved documentation
514         - documentation fixes (Johan Lindstrom)
515
516 4.00  2005-02-27 22:00:00
517         - more verbose debug messages, especially for forward()
518         - implemented prefixed prvate actions, icluding built in
519           !?default, !?begin and !?end
520         - new Catalyst::Manual::Intro
521         - new helpers, bin/catalyst
522         - helper api
523
524 3.11  2005-02-23 21:00:00
525         - added dependency to UNIVERSAL::require (Marcus Ramberg)
526         - added a little workaround for a warning in Catalyst::Test
527           (Marcus Ramberg)
528         - improved documentation for actions
529
530 3.10  2005-02-19 20:00:00
531         - removed roles management from Catalyst::Engine
532           and added it to Catalyst::Plugin::Authentication::CDBI
533
534 3.04  2005-02-17 21:00:00 
535         - error reporting for app class
536         - no more engine debug messages
537         - class->method forwards get resolved now
538
539 3.03  2005-02-16 23:00:00 
540         - friendlier statistics
541
542 3.02  2005-02-16 22:00:00
543         - fixed unintialized actions (Marcus Ramberg)
544
545 3.01  2005-02-16 20:30:00
546         - better statistics
547
548 3.00  2005-02-16 20:00:00
549         - real version number for CPAN.pm
550         - fixed redirect in CGI engine
551         - more statistics in debug logs
552         - ? prefix for forward()
553
554 2.99_15  2005-02-02 22:00:00
555         - support for short namespaces, MyApp::M, MyApp::V and MyApp::C
556         - Replaced "Catched" with "Caught" in Catalyst::Engine
557           (Gary Ashton Jones)
558         - replaced _ with ! for private actions
559         - added ? for prefixed actions
560         - misc improvememts
561
562 2.99_14  2005-01-31 22:00:00 2005
563         - arguments for _default
564         - $c->entrance removed for more flexibility
565         - added $c->req->method
566
567 2.99_13  2005-01-30 18:00:00 2005
568         - POD fixes and improvements
569
570 2.99_12  2005-01-28 22:00:00 2005
571         - first development release