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