Update TODO after latest round of repos smoke tests
[catagits/Catalyst-Runtime.git] / TODO
1 Back-compat investigation:
2
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
10
11 Known 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  
16      - Catalyst-Log-Log4perl Deep recursion on subroutine "MockApp::setup" 
17        (rafl)
18      
19      - Catalyst-Plugin-Cache dies due to mk_accessors('meta')
20      
21      - CatalystX-CRUD and CatalystX-CRUD-ModelAdapter-DBIC
22        fail tests against 5.80 (karpet)
23
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      
28      - Catalyst::Plugin::Authentication new release.
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.
42
43   - Fix memory leaks (I already tried Devel::Leak::Object, but no joy).
44
45   -  In 5.70, you can have a component which doesn't inherit from ::Component, 
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...
48      This obviously needs better tests :/
49
50 Cleanups:
51
52   - Allow turning deprecated warnings off with use Catalyst 
53     qw/-NoDeprecationWarnings/
54
55   - Update Test suite to not assume MyApp ISA Controller
56     - After that set up attr handlers that will output helpful error messages 
57       when you do it as well as how to fix it.
58
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
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 
64     disk and fix it. (Believed to be in the optional TEST_HTTP tests?) (t0m)
65
66 Documentation:
67
68    - extends in components with attributes must be inside a BEGIN block.
69
70    - How to write Moosified Catalyst components.
71
72    - Manual / Tutorial updates
73
74    - Fix the Roadmap to be less full of lies.
75
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)
79       
80    - Document all other known failure cases / upgrade issues.
81    
82    - Tidy up / finish off incompatibility warnings etc.
83
84 Reported bugs:
85
86    - Issues with TWMC not being loaded when it used to be in 5.70 
87      (Bill Moseley)
88
89 Profiling:
90
91   - vs 5.70 and optimisation as needed.
92
93 Tests:
94
95   - Moosified test application?
96
97   - Test warning from back-compat methods in Catalyst::Dispatcher
98   
99   - Test warnings from plugin method on Catalyst
100