509a2a858302b8318f6ff87f6959252ab6cde24f
[catagits/Catalyst-Runtime.git] / Changes
1 Tis file documents the revision history for Perl extension Catalyst.
2
3 5.5
4         - Removed $c->req->user accessor
5         - Added $c->controller, $c->model and $c->view shortcuts
6         - Switched to Text::SimpleTable
7
8 5.49_03 2005-11-03 12:00:00
9         - Fixed $c->req->{path} for backwards-compatibility.
10         - Allow debug to be disabled via ENV as well as enabled.
11         - Added -scripts option to catalyst.pl for script updating
12         - Changed helpers to default to long types, Controller instead of C
13         - Added Catalyst::Controller, Catalyst::Model and Catalyst::View
14           base classes
15         - Added JavaScript to debug screen to show and hide specific dumps
16         - Added _DISPATCH, _BEGIN, _AUTO, _ACTION and _END actions
17         - Added multi process external FastCGI support
18           (see myapp_fastcgi.pl -help) (Sam Vilain)
19         - Restarter process in HTTP engine now properly exits when the
20           parent app is shut down.  
21         - Improved performance of restarter loop while watching for
22           changed files.
23         - Restarter will now detect new files added to an app on systems
24           that change directory mtimes when new files are created.
25         - Restarter now properly handles modules that are deleted from an
26           application.
27         - Fixed memory leak in TestApp.
28
29 5.49_02 2005-10-26 12:39:00 
30         - Whole new dispatcher!
31         - Added index action
32         - Added path_to method
33         - Added support for passing an IO::Handle object to $c->res->body.
34           (Andrew Bramble)
35         - Added a new welcome screen.
36         - Included Catalyst buttons and icons in helper.
37         - Added Static::Simple plugin to core.
38         - Added self restarting test server
39         - Added filename to debug output for uploaded files.
40         - Fixed forwarding with embedded arguments.
41         - Fixed handling of escaped query strings.
42         - Added upload parameters back into $c->req->params.
43         - Added multiple paths support to dispatcher
44         - Fixed bug in req->path where changing the path added a trailing
45           slash.
46         - Removed req->handle and res->handle
47         - Added prepare_body_chunk method as a hook for upload progress.
48         - Fixed bug in uri_for method when base has no path.
49         - Added automated tests for HTTP, CGI, and FastCGI servers.
50
51 5.49_01 2005-10-10 10:15:00 
52         - Refactored all internals, should be 99% compatible to previous
53           versions.
54         - *IMPORTANT* The Apache engines have been moved to a separate package
55           for this release.  Please install Catalyst::Engine::Apache if you
56           need Apache support.
57
58         - Added support for calling forward with arguments in the path, i.e.
59           $c->forward('/foo/bar/arg1/arg2')
60         - Made $c->req->uri a URI object, added req->path_info for CGI compat.
61           Raw query string is available as $c->req->uri->query.
62         - Made $c->req->base a URI object.
63         - Parameters with multiple values (?a=1&a=2) now display properly
64           in the debug output.
65         - Semi-colon separators in query strings now work properly.
66         - Expanded documentation of catalyst.pl (Andrew Ford)
67         - Added support for running as a backend server behind a frontend
68           proxy so req->base and req->address are set properly.
69         - Added an 'abort' method to the Log api, so that you can
70           kill loggging for a whole request.
71         - Added $c->uri_for method to simplify url handling.
72         - Added more tests and reorganized the t directory.
73         - Reimplemented core engines, all are now CGI based for better test
74           coverage and maintainability.
75         - Added fork support to built in test server.
76         - Fixed all memory leaks.
77         - Thread-related bug fixes and tests.  We now believe the Catalyst
78           core to be thread-safe.
79         - Added streaming IO support through $c->req->read() and
80           $c->res->write()
81         - Added MyApp->config->{parse_on_demand} (streaming input)
82         - Added $c->req->handle and $c->res->handle
83         - Improved documentation
84         - Fixed mkpath in Catalyst::Helper (Autrijus Tang)
85         - Fixed bug in dispatcher where an invalid path could call a valid
86           action. (Andy Grundman)
87         - Fixed Helper so it works with CRLF line-endings. (Andy Grundman)
88
89 5.33  2005-08-10 15:25:00
90         - Now with updated manifest.
91
92 5.32  2005-08-10 15:10:00
93         - Dispatcher might fail if object returns false. (Florian Ragwitz)
94
95 5.31  2005-06-04 12:35:00 (never released to CPAN)
96
97         - helpers now create .new files where files already exist and differ
98         - fixed $Data::Dumper::Terse (Robin Berjon)
99         - added arguments for detach
100         - new credits section in pod
101         - fixed detach to allow relative action names (Matt and Robert)
102         - added the ability to have whitespaces in Path( '' ) and Regex( '' )
103
104 5.30  2005-06-04 12:35:00
105
106         - Fixed a bug where it was not possible to $c->forward to a 
107           component 
108           that was not inheriting from Catalyst::Base.
109         - Fix for inheritance bug.
110         - Allow forward with arguments.
111         - Updated cookbook
112         - Allow overriding home/root in config.
113         - make module build cons README automatically.
114         - prettify home path by resolving '..' (Andy Grundman)
115         - improved helper templates a bit, new naming scheme for tests.
116         - added support for case sensitivity, MyApp->config->{case_sensitive}
117         - added $c->detach for non-returning forwards
118         - added unified error handling, Catalyst::Exception
119         - added section on param handling in Intro.pod
120         - added $c->request->cookie
121         - added Catalyst::Setup
122         - refactored Catalyst::import()
123         - improved rendering of error messages in debug mode
124         - fixed a bug in Catalyst::Helper::mk_dir
125         - further doc changes, esp. to Intro.pod
126
127 5.23  2005-06-03 02:30:00
128         - added support for non Catalyst::Base components to live in namespace
129         - improved concurrency connections in Catalyst::Engine::HTTP::Daemon
130
131 5.22  2005-05-26 14:24:00
132         - improved base locating in MP engines
133         - improved error messages in C::E::HTTP::Daemon
134         - hostnames are now resolved on demand unless provided by engine
135         - fixed memory leak in $c->execute (Michael Reece, Matt S Trout)
136
137 5.21  2005-05-24 14:56:00
138         - fixed a bug in https detection
139         - fixed auto chain finally
140         - added MYAPP_HOME and CATALYST_HOME environment variables
141
142 5.20  2005-05-18 19:52:00
143         - improved uploads and parameters
144         - added $c->req->protocol and $c->req->secure
145         - added $c->req->user and $c->req->uri
146         - improved error message when forwarding to unknown module
147         - fixed win32 installer
148         - added deep recursion detection
149         - fixed auto actions
150         - fixed inheritance in dispatcher
151         - allow whitespaces between brackets and quoted string
152           in Path and Regex attributes
153         - new helper templates
154         - installer now supports install_base and destdir
155         - allow multiple Catalyst apps to run on the same mod_perl
156           instance (not the same app!)
157         - fixed MP2 engines
158         - removed apreq dependency from all MP engines
159         - added support for MP registry scripts
160         - added support for LocationMatch and ScriptAliasMatch in MP engines
161         - added SpeedyCGI engine
162
163 5.10  2005-04-23 11:16:00
164         - updated dependencies to require latest module::pluggable::fast
165         - new installer for templates and stuff using Module::Build
166         - scripts are now prefixed, for being installable
167         IMPORTANT: You have to regenerate the script directory,
168         remove Makefile.PL and add Build.PL
169         - Added compat to install Module::Build if required.
170         - Improved: Params handling with MP engines
171         - Fixed: Params handling on POST with CGI engine (Andy Grundman)
172         - Fixed: Helper.pm on Win32 (Matt S Trout)
173
174 5.03  2005-04-19 20:35:00 (Revision 462)
175         - fixed Test example (Torsten Seeman)
176         - added Plugins chapter to manual
177         - applied doc patch from Robert Boone <robert@rlb3.com>
178         - improved Dispatcher error messages.
179         - refactored so we don't need to include helper from
180           Catalyst.pm - Fixes issues with FindBin
181         - applied HTTP.pm patch from Andy Grundman <andy@hybridized.org>
182         - added plugin() method for instant plugins
183         - FCGI is no more considered experimental
184
185 5.02  2005-04-18 10:00:00 
186         - fixed manifest
187
188 5.01  2005-04-17 23:00:00 
189         - some documentation bugs fixed
190         - added Catalyst::Utils
191         - fixed regexp bug (Matt S Trout)
192         - fixed upload bug with MP19
193         - added $c->req->body
194         - aliased $c->res->output to $c->res->body
195         - Read AUTHOR from passwd or $ENV{AUTHOR} when 
196           generating code.
197         - extended attribute handling
198         - added global config for components
199
200 5.00  2005-04-15 18:00:00
201         - new core to support inheritance trees
202         - new syntax for action declaration
203         - new helper system using TT2
204         - problems with mod_perl2 fixed
205         - added Test::Pod support
206         - added new server backend with HTTP/1.1 support
207         - added option to run tests against a remote server
208         - renamed errors() to error()
209         - more better docs
210         - countless minor improvements
211           IMPORTANT: This release is very incompatible to previous ones
212           and you have to regenerate the helper scripts again...
213
214 4.34  2005-03-23 07:00:00 2005
215         - added some messages to Makefile.PL
216         - added Catalyst::Engine::Test
217         - added Catalyst::Engine::CGI::NPH
218         - simplified Catalyst::Log to be easier to implement/subclass
219         - added cgi.pl
220         - updated Catalyst::Test to use Catalyst::Engine::Test
221         - updated helper scripts
222           IMPORTANT: this will be the last time you'll have to regenerate
223           the script directory. We promise!
224
225 4.33  2005-03-23 01:00:00 2005
226         - documented the log() accessor method in Catalyst (Andrew Ford)
227         - added optional arguments to Catalyst::Log methods (Andrew Ford)
228         - removed cgi-server.pl
229         - added fcgi.pl and Catalyst::Engine::FCGI
230         - fixed an undef durng make test (Dan Sully)
231         - new path test (Christian Hansen)
232           IMPORTANT: you have to regenerate the script directory again
233
234 4.32  2005-03-22 02:10:00 2005
235         - made a damn typo *AAAAAAAAAAAAAAHHHH!!!*
236
237 4.31  2005-03-22 02:00:00
238         - fixed inheritance (Christian Hansen)
239         - previous release was borked!
240           fixed that, but you have to regenerate the scripts again :(
241
242 4.30  2005-03-21 23:00:00 
243         - more documentation (Andrew Ford)
244         - added connection informations (Christian Hansen)
245         - HTTP::Request support in Catalyst::Test (Christian Hansen)
246         - moved cgi.pl to nph-cgi.pl
247         - added Catalyst::Engine::Server (Christian Hansen)
248         - removed Catalyst::Test::server
249         - updated helper scripts
250           IMPORTANT: note that you have to regenerate script/server.pl,
251           script/cgi-server.pl and script/cgi.pl (now nph-cgi.pl)
252
253 4.28  2005-03-19 22:00:00
254         - fixed isa tree (Christian Hansen)
255         - added script/cgi-server.pl, so no more server restarting after
256           code changes
257         - reworked documentation (Andrew Ford <A.Ford@ford-mason.co.uk>)
258
259 4.27  2005-03-19 01:00:00
260         - debug message for parameters
261         - Fix redirects (Christian Hansen <ch@ngmedia.com>)
262         - some random fixes
263         - new helper api for Catalyst::Helper::* support
264           you have to update script/create.pl to use it
265
266 4.26  2005-03-16 10:00:00
267         - fixed the weird bug that caused regex actions to fail on every
268           second request
269         - more debug messages
270         - 100% pod coverage.
271
272 4.25  2005-03-12 18:00:00
273         - correct perl pathes for helper generated scripts (Tatsuhiko Miyagawa)
274         - improved cgi engine docs (Christoper Hicks)
275
276 4.24  2005-03-12 01:00:00
277         - updated cookbook example  
278         - fixed base for apache and https (Andrew Ruthven)
279         
280 4.23  2005-03-09 20:00:00
281         - no more regex actions in forward
282         - added support for test directories t/m, t/v and t/c
283
284 4.22  2005-03-08 20:00:00
285         - catch errors in application class
286         - handle die properly.
287
288 4.21  2005-03-05 17:00:00
289         - fixed docs
290
291 4.20  2005-03-04 22:00:00
292         - moved bin to script
293
294 4.13  2005-03-03 11:00:00
295         - improved documentation
296         - pod coverage test for helper generated apps
297         - new helper api
298
299 4.12  2005-03-02 11:00:00 2005
300         - server_base sucks, removed
301         - added $c->log->dump()
302
303 4.11  2005-03-02 11:00:00 2005
304         - removed some warnings
305         - improved docs
306         - private prefixed actions override private non prefixed actions
307         - added server_base
308         - updated Catalyst::Manual::Intro
309
310 4.10  2005-03-02 10:00:00 2005
311         - improved documentation
312         - fixed upload bug
313         - fixed prefixed private actions bug
314         - fixed more little bugs
315
316 4.01  2005-03-01 10:00:00 2005
317         - improved documentation
318         - documentation fixes (Johan Lindstrom)
319
320 4.00  2005-02-27 22:00:00
321         - more verbose debug messages, especially for forward()
322         - implemented prefixed prvate actions, icluding built in
323           !?default, !?begin and !?end
324         - new Catalyst::Manual::Intro
325         - new helpers, bin/catalyst
326         - helper api
327
328 3.11  2005-02-23 21:00:00
329         - added dependency to UNIVERSAL::require (Marcus Ramberg)
330         - added a little workaround for a warning in Catalyst::Test
331           (Marcus Ramberg)
332         - improved documentation for actions
333
334 3.10  2005-02-19 20:00:00
335         - removed roles management from Catalyst::Engine
336           and added it to Catalyst::Plugin::Authentication::CDBI
337
338 3.04  2005-02-17 21:00:00 
339         - error reporting for app class
340         - no more engine debug messages
341         - class->method forwards get resolved now
342
343 3.03  2005-02-16 23:00:00 
344         - friendlier statistics
345
346 3.02  2005-02-16 22:00:00
347         - fixed unintialized actions (Marcus Ramberg)
348
349 3.01  2005-02-16 20:30:00
350         - better statistics
351
352 3.00  2005-02-16 20:00:00
353         - real version number for CPAN.pm
354         - fixed redirect in CGI engine
355         - more statistics in debug logs
356         - ? prefix for forward()
357
358 2.99_15  2005-02-02 22:00:00
359         - support for short namespaces, MyApp::M, MyApp::V and MyApp::C
360         - Replaced "Catched" with "Caught" in Catalyst::Engine
361           (Gary Ashton Jones)
362         - replaced _ with ! for private actions
363         - added ? for prefixed actions
364         - misc improvememts
365
366 2.99_14  2005-01-31 22:00:00 2005
367         - arguments for _default
368         - $c->entrance removed for more flexibility
369         - added $c->req->method
370
371 2.99_13  2005-01-30 18:00:00 2005
372         - POD fixes and improvements
373
374 2.99_12  2005-01-28 22:00:00 2005
375         - first development release