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