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