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