Updated mic
[catagits/Catalyst-Runtime.git] / Changes
CommitLineData
67bbac86 1This file documents the revision history for Perl extension Catalyst.
3803e98f 2
6fe8a91d 35.60
6780cd43 4 - Fixed restarter and -d debug switch in server.pl.
ee26f4bd 5 - Added a warning if you attempt to retrieve a parameter
6 using $c->req->params('foo').
6fe8a91d 7
294f78ca 85.59 2005-11-30 13:25:00
8565f89d 9 - Fixed shebang line for generated scripts
86d993ab 10 - Fixed forward to classes ($c->forward(qw/MyApp foo/))
f075593c 11 - Wrap use block in begin to quelch C:C3 warnings
12 - Removed scrollbar from debug output
6c165c4b 13 - Fixed catalyst_par_core() and catalyst_par_multiarch()
86d993ab 14
2e4a6ec3 155.58 2005-11-24 10:51:00
9624cd13 16 - Added ExtUtils::AutoInstall support
477f4389 17 - Allow overriding path in Catalyst::Helper.
4e90e3c1 18 - Added -makefile to catalyst.pl to generate a new Makefile.PL.
10d487cb 19 - Restored Catalyst::Build with a deprecation notice.
975ba103 20 - Improved PAR support
b2d40c03 21 - Replaced -short with auto-detection
bb722214 22 - Fixed prereqs, added File::Copy::Recursive
4ca033b1 23 - Static::Simple changes:
24 - Made prepare_action play nice with other plugins by not short-
25 circuiting.
26 - Added tmpl to the ignored extensions.
27 - Fixed security problem if req->path contained '..'.
b2d40c03 28
4aaa6e43 295.57 2005-11-20 22:45:00
d3e7a648 30 - Updated uri_for to accept undef actions
f991f6a0 31 - Switched to Module::Install
e71a3028 32 - Renamed tests for easier editing
b5ecfcf0 33 - Reformatted documentation
34a83d89 34 - Renamed -nonew to -force
fc04b845 35 - Added PAR support
6c7a1d2f 36 - Added keep-alive support and bug fixes to HTTP engine.
526b698a 37 (Sascha Kiefer)
38 - Added daemonize option to FastCGI engine. (Sam Vilain)
fc04b845 39
18c4e4c0 405.56 2005-11-16 10:33:00
84528885 41 - Fixed FastCGI engine to not clobber the global %ENV on each
42 request. (Sam Vilain)
245ae014 43 - Updated benchmarking to work with detach
44 - Fixed dispatcher, so $c->req->action(undef) works again
0f895006 45 - Updated Catalyst::Test to use HTTP::Request::AsCGI
dc2fc680 46 - Added -pidfile to external FastCGI server.
84528885 47
b39840da 485.55 2005-11-15 12:55:00
49 - Fixed multiple cookie handling
50
6f006bd6 515.54 2005-11-14 22:55:00
52 - Fixed a Module::Pluggable::Fast related bug
53
89546294 545.53 2005-11-14 15:55:00
55 - Removed t/04prereq.t that was testing for non-required
56 modules.
57
df755a7a 585.52 2005-11-14 10:57:00
59 - Strip '..'s in static urls to fix security issue.
89546294 60
ff74d616 615.51 2005-11-14 00:45:00
62 - Changed uri_for to use namespace instead of match.
ccc9f8aa 63
ff74d616 645.50 2005-11-13 20:45:00
65 - Fixed minor bugs.
66 - Updated docs.
ccc9f8aa 67
527ada13 685.49_05 2005-11-12 20:45:00
910410b8 69 - Large update to the documentation. (David Kamholz)
138ce4c0 70 - Fixed args handling in forward()
71 - Fixed forwarding to classes
2b01b53c 72 - Fixed catalyst.pl-generated Build.PL Makefile section.
a0eca838 73 - Fixed relative forwarding
74 - Fixed forward arrows in debug output
75
8beacad7 765.49_04 2005-11-09 23:00:00
db38216d 77 - Made context, dispatcher, engine, request and response classes
8beacad7 78 configurable.
79 - Added $c->stack.
80 - Fixed dispatcher to ignore unknown attributes.
81 - Improved format of startup debug log.
0c74cb08 82 - Updated built in server to restart on win32. (Will Hawes)
6484fba0 83 - Fixed streaming write from a filehandle to stop writing
84 if the browser is closed.
0c74cb08 85 - Added $c->controller, $c->model and $c->view shortcuts.
86 - Switched to Text::SimpleTable.
8c113188 87
60b53d07 885.49_03 2005-11-03 12:00:00
e561386f 89 - Fixed $c->req->{path} for backwards-compatibility.
59c2b3bd 90 - Allow debug to be disabled via ENV as well as enabled.
e4d88362 91 - Added -scripts option to catalyst.pl for script updating
8264c145 92 - Changed helpers to default to long types, Controller instead of C
5ee249f2 93 - Added Catalyst::Controller, Catalyst::Model and Catalyst::View
94 base classes
c6ef5e69 95 - Added JavaScript to debug screen to show and hide specific dumps
0bbb5a1f 96 - Added _DISPATCH, _BEGIN, _AUTO, _ACTION and _END actions
fe9da43b 97 - Added multi process external FastCGI support
98 (see myapp_fastcgi.pl -help) (Sam Vilain)
40b0b60c 99 - Restarter process in HTTP engine now properly exits when the
4c980e76 100 parent app is shut down.
101 - Improved performance of restarter loop while watching for
102 changed files.
103 - Restarter will now detect new files added to an app on systems
104 that change directory mtimes when new files are created.
105 - Restarter now properly handles modules that are deleted from an
106 application.
40b0b60c 107 - Fixed memory leak in TestApp.
108
bf88a181 1095.49_02 2005-10-26 12:39:00
bcccee4e 110 - Whole new dispatcher!
111 - Added index action
01033d73 112 - Added path_to method
6e692ab4 113 - Added support for passing an IO::Handle object to $c->res->body.
114 (Andrew Bramble)
a9b78939 115 - Added a new welcome screen.
116 - Included Catalyst buttons and icons in helper.
117 - Added Static::Simple plugin to core.
9438e46e 118 - Added self restarting test server
bc2beef5 119 - Added filename to debug output for uploaded files.
120 - Fixed forwarding with embedded arguments.
e0616220 121 - Fixed handling of escaped query strings.
c4bed79a 122 - Added upload parameters back into $c->req->params.
749472d6 123 - Added multiple paths support to dispatcher
6ff79ec5 124 - Fixed bug in req->path where changing the path added a trailing
125 slash.
4f5ebacd 126 - Removed req->handle and res->handle
4bd82c41 127 - Added prepare_body_chunk method as a hook for upload progress.
58f510c2 128 - Fixed bug in uri_for method when base has no path.
55ddccae 129 - Added automated tests for HTTP, CGI, and FastCGI servers.
58f510c2 130
fbcc39ad 1315.49_01 2005-10-10 10:15:00
132 - Refactored all internals, should be 99% compatible to previous
133 versions.
134 - *IMPORTANT* The Apache engines have been moved to a separate package
135 for this release. Please install Catalyst::Engine::Apache if you
136 need Apache support.
137
138 - Added support for calling forward with arguments in the path, i.e.
139 $c->forward('/foo/bar/arg1/arg2')
140 - Made $c->req->uri a URI object, added req->path_info for CGI compat.
141 Raw query string is available as $c->req->uri->query.
142 - Made $c->req->base a URI object.
143 - Parameters with multiple values (?a=1&a=2) now display properly
144 in the debug output.
145 - Semi-colon separators in query strings now work properly.
146 - Expanded documentation of catalyst.pl (Andrew Ford)
147 - Added support for running as a backend server behind a frontend
148 proxy so req->base and req->address are set properly.
149 - Added an 'abort' method to the Log api, so that you can
150 kill loggging for a whole request.
151 - Added $c->uri_for method to simplify url handling.
152 - Added more tests and reorganized the t directory.
153 - Reimplemented core engines, all are now CGI based for better test
154 coverage and maintainability.
155 - Added fork support to built in test server.
156 - Fixed all memory leaks.
157 - Thread-related bug fixes and tests. We now believe the Catalyst
158 core to be thread-safe.
159 - Added streaming IO support through $c->req->read() and
160 $c->res->write()
161 - Added MyApp->config->{parse_on_demand} (streaming input)
162 - Added $c->req->handle and $c->res->handle
163 - Improved documentation
fd59198f 164 - Fixed mkpath in Catalyst::Helper (Autrijus Tang)
43f0a258 165 - Fixed bug in dispatcher where an invalid path could call a valid
166 action. (Andy Grundman)
5c9b3736 167 - Fixed Helper so it works with CRLF line-endings. (Andy Grundman)
fd59198f 168
4e449be9 1695.33 2005-08-10 15:25:00
43f0a258 170 - Now with updated manifest.
fd59198f 171
4e449be9 1725.32 2005-08-10 15:10:00
43f0a258 173 - Dispatcher might fail if object returns false. (Florian Ragwitz)
a1c8f974 174
58e9ce65 1755.31 2005-06-04 12:35:00 (never released to CPAN)
62d9b030 176
ef3250bc 177 - helpers now create .new files where files already exist and differ
62d9b030 178 - fixed $Data::Dumper::Terse (Robin Berjon)
bd7d2e94 179 - added arguments for detach
51f0308d 180 - new credits section in pod
71c3bcc3 181 - fixed detach to allow relative action names (Matt and Robert)
182 - added the ability to have whitespaces in Path( '' ) and Regex( '' )
62d9b030 183
f56990fa 1845.30 2005-06-04 12:35:00
2343e117 185
f56990fa 186 - Fixed a bug where it was not possible to $c->forward to a
187 component
7e71fcce 188 that was not inheriting from Catalyst::Base.
599b5295 189 - Fix for inheritance bug.
a1dad9c1 190 - Allow forward with arguments.
2343e117 191 - Updated cookbook
e0143040 192 - Allow overriding home/root in config.
d2ee9760 193 - make module build cons README automatically.
194 - prettify home path by resolving '..' (Andy Grundman)
f56990fa 195 - improved helper templates a bit, new naming scheme for tests.
d2ee9760 196 - added support for case sensitivity, MyApp->config->{case_sensitive}
ef16e169 197 - added $c->detach for non-returning forwards
d2ee9760 198 - added unified error handling, Catalyst::Exception
199 - added section on param handling in Intro.pod
200 - added $c->request->cookie
201 - added Catalyst::Setup
202 - refactored Catalyst::import()
203 - improved rendering of error messages in debug mode
204 - fixed a bug in Catalyst::Helper::mk_dir
ef16e169 205 - further doc changes, esp. to Intro.pod
abddf0b5 206
49ba64d7 2075.23 2005-06-03 02:30:00
8a0ec4fd 208 - added support for non Catalyst::Base components to live in namespace
209 - improved concurrency connections in Catalyst::Engine::HTTP::Daemon
a268a011 210
d8cdbf30 2115.22 2005-05-26 14:24:00
d2ee9760 212 - improved base locating in MP engines
213 - improved error messages in C::E::HTTP::Daemon
214 - hostnames are now resolved on demand unless provided by engine
215 - fixed memory leak in $c->execute (Michael Reece, Matt S Trout)
99386274 216
db046247 2175.21 2005-05-24 14:56:00
b7b011a9 218 - fixed a bug in https detection
9ddd9d05 219 - fixed auto chain finally
895b2303 220 - added MYAPP_HOME and CATALYST_HOME environment variables
b7b011a9 221
61a0806c 2225.20 2005-05-18 19:52:00
a783a49e 223 - improved uploads and parameters
77d12cae 224 - added $c->req->protocol and $c->req->secure
225 - added $c->req->user and $c->req->uri
8f591211 226 - improved error message when forwarding to unknown module
91eeb37b 227 - fixed win32 installer
e88fa058 228 - added deep recursion detection
99d891a5 229 - fixed auto actions
e37b6309 230 - fixed inheritance in dispatcher
0299ba22 231 - allow whitespaces between brackets and quoted string
232 in Path and Regex attributes
97f1b4e7 233 - new helper templates
9cee9588 234 - installer now supports install_base and destdir
61a0806c 235 - allow multiple Catalyst apps to run on the same mod_perl
236 instance (not the same app!)
6890e598 237 - fixed MP2 engines
fc88e495 238 - removed apreq dependency from all MP engines
239 - added support for MP registry scripts
240 - added support for LocationMatch and ScriptAliasMatch in MP engines
6890e598 241 - added SpeedyCGI engine
a783a49e 242
61a0806c 2435.10 2005-04-23 11:16:00
a783a49e 244 - updated dependencies to require latest module::pluggable::fast
245 - new installer for templates and stuff using Module::Build
4f6748f1 246 - scripts are now prefixed, for being installable
247 IMPORTANT: You have to regenerate the script directory,
248 remove Makefile.PL and add Build.PL
adfe7ead 249 - Added compat to install Module::Build if required.
8f591211 250 - Improved: Params handling with MP engines
251 - Fixed: Params handling on POST with CGI engine (Andy Grundman)
252 - Fixed: Helper.pm on Win32 (Matt S Trout)
4f6748f1 253
61a0806c 2545.03 2005-04-19 20:35:00 (Revision 462)
a783a49e 255 - fixed Test example (Torsten Seeman)
256 - added Plugins chapter to manual
bbcadec7 257 - applied doc patch from Robert Boone <robert@rlb3.com>
a783a49e 258 - improved Dispatcher error messages.
259 - refactored so we don't need to include helper from
e9deb4dc 260 Catalyst.pm - Fixes issues with FindBin
5b2a599c 261 - applied HTTP.pm patch from Andy Grundman <andy@hybridized.org>
87232381 262 - added plugin() method for instant plugins
263 - FCGI is no more considered experimental
bbcadec7 264
61a0806c 2655.02 2005-04-18 10:00:00
2cf9bc57 266 - fixed manifest
267
61a0806c 2685.01 2005-04-17 23:00:00
d7953572 269 - some documentation bugs fixed
f05af9ba 270 - added Catalyst::Utils
eaf14ff4 271 - fixed regexp bug (Matt S Trout)
272 - fixed upload bug with MP19
273 - added $c->req->body
e27582bb 274 - aliased $c->res->output to $c->res->body
ddb46924 275 - Read AUTHOR from passwd or $ENV{AUTHOR} when
276 generating code.
8c8f7c51 277 - extended attribute handling
84cf74e7 278 - added global config for components
d7953572 279
61a0806c 2805.00 2005-04-15 18:00:00
0c28fbd7 281 - new core to support inheritance trees
282 - new syntax for action declaration
283 - new helper system using TT2
b76d7db8 284 - problems with mod_perl2 fixed
5a8fd7e9 285 - added Test::Pod support
6f4e1683 286 - added new server backend with HTTP/1.1 support
287 - added option to run tests against a remote server
0c28fbd7 288 - renamed errors() to error()
ca61af20 289 - more better docs
0c28fbd7 290 - countless minor improvements
ca61af20 291 IMPORTANT: This release is very incompatible to previous ones
292 and you have to regenerate the helper scripts again...
e519ff34 293
61a0806c 2944.34 2005-03-23 07:00:00 2005
9ada3267 295 - added some messages to Makefile.PL
00869ea8 296 - added Catalyst::Engine::Test
297 - added Catalyst::Engine::CGI::NPH
298 - simplified Catalyst::Log to be easier to implement/subclass
299 - added cgi.pl
6f4e1683 300 - updated Catalyst::Test to use Catalyst::Engine::Test
00869ea8 301 - updated helper scripts
302 IMPORTANT: this will be the last time you'll have to regenerate
303 the script directory. We promise!
9ada3267 304
61a0806c 3054.33 2005-03-23 01:00:00 2005
145074c2 306 - documented the log() accessor method in Catalyst (Andrew Ford)
82d2fcbe 307 - added optional arguments to Catalyst::Log methods (Andrew Ford)
a564a4be 308 - removed cgi-server.pl
ffb41d94 309 - added fcgi.pl and Catalyst::Engine::FCGI
b0b7c5e0 310 - fixed an undef durng make test (Dan Sully)
5442009c 311 - new path test (Christian Hansen)
312 IMPORTANT: you have to regenerate the script directory again
82d2fcbe 313
61a0806c 3144.32 2005-03-22 02:10:00 2005
caca1b02 315 - made a damn typo *AAAAAAAAAAAAAAHHHH!!!*
316
61a0806c 3174.31 2005-03-22 02:00:00
1c99e125 318 - fixed inheritance (Christian Hansen)
c0d174dc 319 - previous release was borked!
320 fixed that, but you have to regenerate the scripts again :(
1c99e125 321
61a0806c 3224.30 2005-03-21 23:00:00
d2cad154 323 - more documentation (Andrew Ford)
0556eb49 324 - added connection informations (Christian Hansen)
49faa307 325 - HTTP::Request support in Catalyst::Test (Christian Hansen)
3fde004f 326 - moved cgi.pl to nph-cgi.pl
a0bb847e 327 - added Catalyst::Engine::Server (Christian Hansen)
585893b9 328 - removed Catalyst::Test::server
329 - updated helper scripts
330 IMPORTANT: note that you have to regenerate script/server.pl,
331 script/cgi-server.pl and script/cgi.pl (now nph-cgi.pl)
0556eb49 332
61a0806c 3334.28 2005-03-19 22:00:00
502619e5 334 - fixed isa tree (Christian Hansen)
bc024080 335 - added script/cgi-server.pl, so no more server restarting after
336 code changes
337 - reworked documentation (Andrew Ford <A.Ford@ford-mason.co.uk>)
502619e5 338
61a0806c 3394.27 2005-03-19 01:00:00
c85ff642 340 - debug message for parameters
23f9d934 341 - Fix redirects (Christian Hansen <ch@ngmedia.com>)
b5524568 342 - some random fixes
343 - new helper api for Catalyst::Helper::* support
344 you have to update script/create.pl to use it
c85ff642 345
61a0806c 3464.26 2005-03-16 10:00:00
5783a9a5 347 - fixed the weird bug that caused regex actions to fail on every
348 second request
c85ff642 349 - more debug messages
748161c4 350 - 100% pod coverage.
5783a9a5 351
61a0806c 3524.25 2005-03-12 18:00:00
f1d0b7ea 353 - correct perl pathes for helper generated scripts (Tatsuhiko Miyagawa)
9a33da6a 354 - improved cgi engine docs (Christoper Hicks)
f1d0b7ea 355
61a0806c 3564.24 2005-03-12 01:00:00
aff93052 357 - updated cookbook example
5ae68c0d 358 - fixed base for apache and https (Andrew Ruthven)
aff93052 359
61a0806c 3604.23 2005-03-09 20:00:00
7e5adedd 361 - no more regex actions in forward
3cb1db8c 362 - added support for test directories t/m, t/v and t/c
7e5adedd 363
61a0806c 3644.22 2005-03-08 20:00:00
0b944e63 365 - catch errors in application class
aff93052 366 - handle die properly.
0b944e63 367
61a0806c 3684.21 2005-03-05 17:00:00
d01df17d 369 - fixed docs
370
61a0806c 3714.20 2005-03-04 22:00:00
91864987 372 - moved bin to script
373
61a0806c 3744.13 2005-03-03 11:00:00
0ea0c2c3 375 - improved documentation
1df125c9 376 - pod coverage test for helper generated apps
ad41e777 377 - new helper api
0ea0c2c3 378
61a0806c 3794.12 2005-03-02 11:00:00 2005
5ddd05a0 380 - server_base sucks, removed
9b2bc37b 381 - added $c->log->dump()
5ddd05a0 382
61a0806c 3834.11 2005-03-02 11:00:00 2005
7833fdfc 384 - removed some warnings
385 - improved docs
7242d068 386 - private prefixed actions override private non prefixed actions
8495c1de 387 - added server_base
4a6895ce 388 - updated Catalyst::Manual::Intro
7833fdfc 389
61a0806c 3904.10 2005-03-02 10:00:00 2005
7833fdfc 391 - improved documentation
392 - fixed upload bug
393 - fixed prefixed private actions bug
394 - fixed more little bugs
395
61a0806c 3964.01 2005-03-01 10:00:00 2005
03a53815 397 - improved documentation
d7c505f3 398 - documentation fixes (Johan Lindstrom)
03a53815 399
61a0806c 4004.00 2005-02-27 22:00:00
fc7ec1d9 401 - more verbose debug messages, especially for forward()
402 - implemented prefixed prvate actions, icluding built in
403 !?default, !?begin and !?end
404 - new Catalyst::Manual::Intro
405 - new helpers, bin/catalyst
406 - helper api
407
61a0806c 4083.11 2005-02-23 21:00:00
fc7ec1d9 409 - added dependency to UNIVERSAL::require (Marcus Ramberg)
410 - added a little workaround for a warning in Catalyst::Test
411 (Marcus Ramberg)
412 - improved documentation for actions
413
61a0806c 4143.10 2005-02-19 20:00:00
fc7ec1d9 415 - removed roles management from Catalyst::Engine
416 and added it to Catalyst::Plugin::Authentication::CDBI
417
61a0806c 4183.04 2005-02-17 21:00:00
fc7ec1d9 419 - error reporting for app class
420 - no more engine debug messages
421 - class->method forwards get resolved now
422
61a0806c 4233.03 2005-02-16 23:00:00
fc7ec1d9 424 - friendlier statistics
425
61a0806c 4263.02 2005-02-16 22:00:00
fc7ec1d9 427 - fixed unintialized actions (Marcus Ramberg)
428
61a0806c 4293.01 2005-02-16 20:30:00
fc7ec1d9 430 - better statistics
431
61a0806c 4323.00 2005-02-16 20:00:00
fc7ec1d9 433 - real version number for CPAN.pm
434 - fixed redirect in CGI engine
435 - more statistics in debug logs
436 - ? prefix for forward()
437
61a0806c 4382.99_15 2005-02-02 22:00:00
fc7ec1d9 439 - support for short namespaces, MyApp::M, MyApp::V and MyApp::C
440 - Replaced "Catched" with "Caught" in Catalyst::Engine
441 (Gary Ashton Jones)
442 - replaced _ with ! for private actions
443 - added ? for prefixed actions
444 - misc improvememts
445
61a0806c 4462.99_14 2005-01-31 22:00:00 2005
fc7ec1d9 447 - arguments for _default
448 - $c->entrance removed for more flexibility
449 - added $c->req->method
450
61a0806c 4512.99_13 2005-01-30 18:00:00 2005
fc7ec1d9 452 - POD fixes and improvements
453
61a0806c 4542.99_12 2005-01-28 22:00:00 2005
fc7ec1d9 455 - first development release