updated Changes
[catagits/Catalyst-Runtime.git] / Changes
CommitLineData
6ee497c7 1# This file documents the revision history for Perl extension Catalyst.
3803e98f 2
1f851263 3 Bug fixes:
4 - Don't mangle query parameters passed to uri_for
5 - Tests for this (t0m + Byron Young + Amir Sadoughi)
72340975 6 - Inherited controller methods can now be specified in config->{action(s)}
7 (edenc)
1f851263 8
73c6a22a 95.80006 2009-06-29 23:37:47
10
3c9b6867 11 Bug fixes:
655dfc2a 12 - Revert change to URL encode things passed into $c->uri_for
13 Args and CaptureArgs as this causes breakage to pre-existing
cf1fb734 14 applications (t0m).
655dfc2a 15 - Remove use of Test::MockObject as it doesn't install from CPAN
cf1fb734 16 in some environments (t0m).
655dfc2a 17 - Remove use of dclone to deep copy configs and replace with
18 Catalyst::Utils::merge_hashes which has the same effect, of
19 ensuring child classes don't inherit their parent's config,
cf1fb734 20 except works correctly with closures (t0m).
21 - Add Class::C3::reinitialize into Catalyst::Test to avoid weird
22 bugs in ctx_request (bokutin in RT#46459)
23 - Fix issues with _parse_PathPrefix_attr method in Catalyst::Controller
24 (jasonk in RT#42816)
3c9b6867 25
d58edd2a 26 New features:
655dfc2a 27 - Use ~ as prefix for plugins or action classes which are located in
28 MyApp::Plugin / MyApp::Action (mo)
29 - Controller methods without attributes are now considered actions if
30 they are specified in config->{action(s)} (mo)
31 - Add Catalyst::Component::ContextClosure as an easy way to create code
32 references, that close over the context, without creating leaks
33 (Florian Ragwitz).
5d8129e9 34
cf1fb734 35 Refactoring / cleanups:
f880d1ec 36 - Clean namespaces in Catalyst::Exception* (Florian Ragwitz).
37 - Turn Catalyst::Exception into an actual class and make the throw
38 method create instances of it. They can still be used as normal
39 strings, as before, as they are overloaded to stringify to their
40 error message (Florian Ragwitz).
41 - Add a rethrow method to Catalyst::Exception (Florian Ragwitz).
42 - Add Catalyst::Exception::Detach and ::Go, and refactor detach() and
43 go() to use them instead of magic, global strings (Florian Ragwitz).
cf1fb734 44 Fixes RT#47366
45 - Clean up getting metaclass instance and making app class immutable
46 again in Catalyst::Test (t0m)
f880d1ec 47
7d665b58 485.80005 2009-06-06 14:40:00
49
0879fcc6 50 Behaviour changes:
51 - Arguments ($c->req->args) in Chained dispatch are now automatically
52 URL decoded to be consistent with Local/Path dispatch (Caelum)
53
54 Documentation:
55 - Clarify correct techniques for Moose controllers (domm)
56
57 Bug fixes:
a50e5b46 58 - Further change pushing 'env' attribute down into Catalyst::Engine
59 to make $c->engine->env work in all cases (kmx)
e8674cf7 60 - Also fix $c->engine->env in Catalyst::Test tests (kmx)
61 - Tests for this (t0m)
f66edc15 62 - Fix Catalyst failing to start if any plugin changed $_ whilst
63 loading (t0m)
64 - Tests for this
dd97c1ac 65 - Be stricter about arguments to Args attributes for Chained actions,
66 so that they blow up on load instead of causing undefined behavior
67 later on (hdp)
68 - Tests for this
27042f8b 69 - Prefer Path actions with a smaller (or set) number of Args (caelum)
70 Bug reported here: http://stackoverflow.com/questions/931653/catalyst-action-that-matches-a-single-file-in-the-root-directory/933181#933181
71 - Tests for this
0879fcc6 72
d75b106e 73 New features:
8026359e 74 - Add $c->req->remote_user to disambiguate from $c->req->user (dwc)
d75b106e 75 - Require MooseX::MethodAttributes 0.12 so that action methods
76 (with attributes) can be used in / composed from Moose roles.
fd4d9ff7 77 - Allow the generation of cookies with the HTTPOnly flag set
78 in Catalyst::Engine (kmx)
8026359e 79
92435154 805.80004 2009-05-18 17:03:23
de144724 81 - Rename the actions attribute in Catalyt::Controller to
82 _controller_actions to avoid name clashes with application
83 controller naming. (random)
7ba9f98c 84 - Test for using Moose in components which have a non-Moose base class
0b90d0f7 85 Fixed by 349cda in Moose 0.78 (t0m)
3cd3bc6a 86 - Fix deprecation message for Catalyst::Dispatcher to refer
87 to the class actually calling the deprecated method. RT#45741 (t0m)
33d61a3b 88 - Clarify limitations of $request->base and $request->secure.
89 (Phil Mitchell)
5b6f82d2 90 - Add 'use Catalyst' to documentation for a Moose MyApp class as
91 noted by dmaki. (t0m)
6ab73369 92 - Fix so that / (and other special characters) are URL encoded when
93 passed into $c->uri_for as Args/CaptureArgs (t0m)
8317b3d1 94 - Fix development server so that $c->engine->env returns the correct
95 environment (t0m)
3db3a59f 96 - Require Moose 0.78 to fix metaclass incompatibility issues (t0m)
c98492ae 97 - Require MooseX::MethodAttributes 0.10 and use
98 Moose::Meta::Class->initialize rather than Moose->init_meta to fix
99 bugs related to having a 'meta' method in your controller (t0m)
df3956bf 100 - Fix cases where your application failing to compile could cause perl
de144724 101 to report 'Unknown Error' (t0m)
102 - Support adding Moose::Roles to the plugin list. These are applied to
103 MyApp after plugins have been pushed onto @ISA (t0m)
341620d5 104 - Fix calling $c->req->parameters as the first thing you do when
105 parse_on_demand is on (t0m)
33d61a3b 106
5f3fc036 1075.80003 2009-04-29 16:23:53
eaae9a92 108 - Various POD tweaks. (hdp, dandv)
109 - Fix formatting error in the regex fallback warning. (rafl)
37eaceaf 110 - Convert the dispatcher's and restarter engine's BUILD method to
111 attribute builders to not override the BUILD method from
eaae9a92 112 MooseX::Emulate::Class::Accessor::Fast. (rafl)
4f03bb77 113 - Fix classes without metaclasses restarting, when not using
114 B::Hooks::OP::Check::StashChange (t0m)
59d5a638 115 - Fix the unattached chain debug table for endpoints with no
116 parents at all. (rafl)
e262f38e 117 - Turn of test aggregation by default. Only aggregate if the
118 AGGREGATE_TESTS environment variable is set and a recent
119 Test::Aggregate is available. (rafl)
b553e30c 120 - Bump to MooseX::MethodAttributes 0.09, to gain the
cf37d21a 121 get_nearest_methods_with_attributes method allowing methods without
b553e30c 122 attributes in a subclass to override those with attributes in a
84848664 123 superclass. This fixes CatalystX::CRUD's method of overriding /
b553e30c 124 disabling functionality from base controllers. (t0m)
93437707 125 - Bump HTTP::Request::AsCGI dependency to avoid broken version (t0m)
b553e30c 126 - Bump Moose dependency to latest version to fix metaclass
127 incompatibility issues in some cases. (t0m)
7c79dcf3 128 - Additional tests for setup_stats method. (t0m)
93437707 129 - Fix log levels in Catalyst::Log to be properly additive. (t0m)
deca8181 130 - Fix RT#43375 by sorting results before testing them (t0m)
873b98ee 131 - Fixes for uri_for_action when using Catalyst::DispatchType::Regex
132 + tests from RT#39369 (norbi)
5d06547d 133 - Partial rewrite and reoganisation of the C3 docs in
134 Catalyst::Upgrading based on feedback from kiffin (t0m)
b6f3ffcb 135 - If you make your application class immutable and turn off
136 constructor inlining, Catalyst will die and tell you pass
137 the (replace_constructor => 1) argument to
2c4d213f 138 make_immutable. (Dave Rolsky)
e262f38e 139
b8123bba 1405.80002 2009-04-22 01:28:36
4cb5d29f 141 - Fix CATALYST_DEBUG and MYAPP_DEBUG environment variables
142 turning debuging on if defined, rather than if set.
143 They now force debugging on or off, taking precedence over
144 configuration in your application. (t0m)
145 - Tests for this (t0m)
05d79b22 146 - pass replace_constructor to the immutable call to ensure
147 applications get a Moose constructor rather than a C::A one
16b7c476 148 - Fix issues with restarting the application class due to C3 failures
149 on perl 5.10 (t0m)
2f5cb070 150 - Work around issues in Moose with initialization order of multiple
151 levels of non-Moose classes inheriting from a Moose class (t0m)
152 - Test for this
71415389 153 - Add backwards compatibility method for Catalyst::Log->body, which
154 has been made private (t0m)
e99ec2dc 155 - Fix so that calling $c->req->parameters(undef) does not flatten
156 the request parameters with undef + test (t0m)
9c9a725d 157 - Fix so that width of table of unattached actions for debugging
e99ec2dc 158 ::DispatchType::Chained varies according to your terminal width
9c9a725d 159 (Oleg Kostyuk)
e99ec2dc 160 - Fix warning message about linearized @ISA in Catalyst::Component
1cc8db0c 161 (Emanuele Zeppieri)
93704c74 162 - Require MX::MethodAttributes 0.06 to avoid issues with saying
163 use base 'Catalyst::Controller'; use Moose; losing actions (t0m)
164 - Fix all of t0m's typos in ::Upgrading and ::Delta (hobbs)
165
fae37484 1665.80001 2009-04-18 22:18
84617fd5 167 - Don't inline the constructor for Catalyst::Log to avoid a
168 warning on recent Moose versions.
b31499bc 169 - Add delta documentation
170 - Clean up recursion errors
b9b89145 171 - Extra cross links in dispatch types POD (Ian Wells)
84617fd5 172 - Test uri_with clears query params when they are set to undef
6ebb7818 173 (Ian Wells)
9992a599 174 - Complain about old Catalyst::Devel versions which generated
a339c154 175 ->setup(qw/-Debug... etc. as this is not recommended (t0m)
6ebb7818 176
b6103f13 1775.8000_07 2009-04-12 13:37
e995c634 178 - Add the Catalyst::Dispatcher->dispatch_type method (ash)
13c6b4cc 179 - Throw an exception rather than loading an app if an action
180 tries to chain to itself (t0m)
181 - Tests for this
02298d3a 182 - Change the $c->visit and $c->go methods to optionally take
183 CaptureArgs, making them useful to call ActionChains with (t0m)
184 - Tests for this (radek)
185 - Fix _invoke_as_component method to find the proper action instance
186 for dispatchable actions so that ->visit or ->going to ActionChains
187 with qw/Class::Name method_name/ works correctly (t0m)
188 - Tests for this (radek)
f2e13bbd 189 - Added Catalyst::Test::ctx_request to be able to inspect
190 the context object after a request is made (Jos Boumans)
c74d3f0c 191 - debug() POD rewrite (jhannah)
f0ee3380 192 - Change the warning when you have conflicting components to
193 present a list (t0m)
19a24dbb 194 - Move NEXT use and testing deprecated features out to its own
195 test application so that the main TestApp isn't polluted with
196 spurious warnings (t0m)
197 - Add a warning for the old ::[MVC]:: style naming scheme (t0m)
198 - Test for this (t0m)
2d9f9c8d 199 - Kill Class::C3::Adopt::NEXT warnings for the Catalyst:: namespace
200 in production versions (t0m)
56e19078 201 - Tidy up Catalyst::ClassData to ensure that all components get
202 the correct metaclass (t0m)
4d0270d3 203 - Make MyApp.pm restartable by unsetting setup_finished in
204 the restarter process (t0m)
65b708a6 205 - Non-naive implementation of making mutable on restart using
206 B::Hooks::OP::Check::StashChange if installed (t0m)
207 - Tests for this (t0m)
208 - Naive implementation of making all components mutable in the
209 forked restart watcher process so native Moose apps using
210 immutable restart correctly. (t0m)
7d9921b1 211 - Tests for this (t0m)
107d0ba0 212 - Bump Moose dependency to 0.70 so that we avoid nasty surprises
213 with is_class_loaded and perl 5.80 when you Moosify MyApp.pm (t0m)
8f58057d 214 - Clarify that request arguments aren't unescaped automatically
215 (Simon Bertrang) (Closes RT#41153)
1d0e40c5 216 - Don't require C3 for the MRO test (rafl)
217 - Bump MX::Emulate::CAF prereq to support list assignment (rafl)
218 - Remove useless column in chained action debug table. (rafl)
219 - namespace::clean related cleanups (rafl)
220 - Import related cleanups and consistency fixes (rafl)
221 - Fix test suite TestApp /dump/env action (t0m)
542a67cf 222 - Add $res->code as alias for $res->status (hdp)
8c7f89e1 223 - Make Catalyst::ClassData compatible with the latest Class::MOP::Class
224 changes. Also depend on the latest Class::MOP. (rafl)
7f8dd87b 225 - Add $c->uri_for_action method. (hdp)
e7924bb5 226 - Don't stringify the meta method. Use its name instead. (rafl)
227 - Use MooseX::MethodAttributes::Inheritable to contain action
228 attributes. This means that attributes are now represented in the MOP,
229 allowing method modifiers on actions to work as expected. (rafl)
230 - Provide a reasonable API in Catalyst::Controller for working with
231 and registering actions, allowing a controller sub-class to replace
232 subroutine attributes for action declerations with an alternate
233 syntax. (rafl/hdp)
234 - Instantiate correct sub-class of Moose::Meta::Class for non-Moose
235 components where Catalyst forces the creation of a metaclass instance.
236 This is more correct, and avoids metaclass incompatibility in complex
237 cases (t0m)
238 - Tests for this (t0m)
dec1adb0 239 - Use of deprecated Catalyst::Base now warns. (t0m)
3c9e6294 240 - Add uri_with tests (gphat)
8f58057d 241
46b6daa3 2425.8000_06 2009-02-04 21:00
516a5fe8 243 - Disallow writing to config after setup (rafl)
244 - Disallow calling setup more than once (rafl)
245 - Documentation fix regarding overloading of Engine and Dispatcher
246 instances (rafl)
247 - Several documentation typo fixes (rafl)
248 - Stop Makefile.PL from warning about versions that fixed a conflict
249 (t0m)
250 - Improved upgrading documentation (t0m, rafl)
251 - Seed the RNG in each FastCGI child process (Andrew Rodland)
edf6cfd9 252 - Properly report dynamic bind port for the development server (rafl)
253 (Closes RT#38544)
254 - Use the way documented by IO::Socket::INET to get the error message
255 after trying to create a listening socket (rafl) (Closes RT#41828)
256 - Don't ignore SIGCHLD while handling requests with the dev server
257 (rafl) (Closes RT#42962)
516a5fe8 258
236b8005 2595.8000_05 2008-29-01 00:00
39fc2ce1 260 - Text::SimpleTable's go as wide as $ENV{COLUMNS} (jhannah)
261 Patch written by Oleg Kostyuk <cub.uanic@gmail.com>
8ada55c4 262 - Improve docs for visit (mateu)
23c63a17 263 - Add docs for finalize hook (dhoss)
5fa1b216 264 - Added ru/ua translations to error page
0580fbde 265 - Improve the clarity and verbosity of the warning when component
266 resolution uses regex fallback. (jhannah)
df3956bf 267 - Handle leading CRLF in HTTP requests sometimes sent by IE6 in
5570595e 268 keep-alive requests. (andyg)
c46dd4e8 269 - Fixes for FastCGI with IIS 6.0 (janus)
4348c28b 270 - Passing request method exported by Catalyst::Test an extra
271 parameter used to be ignored, but started breaking if the parameter
272 was not a hash in 5.8000_04. Extra parameter is now ignored if
273 it isn't a hashref (t0m)
df3956bf 274 - Fix request argumentss getting corrupted if you override the
275 dispatcher and call an action which detaches (for
12f0342e 276 Catalyst::Plugin::Authorization::ACL) (t0m)
d258fcb2 277 - Fix calling use Catalyst::Test 'MyApp' 'foo' which used to work,
278 but stopped as the 2nd parameter can be an options hash now (t0m)
420453e3 279 - Bump Moose dependency to fix make_immutable bug (t0m)
1a23d3da 280 - Use compile time extends in Catalyst::Controller (t0m)
121b0c3a 281 - Make Catalyst::Request::uploads attribute non-lazy, to fix
282 test for Catalyst-Engine-Apache (t0m)
54f4bfef 283 - Bump version of MooseX::Emulate::Class::Accessor::Fast (t0m)
aa59ee3c 284 - Stop using MooseX::Adopt::Class::Accessor::Fast by default, to stop
285 breaking other packages which use Class::Accessor::Fast
df3956bf 286 - Remove unused action_container_class attribute from
c41cfce3 287 Catalyst::Dispatcher (t0m)
288 - Replace {_body} instance access with calls to _body accessors (t0m)
df3956bf 289 - Add backwards compatibility alias methods for private attributes on
290 Catalyst::Dispatcher which used to be public. Needed by
291 Catalyst::Plugin::Server and Catalyst::Plugin::Authorization::ACL
c41cfce3 292 (t0m)
610bc6ec 293 - Fix return value of $c->req->body, which delegates to the body
c41cfce3 294 method on the requests HTTP::Body instance (t0m)
610bc6ec 295 - Test for this (t0m)
069355da 296 - Fix calling $c->req->body from inside an overridden prepare_action
297 method in a plugin, as used by Catalyst::Plugin::Server (t0m)
298 - Test for this (t0m)
083ee5d9 299 - Fix assignment to Catalyst::Dispatcher's preload_dispatch_types and
df3956bf 300 postload_dispatch_types attributes - assigning a list should later
083ee5d9 301 return a listref. Fixes Catalyst::Plugin::Server. (t0m)
302 - Tests for this (t0m)
df3956bf 303 - Change streaming test to serve itself rather than 01use.t, making
b1e0cb6d 304 test sync for engines easier (t0m)
961a1af0 305 - Refactor capturing of $app from Catalyst::Controller into
c1ec627e 306 Catalyst::Component::ApplicationAttribute for easier reuse in other
961a1af0 307 components (Florian Ragwitz)
308 - Make the test suites YAML dependency optional (Florian Ragwitz)
01ce7075 309 - Make debug output show class name for the engine and dispatcher
310 rather than the stringified ref. (t0m)
3d041c32 311 - Make MyApp immutable at the end of the scope after the setup
df3956bf 312 method is called, fixing issues with plugins which have their
3d041c32 313 own new methods by inlining a constructor on MyApp (t0m)
314 - Test for this and method modifiers in MyApp (t0m)
a12e6f17 315 - Fix bug causing Catalyst::Request::Upload's basename method
316 to return undef (t0m)
317 - Test for this (Carl Franks)
f55d1491 318 - Fix loading of classes which do not define any symbols to not
319 die, as it didn't in 5.70 (t0m)
320 - Test for this (t0m)
5e0a1a00 321 - Bump MooseX::Emulate::Class::Accessor::Fast dependency
322 to force new version which fixes a lot of plugins (t0m)
0fa676a7 323 - Make log levels additive, and add documentation and tests
324 for the setup_log method, which previously had none.
325 Sewn together by t0m from two patches provided by David E. Wheeler
fd0434d7 326 - Switch an around 'new' in Catalyst::Controller to a BUILDARGS
327 method as it's much neater and more obvious what is going on (t0m)
df3956bf 328 - Add a clearer method on request and response _context
02570318 329 attributes, and use if from ::Engine rather than deleting
330 the key from the instance hash (t0m)
331 - Use handles on tree attribute of Catalyst::Stats to replace
332 trivial delegation methods (t0m)
333 - Change the following direct hash accesses into attributes:
334 Catalyst::Engine: _prepared_write
335 Catalyst::Engine::CGI: _header_buf
336 Catalyst::Engine::HTTP: options, _keepalive, _write_error
337 Catalyst::Request: _path
02570318 338 Catalyst::Stats: tree
339 (t0m)
df3956bf 340 - Fix issues in Catalyst::Controller::WrapCGI
341 and any other components which import (or define) their
24e6a237 342 own meta method by always explicitly calling
343 Class::MOP::Object->meta inside Catalyst (t0m)
74c89dea 344 - Add test for this (t0m)
df3956bf 345 - Add test case for the bug which is causing the
f6ba9b54 346 Catalyst::Plugin::Authentication tests to fail (t0m)
347 - Fix a bug in uri_for which could cause it to generate paths
348 with multiple slashes in them. (t0m)
349 - Add test for this (t0m)
350 - Fix SKIP block name in t/optional_http-server-restart.t,
df3956bf 351 stopping 'Label not found for "last SKIP"' error from
f6ba9b54 352 Test::More (t0m)
353 - Workaround max_redirect 0 bug in LWP (andyg)
354 - Move live_engine_response_print into aggregate (andyg)
355 - Fix dependency bug, s/parent/base/ in new test (rafl)
df3956bf 356 - Fix optional tests to run the live tests in the aggregate
f6ba9b54 357 dir (andyg)
358 - Fix Catalyst->go error in remote tests (andyg)
df3956bf 359 - Fix upload test to work with remote servers, don't check for
f6ba9b54 360 deleted files (andyg)
df3956bf 361 - Fix engine_request_uri tests to work on remote server with
f6ba9b54 362 different URI (andyg)
363
76b3b586 3645.8000_04 2008-12-05 12:15:00
cec7aff6 365 - Silence Class::C3::Adopt::NEXT warnings in the test suite (rafl)
366 - Fix loads of 'used once, possible typo' warnings (rafl)
367 - Additional tests to ensure upload temp files are deleted (andyg)
dbb2d5cd 368 - Remove use of NEXT from the test suite, except for one case
369 which tests if Class::C3::Adopt::NEXT is working (t0m)
6cb9e383 370 - Use a predicate to avoid recursion in cases where the uri
371 method is overridden by a plugin, and calls the base method,
372 for example Catalyst::Plugin::SmartURI (t0m)
373 - Test for this (caelum)
df3956bf 374 - Compose the MooseX::Emulate::Class::Accessor::Fast role to
375 Catalyst::Action, Catalyst::Request, and all other modules which
531f1ab6 376 inherit from Class::Accessor::Fast in 5.70.
377 This fixes:
378 - Catalyst::Controller::HTML::FormFu (zamolxes)
379 - Catalyst::Request::REST (t0m)
b99ff5d8 380 - Test for this (t0m)
8fc0d39e 381 - Make hostname resolution lazy (Marc Mims)
d9d04ded 382 - Support mocking virtualhosts in test suite (Jason Gottshall)
86ffd579 383 - Add README (marcus)
384 - Fix TODO list (t0m)
385 - Use Class::C3::Adopt::NEXT (rafl)
386 - Ignore C3 warnings on 5.10 when testing ensure_class_loaded (rafl)
387 - Add TODO test for chained bug (gbjk)
388 - Fix list address in documentation (zarquon)
389 - Fix ACCEPT_CONTEXT on MyApp, called as a class method (marcus)
390 - Test for this (marcus)
df3956bf 391 - Bump MooseX::Emulate::Class::Accessor::Fast version requirement to
531f1ab6 392 get more back compatibility (t0m)
86ffd579 393 - Improve documentation for $req->captures (caelum)
394 - Fix a bug in Catalyst::Stats, stopping garbage being inserted into
395 the stats if a user calls begin => but no end => (jhannah)
396 - Test for this (jhannah)
397 - Trim lines sooner in stats to avoid ugly Text::SimpleTable wrapping
398 (jhannah)
399 - Change Catalyst::ClassData to tweak the symbol table inline for
400 performance after profiling (mst)
401 - Fix POD typo in finalize_error (jhannah)
df3956bf 402 - Add tests to ensure that we delete the temp files created by
c4b09639 403 HTTP::Body's OctetStream parser (t0m)
d9d04ded 404
73e131a9 4055.8000_03 2008-10-14 14:13:00
e31b525c 406 - Fix forwarding to Catalyst::Action objects (Rafael Kitover).
8fc89e76 407 - Fix links to the mailing lists (RT #39754 and Florian Ragwitz).
04557ef8 408 - Use Class::MOP instead of Class::Inspector (Florian Ragwitz).
409 - Change Catalyst::Test to use Sub::Exporter (Florian Ragwitz).
bdcac530 410 - Fixed typo in Engine::HTTP::Restarter::Watcher causing -r to complain.
04557ef8 411
ce8dcf03 4125.8000_02 2008-10-14 07:59:00
413 - Fix manifest
414
4155.8000_01 2008-10-13 22:52:00
2055d9ad 416 - Port to Moose
417 - Added test for action stringify
2ef59958 418 - Added test for component instances getting $self->{value} from config.
e4cc83b2 419 - Add Catalyst::Response->print() method (ilmari)
e209ecaf 420 - Optionally aggregate tests using Test::Aggregate (Florian Ragwitz).
df3956bf 421 - Additional docs for uri_for to mention how to use $c->action and
9df7c5d9 422 $c->req->captures (jhannah)
1a705b86 423 - List unattached chained actions in Debug mode (Florian Ragwitz).
88eee38e 424 - Pod formatting fix for Engine::FastCGI (Oleg Kostyuk).
ae0e35ee 425 - Add visit, a returning ->go
2055d9ad 426
2f381252 4275.7XXXXXX XXXX
b7ded0bd 428 - Workaround change in LWP that broke a cookie test (RT #40037)
8a27f860 429 - Back out go() since that feature's been pushed to 5.80
2f381252 430 - Fix some Win32 test failures
431 - Add pt translation of error message (wreis)
432 - Make :Chained('../action') work (Florian Ragwitz)
6cf9bf47 433 - Add test actions
434 - Chained doc improvements (rev 8326-8328)
2f381252 435
4365.7099_03 2008-07-20 10:10:00
437 - Fix regressions for regexp fallback in model(), view() and controller()
438 - Added the supplied argument to the regexp fallback warning for easier
439 debugging
440 - Ensure ACCEPT_CONTEXT is called for results from component()
441
4425.7099_02 2008-07-16 19:10:00
443 - Added PathPrefix attribute
444 - Removed Catalyst::Build; we've long since moved to Module::Install
445 - Updated Catalyst::Test docs to mention the use of HTTP::Request
446 objects (Rafael Kitover)
447
4485.7099_01 2008-06-25 22:36:00
449 - Refactored component resolution (component(), models(), model(), et al). We now
450 throw warnings for two reasons:
451 1) model() or view() was called with no arguments, and two results are returned
452 -- set default_(model|view), current_(model|view) or current_(model|view)_instance
453 instead
df3956bf 454 2) you call a component resolution method with a string, and it resorts to a regexp
2f381252 455 fallback wherein a result is returned -- if you really want to search, call the
456 method with a regex as the argument
457 - remove 0-length query string components so warnings aren't thrown (RT #36428)
458 - Update HTTP::Body dep so that the uploadtmp config value will work (RT #22540)
459 - Fix for LocalRegex when used in the Root controller
460 - Get some of the optional_* tests working from dirs with spaces (RT #26455)
461 - Fix Catalyst::Utils::home() when application .pm is in the current dir (RT #34437)
462 - Added the ability to remove parameters in req->uri_with() by passing in
463 an undef value (RT #34782)
464 - Added $c->go, to do an internal redispatch to another action, while retaining the
465 contents of the stash
466
4675.7014 2008-05-25 15:26:00
468 - Addition of .conf in restart regex in Catalyst::Engine::HTTP::Restarter::Watcher
df3956bf 469 - Fix regression for relative uri_for arguments after a forward()
470 introduced in 5.7013 (Peter Karman)
471 - Fix regression for "sub foo : Path {}" in the root controller which
2f381252 472 was introduced when attempting to allow "0" as a Path.
473
4745.7013 2008-05-16 18:20:00
475 - Provide backwards compatability methods in Catalyst::Stats
059c085b 476 - Fix subdirs for scripts that run in subdirs more than one level deep.
25f55123 477 - Added test and updated docs for handling the Authorization header
478 under mod_fastcgi/mod_cgi.
059c085b 479 - Fixed bug in HTTP engine where the connection was not closed properly if the
480 client disconnected before sending any headers. (Ton Voon)
2f381252 481 - POD fix, IO::FileHandle => IO::Handle (RT #35690)
482 - Fix grammar on welcome page (RT #33236)
483 - Fix for Path('0') handling (RT #29334)
484 - Workaround for Win32 and c3_mro.t (RT #26452, tested by Kenichi Ishigaki)
485 - Fix for encoding query parameters (edenc)
486 - Fix Chained multiple test (t0m)
25f55123 487
2cbd9d12 4885.7012 2007-12-16 23:44:00
7066a4d5 489 - Fix uri_for()'s and uri_with()'s handling of multibyte chars
490 (Daisuke Murase)
300633a8 491 - Fix __PACKAGE__->config->{foo} = 'bar' case with subclassing
e79a3d1c 492 - Add Catalyst::Stats (Jon Schutz)
d2dffcb4 493 - Fixed a bug where ?q=bar=baz is decoded as q=>'bar', not 'bar=baz'.
494 (Tatsuhiko Miyagawa, Masahiro Nagano)
ea52914e 495 - Fixed a bug where -rr (restart regex) command line option could cause
496 shell errors. (Aristotle Pagaltzis, Chisel Wright)
41593b49 497
4985.7011 2007-10-18 20:40:00
9c71d51d 499 - Allow multiple restart directories and added option to follow
500 symlinks in the HTTP::Restarter engine (Sebastian Willert)
501 - Fixed t/optional_http-server-restart.t so it actually tests
502 if the server restarted or notified of an error (Sebastian Willert)
44c6d25a 503 - Return child PID from the HTTP engine when run with the 'background' option.
504 (Emanuele Zeppieri)
4d4d6635 505 - Fixed bug in HTTP engine where writes could fail with
506 'Resource temporarily unavailable'.
d97e195c 507 - Fixed bug where %2b in query parameter is doubly decoded to ' ', instead of '+'
2f381252 508 (RT #30087, Gavin Henry, Tatsuhiko Miyagawa, Oleg Pronin)
de19de2e 509 - Fixed bug where req->base and req->uri would include a port number when running
510 in SSL mode.
228f9466 511 - Removed unnecessary sprintf in debug mode that caused warnings on locales where
512 commas are used for decimal markers.
23147ed7 513 - Improved error message for case when server picks up editor save
514 files as module names. (James Mastros)
4d4d6635 515
328f67a7 5165.7010 2007-08-22 07:41:00
517 - Resource forks in 5.7009
518
d0880659 5195.7009 2007-08-22 00:14:00
df3956bf 520 - Moved Manual.pod to Manual.pm and clarified status of
5ad4786f 521 Catalyst-Manual dist
522 - Doc patches to Catalyst::Controller
dd91afb5 523 - remove ignore_loaded from plugin load, commenting why
524 - document the ignore_loaded feature in Catalyst::Utils
4ca147fa 525 - Add testing of inline plugins.
5254e926 526
5275.7008 2007-08-13 08:40:00
3b4d1251 528 - Added $c->request->query_keywords for getting the keywords
529 (a query string with no parameters).
530 - Add undef warning for uri_for.
531 - Fix bug where a nested component would be setup twice.
532 - Make ensure_class_loaded behave better with malformed class name.
533 - Make _register_plugin use ensure_class_loaded.
534 - Remove 'Argument "??" isn't numeric in sprintf' warning.
12bf12c0 535 (Emanuele Zeppieri)
45eb6565 536 - Fixed a bug where Content-Length could be set to 0 if a filehandle
537 object in $c->response->body did not report a size.
1b45d7e5 538 - Fixed issue where development server running in fork mode did not
539 properly exit after a write error.
540 (http://rt.cpan.org/Ticket/Display.html?id=27135)
3b4d1251 541 - Remove warning for captures that are undef.
878b821c 542 - Fixed $c->read and parse_on_demand mode.
e512dd24 543 - Fixed a bug with the HTTP engine where very large response bodies
544 would not be sent properly.
45eb6565 545
46372e65 5465.7007 2007-03-13 14:18:00
933ba403 547 - Many performance improvements by not using URI.pm:
548 * $c->uri_for (approx. 8x faster)
549 * $c->engine->prepare_path (approx. 27x faster)
550 * $c->engine->prepare_query_parameters (approx. 5x faster)
5c2c224d 551 - Updated HTTP::Body dependency to 0.9 which fixes the following issues:
552 * Handle when IE sometimes sends an extra CRLF after the POST body.
553 * Empty fields in multipart/form-data POSTs are no longer ignored.
554 * Uploaded files with the name "0" are no longer ignored.
933ba403 555 - Sending SIGHUP to the dev server will now cause it to restart.
556 - Allow "0" for a path in uri_for.
06744540 557 - Performance and stability improvements to the built-in HTTP server.
db9db407 558 - Don't ignore file uploads if form contains a text field with the same name.
559 (Carl Franks)
951572c0 560 - Support restart_delay of 0 (for use in the POE engine).
847e3257 561 - Skip body processing if we don't have a Content-Length header.
65bf97ed 562 Results in about a 9% performance increase when handling GET/HEAD
563 requests.
39655cdc 564 - Add a default body to redirect responses.
72f87c4b 565 - MyApp->model/view now looks at MyApp->config->{default_view/model}
566 (Bogdan Lucaciu)
2db8beac 567
59ac2b86 5685.7006 2006-11-15 14.18
2db8beac 569 - Updated manifest
570 - Fix Slurp dependency
df3956bf 571 - Updated HTTP::Body dependency to 0.6, 0.5 can break on large POST
65bf97ed 572 requests.
d0f0fcf6 573 - Skip utf8 fix for undef values in uri_with() and uri_for()
69eecfe5 574
3e6f3bd6 5755.7005 2006-11-07 19:37:35
3aa14091 576 - Fixed lighttpd tests to be properly skipped.
577 - Moved IE workarounds to exist only in the HTTP engine.
b1eac6af 578 - Added installation instructions (from Catalyst-Manual dist)
3aa14091 579
5805.7004 2006-11-06 20:48:35
3150d774 581 - Fix Engine::HTTP crash when using IE. (Jesper Krogh, Peter Edwards)
1807fc27 582 - clean up Catalyst::Utils to handle some edge cases
a72b503e 583 - Properly work around lighttpd PATH_INFO vs. SCRIPT_NAME bug
1807fc27 584 (Mark Blythe)
b2a3cbd1 585 - add _application accessor to Catalyst::Base
1807fc27 586 - Support current_view
b2a3cbd1 587 - Allow use of Catalyst::Test without app name (Ton Voon, Altinity)
1807fc27 588 - Catalyst::Manual moved to its own package
589 - Add option to FastCGI engine to send errors to stdout, not the web server
df3956bf 590 - Use Module::Install's auto_install to install prerequisite modules
a72b503e 591 - various documentation fixes and improvements
df3956bf 592
8df78603 5935.7003 2006-09-21 16:29:45
594 - Additions and updates to tutorial
595
087ce3bb 5965.7002 2006-09-17 19:35:32
7f64ae17 597 - unescape captures to match args
598 - fix for relative Chained under namespace '' (root)
6d316c39 599 - fix for hashrefs in action attributes from config
f505df49 600 - fix for Chained to require correct number of CaptureArgs
7f64ae17 601
2bf9a2ec 6025.7001 2006-07-19 23:46:54
0435af55 603 - fix for component loading
604 - uri_for and uri_with now behave as they used to with non-
605 array references
606
0db1da0f 6075.7000 2006-07-07 08:08:08
5db46287 608 - fix FCGI.pm warning message with FastCGI engine
9d8e174a 609 - bumped inc::Module::Install to 0.63 in Makefile.PL
8b13f357 610 - fixes to uri_for_action for DispatchType::Chained
3e6f3bd6 611 - Further doc work.
df3956bf 612 - Minor code cleanups
3e6f3bd6 613 - Changed catalyst.pl to depend on Catalyst::Devel
4ba28188 614
ebaf0dde 6155.70_03 2006-06-28 16:42:00
bc7e54f2 616 - fixup to registered plugins debug at app startup
617 - refactored Catalyst::Utils::home
ebaf0dde 618
6195.70_02 2006-06-27 11:51:00
2db8beac 620 - Updated tutorial.
ebaf0dde 621
6225.70_01 2006-06-26 10:49:00
623
ccea086c 624 - fixed a Catalyst::Base bug causing duplicate action registrations
625 - modified DispatchTypes to support multiple registrations
626 - added Catalyst::Runtime module as dist marker
627 - added Catalyst::ActionChain and Chained DispatchType
9a6ecf4f 628 - removed retarded registration requirement in dispatcher
364d7324 629 - removed Module::Pluggable::Fast hack in favor of
630 Module::Pluggable::Object
ea0e58d9 631 - extended uri_for, added dispatcher->uri_for_action
2a563513 632 - added Catalyst::Base->action_for('methodname')
0bd5f8a2 633 - checked and tested :Args multimethod dispatch
c02f7490 634 - added ability to set action attributes from controller config
baf6a3db 635 - added merge_config_hashes() as a convenience method
fa32ac82 636 - Swapped out CGI::Cookie in favour of CGI::Simple::Cookie
637 - Removed test dependencies on Test::NoWarnings, Test::MockObject
1e514a51 638 - Removed dependency on UNIVERSAL::require
723f0262 639 - Split out Catalyst::Helper into a new distribution
640 - un-bundled the plugins as they are now pre-reqs for Catalyst::Helper
c82ed742 641 - nuked each() out of core with prejudice (due to lurking buglets)
642 - Added tests from phaylon for dispatcher precedence
16d306fa 643 - Use Class::Inspector->loaded($class) instead of $class->can('can')
734a1e11 644 - Added ActionClass attribute
e6dc3059 645 - Removed Test::WWW::Mechanize::Catalyst from Makefile.PL (circular dep)
825dbf85 646 - Updated docs for Catalyst::Component
b8f669f3 647 - Separated execute and dispatch on Catalyst::Action
34d28dfd 648 - cleaned up logging and debug output
2db8beac 649 - significant documentation revisions
5168a5fc 650 - Added warning for setup being called twice
60fa95ba 651 - Fix pod to use DBIC::Schema instead of DBIC model
5e707396 652 - Fix ->config failing to copy _config for subclassing
f63c03e4 653 - Updated log format
654 - Updated debug dump
5e707396 655
50f6a990 6565.6902 2006-05-04 13:00:00
657 - Remove tarballs and OSX metadata files.
658
6595.6901 2006-05-03 11.17:00
df3956bf 660 - Module::Install didn't overwrite META.yml.
f5dd5cc5 661
50f6a990 6625.6900 2006-05-03 11.17:00
052a2d89 663 - Stupid pause indexer can't count.
664 - Better fix for Catalyst::Test
665 - more tests.
666
6675.682 2006-04-27 13:51:00
df3956bf 668 - Damn OSX attributes again :(
052a2d89 669
6705.681 2006-04-27 08:47:00
671 - Updated manifest.
672 - Add basename to core . (Deprecates Catalyst::Plugin::Basename)
df3956bf 673
a9558b34 6745.68 2006-04-26 12:23:00
675 - ConfigLoader: Updated to version 0.06
676 - fixed undef warnings in uri_for() and uri_with()
2db8beac 677 - Fixed Catalyst::Test to report errors on failed Class load
a9558b34 678
38d13baa 6795.678 2006-04-24 12:30:00
680 - Re-release of 5.67 without OSX metadata files.
681
b4b01a8a 6825.67 2006-04-23 08:50:00
38d13baa 683 - Added $c->req->uri_with() helper
4fe3060e 684 - ConfigLoader: Updated to version 0.05
4c423abf 685 - Fix up Engine to avoid a new 5.8.8 warning
db5891bf 686 - Added app name with :: support for PAR
3b88a455 687 - Added $c->models/views/controllers
d84a238a 688 - Static::Simple: Unescape the URI path before looking for the file.
689 This fixes issues with files that have spaces.
690 - Looping and recursion tests plus a fix
b4b01a8a 691 - Added lots of API documentation. Refactored main pod.
d84a238a 692 - Changed default behaviors for $c->model/$c->controller/$c->view
693 to more sane settings.
694 - added the clear_errors method - an alias for error(0)
1dafef55 695 - Added tmpdir option for uploads (woremacx)
7257e9db 696 - Applied patch from GEOFFR to allow normal filehandles.
c8db5001 697 - Refactored Dispatcher internals for better readability and speedup
698 (stress tests run 12% faster)
9ce44430 699 - Allow $c->error to run as a class method
649fd1fa 700
f1bbebac 7015.66 2006-03-10 17:48:00
3736410f 702 - Added Test::WWW::Mechanize::Catalyst support
6aaa1c60 703 - Cleaned generated tests
d84a238a 704 - Added Root controller concept
e70a5d36 705 - Updated ConfigLoader plugin to version 0.04
6aa6b72b 706
855ed931 7075.65 2006-02-21 10:34:00
708 - Added plugin introspection.
709 - Support optional hashref as last param for parameters in uri_for.
710 - Updated tutorial to be more complete.
711 - Applied args patch from antirice (Fixes Ticket #67)
8327e2e2 712
6e234050 7135.64 2006-02-07 20:29:00
9f778270 714 - Fixed bug in FastCGI proc manager mode where pm_post_dispatch
715 was not run. (Eric Wong)
92ffbc90 716 - Cleaned up generated tests
1a7b17db 717 - Updated YAML support to use ConfigLoader
595f3872 718 - Fixed path dispatch to canonicalise correctly
719 (see http://dev.catalyst.perl.org/ticket/62)
aa2b0d97 720 - Added Catalyst::Manual::About
595f3872 721
a6ad13b6 7225.63 2006-01-22 00:00:00
83cbe493 723 - Updated prereq versions
724
ff5577c4 7255.62 2006-01-17 16:30:00
0a73a212 726 - Large update to the tutorial (castaway)
99f187d6 727 - Added YAML config support
22247e54 728 - Added COMPONENT() and ACCEPT_CONTEXT() support
5513038d 729 - Action list in debug mode is now displayed as a tree in the
730 correct execution order.
9b0a3e0f 731 - Fixed engine detection to allow custom mod_perl engines.
0db14221 732 - Static::Simple: Fixed bug in ignore_dirs under win32.
d10c3e60 733 - Display version numbers of loaded plugins. (Curtis Poe)
5ace8f96 734 - Added class and method for caught exception messages.
20682ed8 735 - Updated PAR support to use "make catalyst_par",
5ace8f96 736 packages are no longer written by Makefile.PL.
8f62c91a 737 - Automatically determine Content-Length when serving a
738 filehandle.
5ace8f96 739 - Exceptions now return status 500.
740 - Updated for Module::Install 0.44.
741 - Fixed additional file installation for multi level app names.
0bcb98c7 742 - Added REDIRECT_URL support for applications running behind
743 a RewriteRule in Apache. (Carl Franks)
6f2e0021 744 - Fixed FastCGI engine under win32. (Carl Franks)
d7d72ad9 745 - FastCGI doc updates (Bill Moseley)
29f5acef 746 - Bugfix for $c->model and friends (defined).
0bcb98c7 747
022d1311 7485.61 2005-12-02 00:00:00
749 - Fixed ExtUtils::AutoInstall Bootstrap Code in Makefile.PL
750
e1ab96e1 7515.60 2005-12-01 22:15:00
61a9002d 752 - Fixed Path and index actions in the appclass,
753 including those that attach to /
754 - Index is now weighted higher than Path
6780cd43 755 - Fixed restarter and -d debug switch in server.pl.
ee26f4bd 756 - Added a warning if you attempt to retrieve a parameter
757 using $c->req->params('foo').
7cf46fb4 758 - Fixed the Module::Install::Catalyst @ISA bug
6fe8a91d 759
294f78ca 7605.59 2005-11-30 13:25:00
8565f89d 761 - Fixed shebang line for generated scripts
86d993ab 762 - Fixed forward to classes ($c->forward(qw/MyApp foo/))
f075593c 763 - Wrap use block in begin to quelch C:C3 warnings
764 - Removed scrollbar from debug output
6c165c4b 765 - Fixed catalyst_par_core() and catalyst_par_multiarch()
86d993ab 766
2e4a6ec3 7675.58 2005-11-24 10:51:00
9624cd13 768 - Added ExtUtils::AutoInstall support
c8db5001 769 - Allow overriding path in Catalyst::Helper.
4e90e3c1 770 - Added -makefile to catalyst.pl to generate a new Makefile.PL.
10d487cb 771 - Restored Catalyst::Build with a deprecation notice.
975ba103 772 - Improved PAR support
b2d40c03 773 - Replaced -short with auto-detection
bb722214 774 - Fixed prereqs, added File::Copy::Recursive
4ca033b1 775 - Static::Simple changes:
776 - Made prepare_action play nice with other plugins by not short-
777 circuiting.
778 - Added tmpl to the ignored extensions.
779 - Fixed security problem if req->path contained '..'.
b2d40c03 780
4aaa6e43 7815.57 2005-11-20 22:45:00
d3e7a648 782 - Updated uri_for to accept undef actions
f991f6a0 783 - Switched to Module::Install
e71a3028 784 - Renamed tests for easier editing
b5ecfcf0 785 - Reformatted documentation
34a83d89 786 - Renamed -nonew to -force
fc04b845 787 - Added PAR support
6c7a1d2f 788 - Added keep-alive support and bug fixes to HTTP engine.
526b698a 789 (Sascha Kiefer)
790 - Added daemonize option to FastCGI engine. (Sam Vilain)
fc04b845 791
18c4e4c0 7925.56 2005-11-16 10:33:00
84528885 793 - Fixed FastCGI engine to not clobber the global %ENV on each
794 request. (Sam Vilain)
245ae014 795 - Updated benchmarking to work with detach
796 - Fixed dispatcher, so $c->req->action(undef) works again
0f895006 797 - Updated Catalyst::Test to use HTTP::Request::AsCGI
dc2fc680 798 - Added -pidfile to external FastCGI server.
84528885 799
b39840da 8005.55 2005-11-15 12:55:00
801 - Fixed multiple cookie handling
802
6f006bd6 8035.54 2005-11-14 22:55:00
804 - Fixed a Module::Pluggable::Fast related bug
805
89546294 8065.53 2005-11-14 15:55:00
807 - Removed t/04prereq.t that was testing for non-required
808 modules.
809
df755a7a 8105.52 2005-11-14 10:57:00
811 - Strip '..'s in static urls to fix security issue.
89546294 812
ff74d616 8135.51 2005-11-14 00:45:00
814 - Changed uri_for to use namespace instead of match.
ccc9f8aa 815
ff74d616 8165.50 2005-11-13 20:45:00
817 - Fixed minor bugs.
818 - Updated docs.
ccc9f8aa 819
527ada13 8205.49_05 2005-11-12 20:45:00
910410b8 821 - Large update to the documentation. (David Kamholz)
138ce4c0 822 - Fixed args handling in forward()
823 - Fixed forwarding to classes
2b01b53c 824 - Fixed catalyst.pl-generated Build.PL Makefile section.
a0eca838 825 - Fixed relative forwarding
826 - Fixed forward arrows in debug output
827
8beacad7 8285.49_04 2005-11-09 23:00:00
db38216d 829 - Made context, dispatcher, engine, request and response classes
8beacad7 830 configurable.
831 - Added $c->stack.
832 - Fixed dispatcher to ignore unknown attributes.
833 - Improved format of startup debug log.
0c74cb08 834 - Updated built in server to restart on win32. (Will Hawes)
6484fba0 835 - Fixed streaming write from a filehandle to stop writing
836 if the browser is closed.
0c74cb08 837 - Added $c->controller, $c->model and $c->view shortcuts.
838 - Switched to Text::SimpleTable.
8c113188 839
60b53d07 8405.49_03 2005-11-03 12:00:00
e561386f 841 - Fixed $c->req->{path} for backwards-compatibility.
59c2b3bd 842 - Allow debug to be disabled via ENV as well as enabled.
e4d88362 843 - Added -scripts option to catalyst.pl for script updating
8264c145 844 - Changed helpers to default to long types, Controller instead of C
5ee249f2 845 - Added Catalyst::Controller, Catalyst::Model and Catalyst::View
846 base classes
c6ef5e69 847 - Added JavaScript to debug screen to show and hide specific dumps
0bbb5a1f 848 - Added _DISPATCH, _BEGIN, _AUTO, _ACTION and _END actions
fe9da43b 849 - Added multi process external FastCGI support
850 (see myapp_fastcgi.pl -help) (Sam Vilain)
40b0b60c 851 - Restarter process in HTTP engine now properly exits when the
df3956bf 852 parent app is shut down.
4c980e76 853 - Improved performance of restarter loop while watching for
854 changed files.
855 - Restarter will now detect new files added to an app on systems
856 that change directory mtimes when new files are created.
857 - Restarter now properly handles modules that are deleted from an
858 application.
40b0b60c 859 - Fixed memory leak in TestApp.
860
df3956bf 8615.49_02 2005-10-26 12:39:00
bcccee4e 862 - Whole new dispatcher!
863 - Added index action
01033d73 864 - Added path_to method
6e692ab4 865 - Added support for passing an IO::Handle object to $c->res->body.
866 (Andrew Bramble)
a9b78939 867 - Added a new welcome screen.
868 - Included Catalyst buttons and icons in helper.
869 - Added Static::Simple plugin to core.
9438e46e 870 - Added self restarting test server
bc2beef5 871 - Added filename to debug output for uploaded files.
872 - Fixed forwarding with embedded arguments.
e0616220 873 - Fixed handling of escaped query strings.
c4bed79a 874 - Added upload parameters back into $c->req->params.
749472d6 875 - Added multiple paths support to dispatcher
6ff79ec5 876 - Fixed bug in req->path where changing the path added a trailing
877 slash.
4f5ebacd 878 - Removed req->handle and res->handle
4bd82c41 879 - Added prepare_body_chunk method as a hook for upload progress.
58f510c2 880 - Fixed bug in uri_for method when base has no path.
55ddccae 881 - Added automated tests for HTTP, CGI, and FastCGI servers.
58f510c2 882
df3956bf 8835.49_01 2005-10-10 10:15:00
fbcc39ad 884 - Refactored all internals, should be 99% compatible to previous
885 versions.
886 - *IMPORTANT* The Apache engines have been moved to a separate package
887 for this release. Please install Catalyst::Engine::Apache if you
888 need Apache support.
889
890 - Added support for calling forward with arguments in the path, i.e.
891 $c->forward('/foo/bar/arg1/arg2')
892 - Made $c->req->uri a URI object, added req->path_info for CGI compat.
893 Raw query string is available as $c->req->uri->query.
894 - Made $c->req->base a URI object.
895 - Parameters with multiple values (?a=1&a=2) now display properly
896 in the debug output.
897 - Semi-colon separators in query strings now work properly.
898 - Expanded documentation of catalyst.pl (Andrew Ford)
899 - Added support for running as a backend server behind a frontend
900 proxy so req->base and req->address are set properly.
901 - Added an 'abort' method to the Log api, so that you can
902 kill loggging for a whole request.
903 - Added $c->uri_for method to simplify url handling.
904 - Added more tests and reorganized the t directory.
905 - Reimplemented core engines, all are now CGI based for better test
906 coverage and maintainability.
907 - Added fork support to built in test server.
908 - Fixed all memory leaks.
909 - Thread-related bug fixes and tests. We now believe the Catalyst
910 core to be thread-safe.
911 - Added streaming IO support through $c->req->read() and
912 $c->res->write()
913 - Added MyApp->config->{parse_on_demand} (streaming input)
914 - Added $c->req->handle and $c->res->handle
915 - Improved documentation
fd59198f 916 - Fixed mkpath in Catalyst::Helper (Autrijus Tang)
43f0a258 917 - Fixed bug in dispatcher where an invalid path could call a valid
918 action. (Andy Grundman)
5c9b3736 919 - Fixed Helper so it works with CRLF line-endings. (Andy Grundman)
fd59198f 920
4e449be9 9215.33 2005-08-10 15:25:00
43f0a258 922 - Now with updated manifest.
fd59198f 923
4e449be9 9245.32 2005-08-10 15:10:00
43f0a258 925 - Dispatcher might fail if object returns false. (Florian Ragwitz)
a1c8f974 926
58e9ce65 9275.31 2005-06-04 12:35:00 (never released to CPAN)
62d9b030 928
ef3250bc 929 - helpers now create .new files where files already exist and differ
62d9b030 930 - fixed $Data::Dumper::Terse (Robin Berjon)
bd7d2e94 931 - added arguments for detach
43c58153 932 - new credits section in POD
71c3bcc3 933 - fixed detach to allow relative action names (Matt and Robert)
934 - added the ability to have whitespaces in Path( '' ) and Regex( '' )
62d9b030 935
f56990fa 9365.30 2005-06-04 12:35:00
2343e117 937
df3956bf 938 - Fixed a bug where it was not possible to $c->forward to a
939 component
7e71fcce 940 that was not inheriting from Catalyst::Base.
599b5295 941 - Fix for inheritance bug.
a1dad9c1 942 - Allow forward with arguments.
2343e117 943 - Updated cookbook
e0143040 944 - Allow overriding home/root in config.
d2ee9760 945 - make module build cons README automatically.
946 - prettify home path by resolving '..' (Andy Grundman)
f56990fa 947 - improved helper templates a bit, new naming scheme for tests.
d2ee9760 948 - added support for case sensitivity, MyApp->config->{case_sensitive}
ef16e169 949 - added $c->detach for non-returning forwards
d2ee9760 950 - added unified error handling, Catalyst::Exception
951 - added section on param handling in Intro.pod
952 - added $c->request->cookie
953 - added Catalyst::Setup
954 - refactored Catalyst::import()
955 - improved rendering of error messages in debug mode
956 - fixed a bug in Catalyst::Helper::mk_dir
ef16e169 957 - further doc changes, esp. to Intro.pod
abddf0b5 958
49ba64d7 9595.23 2005-06-03 02:30:00
8a0ec4fd 960 - added support for non Catalyst::Base components to live in namespace
961 - improved concurrency connections in Catalyst::Engine::HTTP::Daemon
a268a011 962
d8cdbf30 9635.22 2005-05-26 14:24:00
d2ee9760 964 - improved base locating in MP engines
965 - improved error messages in C::E::HTTP::Daemon
966 - hostnames are now resolved on demand unless provided by engine
967 - fixed memory leak in $c->execute (Michael Reece, Matt S Trout)
99386274 968
db046247 9695.21 2005-05-24 14:56:00
b7b011a9 970 - fixed a bug in https detection
9ddd9d05 971 - fixed auto chain finally
895b2303 972 - added MYAPP_HOME and CATALYST_HOME environment variables
b7b011a9 973
61a0806c 9745.20 2005-05-18 19:52:00
a783a49e 975 - improved uploads and parameters
77d12cae 976 - added $c->req->protocol and $c->req->secure
977 - added $c->req->user and $c->req->uri
8f591211 978 - improved error message when forwarding to unknown module
91eeb37b 979 - fixed win32 installer
e88fa058 980 - added deep recursion detection
99d891a5 981 - fixed auto actions
e37b6309 982 - fixed inheritance in dispatcher
0299ba22 983 - allow whitespaces between brackets and quoted string
984 in Path and Regex attributes
97f1b4e7 985 - new helper templates
9cee9588 986 - installer now supports install_base and destdir
61a0806c 987 - allow multiple Catalyst apps to run on the same mod_perl
988 instance (not the same app!)
6890e598 989 - fixed MP2 engines
fc88e495 990 - removed apreq dependency from all MP engines
991 - added support for MP registry scripts
992 - added support for LocationMatch and ScriptAliasMatch in MP engines
6890e598 993 - added SpeedyCGI engine
a783a49e 994
61a0806c 9955.10 2005-04-23 11:16:00
a783a49e 996 - updated dependencies to require latest module::pluggable::fast
997 - new installer for templates and stuff using Module::Build
4f6748f1 998 - scripts are now prefixed, for being installable
999 IMPORTANT: You have to regenerate the script directory,
1000 remove Makefile.PL and add Build.PL
adfe7ead 1001 - Added compat to install Module::Build if required.
8f591211 1002 - Improved: Params handling with MP engines
1003 - Fixed: Params handling on POST with CGI engine (Andy Grundman)
1004 - Fixed: Helper.pm on Win32 (Matt S Trout)
4f6748f1 1005
61a0806c 10065.03 2005-04-19 20:35:00 (Revision 462)
a783a49e 1007 - fixed Test example (Torsten Seeman)
1008 - added Plugins chapter to manual
bbcadec7 1009 - applied doc patch from Robert Boone <robert@rlb3.com>
a783a49e 1010 - improved Dispatcher error messages.
1011 - refactored so we don't need to include helper from
e9deb4dc 1012 Catalyst.pm - Fixes issues with FindBin
5b2a599c 1013 - applied HTTP.pm patch from Andy Grundman <andy@hybridized.org>
87232381 1014 - added plugin() method for instant plugins
1015 - FCGI is no more considered experimental
bbcadec7 1016
df3956bf 10175.02 2005-04-18 10:00:00
2cf9bc57 1018 - fixed manifest
1019
df3956bf 10205.01 2005-04-17 23:00:00
d7953572 1021 - some documentation bugs fixed
f05af9ba 1022 - added Catalyst::Utils
eaf14ff4 1023 - fixed regexp bug (Matt S Trout)
1024 - fixed upload bug with MP19
1025 - added $c->req->body
e27582bb 1026 - aliased $c->res->output to $c->res->body
df3956bf 1027 - Read AUTHOR from passwd or $ENV{AUTHOR} when
ddb46924 1028 generating code.
8c8f7c51 1029 - extended attribute handling
84cf74e7 1030 - added global config for components
d7953572 1031
61a0806c 10325.00 2005-04-15 18:00:00
0c28fbd7 1033 - new core to support inheritance trees
1034 - new syntax for action declaration
1035 - new helper system using TT2
b76d7db8 1036 - problems with mod_perl2 fixed
5a8fd7e9 1037 - added Test::Pod support
6f4e1683 1038 - added new server backend with HTTP/1.1 support
1039 - added option to run tests against a remote server
0c28fbd7 1040 - renamed errors() to error()
ca61af20 1041 - more better docs
0c28fbd7 1042 - countless minor improvements
ca61af20 1043 IMPORTANT: This release is very incompatible to previous ones
1044 and you have to regenerate the helper scripts again...
e519ff34 1045
61a0806c 10464.34 2005-03-23 07:00:00 2005
9ada3267 1047 - added some messages to Makefile.PL
00869ea8 1048 - added Catalyst::Engine::Test
1049 - added Catalyst::Engine::CGI::NPH
1050 - simplified Catalyst::Log to be easier to implement/subclass
1051 - added cgi.pl
6f4e1683 1052 - updated Catalyst::Test to use Catalyst::Engine::Test
00869ea8 1053 - updated helper scripts
1054 IMPORTANT: this will be the last time you'll have to regenerate
1055 the script directory. We promise!
9ada3267 1056
61a0806c 10574.33 2005-03-23 01:00:00 2005
145074c2 1058 - documented the log() accessor method in Catalyst (Andrew Ford)
82d2fcbe 1059 - added optional arguments to Catalyst::Log methods (Andrew Ford)
a564a4be 1060 - removed cgi-server.pl
ffb41d94 1061 - added fcgi.pl and Catalyst::Engine::FCGI
b0b7c5e0 1062 - fixed an undef durng make test (Dan Sully)
5442009c 1063 - new path test (Christian Hansen)
1064 IMPORTANT: you have to regenerate the script directory again
82d2fcbe 1065
61a0806c 10664.32 2005-03-22 02:10:00 2005
caca1b02 1067 - made a damn typo *AAAAAAAAAAAAAAHHHH!!!*
1068
61a0806c 10694.31 2005-03-22 02:00:00
1c99e125 1070 - fixed inheritance (Christian Hansen)
c0d174dc 1071 - previous release was borked!
1072 fixed that, but you have to regenerate the scripts again :(
1c99e125 1073
df3956bf 10744.30 2005-03-21 23:00:00
d2cad154 1075 - more documentation (Andrew Ford)
0556eb49 1076 - added connection informations (Christian Hansen)
49faa307 1077 - HTTP::Request support in Catalyst::Test (Christian Hansen)
3fde004f 1078 - moved cgi.pl to nph-cgi.pl
a0bb847e 1079 - added Catalyst::Engine::Server (Christian Hansen)
585893b9 1080 - removed Catalyst::Test::server
1081 - updated helper scripts
1082 IMPORTANT: note that you have to regenerate script/server.pl,
1083 script/cgi-server.pl and script/cgi.pl (now nph-cgi.pl)
0556eb49 1084
61a0806c 10854.28 2005-03-19 22:00:00
502619e5 1086 - fixed isa tree (Christian Hansen)
bc024080 1087 - added script/cgi-server.pl, so no more server restarting after
1088 code changes
1089 - reworked documentation (Andrew Ford <A.Ford@ford-mason.co.uk>)
502619e5 1090
61a0806c 10914.27 2005-03-19 01:00:00
c85ff642 1092 - debug message for parameters
23f9d934 1093 - Fix redirects (Christian Hansen <ch@ngmedia.com>)
b5524568 1094 - some random fixes
1095 - new helper api for Catalyst::Helper::* support
1096 you have to update script/create.pl to use it
c85ff642 1097
61a0806c 10984.26 2005-03-16 10:00:00
5783a9a5 1099 - fixed the weird bug that caused regex actions to fail on every
1100 second request
c85ff642 1101 - more debug messages
748161c4 1102 - 100% pod coverage.
5783a9a5 1103
61a0806c 11044.25 2005-03-12 18:00:00
f1d0b7ea 1105 - correct perl pathes for helper generated scripts (Tatsuhiko Miyagawa)
9a33da6a 1106 - improved cgi engine docs (Christoper Hicks)
f1d0b7ea 1107
61a0806c 11084.24 2005-03-12 01:00:00
df3956bf 1109 - updated cookbook example
5ae68c0d 1110 - fixed base for apache and https (Andrew Ruthven)
df3956bf 1111
61a0806c 11124.23 2005-03-09 20:00:00
7e5adedd 1113 - no more regex actions in forward
3cb1db8c 1114 - added support for test directories t/m, t/v and t/c
7e5adedd 1115
61a0806c 11164.22 2005-03-08 20:00:00
0b944e63 1117 - catch errors in application class
aff93052 1118 - handle die properly.
0b944e63 1119
61a0806c 11204.21 2005-03-05 17:00:00
d01df17d 1121 - fixed docs
1122
61a0806c 11234.20 2005-03-04 22:00:00
91864987 1124 - moved bin to script
1125
61a0806c 11264.13 2005-03-03 11:00:00
0ea0c2c3 1127 - improved documentation
1df125c9 1128 - pod coverage test for helper generated apps
ad41e777 1129 - new helper api
0ea0c2c3 1130
61a0806c 11314.12 2005-03-02 11:00:00 2005
5ddd05a0 1132 - server_base sucks, removed
9b2bc37b 1133 - added $c->log->dump()
5ddd05a0 1134
61a0806c 11354.11 2005-03-02 11:00:00 2005
7833fdfc 1136 - removed some warnings
1137 - improved docs
7242d068 1138 - private prefixed actions override private non prefixed actions
8495c1de 1139 - added server_base
4a6895ce 1140 - updated Catalyst::Manual::Intro
7833fdfc 1141
61a0806c 11424.10 2005-03-02 10:00:00 2005
7833fdfc 1143 - improved documentation
1144 - fixed upload bug
1145 - fixed prefixed private actions bug
1146 - fixed more little bugs
1147
61a0806c 11484.01 2005-03-01 10:00:00 2005
03a53815 1149 - improved documentation
d7c505f3 1150 - documentation fixes (Johan Lindstrom)
03a53815 1151
61a0806c 11524.00 2005-02-27 22:00:00
fc7ec1d9 1153 - more verbose debug messages, especially for forward()
1154 - implemented prefixed prvate actions, icluding built in
1155 !?default, !?begin and !?end
1156 - new Catalyst::Manual::Intro
1157 - new helpers, bin/catalyst
1158 - helper api
1159
61a0806c 11603.11 2005-02-23 21:00:00
fc7ec1d9 1161 - added dependency to UNIVERSAL::require (Marcus Ramberg)
1162 - added a little workaround for a warning in Catalyst::Test
1163 (Marcus Ramberg)
1164 - improved documentation for actions
1165
61a0806c 11663.10 2005-02-19 20:00:00
fc7ec1d9 1167 - removed roles management from Catalyst::Engine
1168 and added it to Catalyst::Plugin::Authentication::CDBI
1169
df3956bf 11703.04 2005-02-17 21:00:00
fc7ec1d9 1171 - error reporting for app class
1172 - no more engine debug messages
1173 - class->method forwards get resolved now
1174
df3956bf 11753.03 2005-02-16 23:00:00
fc7ec1d9 1176 - friendlier statistics
1177
61a0806c 11783.02 2005-02-16 22:00:00
fc7ec1d9 1179 - fixed unintialized actions (Marcus Ramberg)
1180
61a0806c 11813.01 2005-02-16 20:30:00
fc7ec1d9 1182 - better statistics
1183
61a0806c 11843.00 2005-02-16 20:00:00
fc7ec1d9 1185 - real version number for CPAN.pm
1186 - fixed redirect in CGI engine
1187 - more statistics in debug logs
1188 - ? prefix for forward()
1189
61a0806c 11902.99_15 2005-02-02 22:00:00
fc7ec1d9 1191 - support for short namespaces, MyApp::M, MyApp::V and MyApp::C
1192 - Replaced "Catched" with "Caught" in Catalyst::Engine
1193 (Gary Ashton Jones)
1194 - replaced _ with ! for private actions
1195 - added ? for prefixed actions
1196 - misc improvememts
1197
61a0806c 11982.99_14 2005-01-31 22:00:00 2005
fc7ec1d9 1199 - arguments for _default
1200 - $c->entrance removed for more flexibility
1201 - added $c->req->method
1202
61a0806c 12032.99_13 2005-01-30 18:00:00 2005
fc7ec1d9 1204 - POD fixes and improvements
1205
61a0806c 12062.99_12 2005-01-28 22:00:00 2005
fc7ec1d9 1207 - first development release