Update TODO after latest round of repos smoke tests
[catagits/Catalyst-Runtime.git] / TODO
CommitLineData
44f879d3 1Back-compat investigation:
8a440eba 2
1a23d3da 3 - Get engines tested:
4 - Catalyst-Engine-Zeus
5 - Catalyst-Engine-XMPP2
6 - Catalyst-Engine-HTTPEngine
7 - Catalyst-Engine-HTTP-Prefork
8 - Catalyst-Engine-SCGI
9 - Catalyst-Engine-Wx
8a440eba 10
44f879d3 11Known issues:
12 - CatalystX-Imports, Class::MOP doesn't consider anon subs in the symbol
13 table as methods, tests + fix, or explanation and documentation?
14 (rafl & phaylon)
15
54f4bfef 16 - Catalyst-Log-Log4perl Deep recursion on subroutine "MockApp::setup"
17 (rafl)
18
fb9f65db 19 - Catalyst-Plugin-Cache dies due to mk_accessors('meta')
fb9f65db 20
54bee50f 21 - CatalystX-CRUD and CatalystX-CRUD-ModelAdapter-DBIC
22 fail tests against 5.80 (karpet)
121b0c3a 23
df3ea11b 24 - Catalyst-Plugin-Authorization-ACL fails as
25 Catalyst::Dispatcher::_do_forward does not fix arguments if you throw
26 an exception. Needs a test case (Caelum)
27
54bee50f 28 - Catalyst::Plugin::Authentication new release.
44f879d3 29
30 - Catalyst::Action::RenderView
31 - Catalyst::Plugin::DebugCookie
32 - Conflict with each other: $c->config->{debug}->{foo} = 'bar'
33 now breaks, unsure why..
34
35 - Catalyst::Component::ACCEPT_CONTEXT - Having a COMPONENT method
36 after Catalyst::Component::COMPONENT used to work, and will still
37 delegate (and warn), but then NEXT::COMPONENT will not dtrt if you
38 re-dispatch again (NEXT would seemingly go back to the start?)..
39 See Reaction test suite for example of this happening.
40 FIXME - Also don't think this correctly delegates - $c appears
41 missing.
8a440eba 42
43 - Fix memory leaks (I already tried Devel::Leak::Object, but no joy).
9de04be2 44
fb9f65db 45 - In 5.70, you can have a component which doesn't inherit from ::Component,
1a23d3da 46 and has no new method, and it'll do the right thing for you. We should
47 still support that, but warn for/deprecate it so it can go for 5.9X...
420453e3 48 This obviously needs better tests :/
49
9de04be2 50Cleanups:
6b2a933b 51
52 - Allow turning deprecated warnings off with use Catalyst
53 qw/-NoDeprecationWarnings/
54
2105b371 55 - Update Test suite to not assume MyApp ISA Controller
24e6a237 56 - After that set up attr handlers that will output helpful error messages
0dcb8354 57 when you do it as well as how to fix it.
9de04be2 58
02570318 59 - Eliminate all instances of $instance->{$key}, I think the only thing
60 left is lib/Catalyst/Engine/HTTP.pm: $self->{inputbuf}, which I haven't
9de04be2 61 touched as it is used as an lvalue in a lot of places (t0m)
62
63 - Find whatever in the test suite craps a file called GLOB(0xfoo) onto my
c41cfce3 64 disk and fix it. (Believed to be in the optional TEST_HTTP tests?) (t0m)
9de04be2 65
66Documentation:
67
420453e3 68 - extends in components with attributes must be inside a BEGIN block.
9de04be2 69
70 - How to write Moosified Catalyst components.
71
72 - Manual / Tutorial updates
73
74 - Fix the Roadmap to be less full of lies.
2105b371 75
edb20ed3 76 - With 5.7 people did extends qw/Moose::Object Catalyst::Component/, now
77 Catalyst::Component isa Moose::Object so now isa doesn't linearize
78 anymore, docs of what doesn't work and why (rafl)
44f879d3 79
80 - Document all other known failure cases / upgrade issues.
81
82 - Tidy up / finish off incompatibility warnings etc.
83
84Reported bugs:
85
86 - Issues with TWMC not being loaded when it used to be in 5.70
87 (Bill Moseley)
edb20ed3 88
9de04be2 89Profiling:
2105b371 90
9de04be2 91 - vs 5.70 and optimisation as needed.
92
9de04be2 93Tests:
3fb903fd 94
9de04be2 95 - Moosified test application?
c41cfce3 96
97 - Test warning from back-compat methods in Catalyst::Dispatcher
6b2a933b 98
99 - Test warnings from plugin method on Catalyst
100