Bump MX::E::CAF dep, update TODO, chop out of date crap out of ROADMAP
[catagits/Catalyst-Runtime.git] / TODO
1 Pending patches:
2   - meta test for MX::Emulate::CAF needed by Catalyst::Plugin::Cache::Curried
3     
4 Back-compat investigation / known issues:
5
6   - Plugins with new methods.
7     - Moose 'not inlining new method' warnings need to be fixed.
8       - Warning in Moose could also be more helpful..
9     - Why does the current test not fail / warn?
10     - Generally unhappy with the on_end_of_scope immutable approach,
11       try removing new method from plugins (and emitting warning).
12
13   - Common engine test failures, look into and get tests into core.
14
15   - CatalystX-Imports, Class::MOP doesn't consider anon subs in the symbol 
16     table as methods, tests + fix, or explanation and documentation?
17     (rafl & phaylon)
18
19   - Run another round of repository smokes against latest 5.80 trunk, manually
20     go through all the things which are broken (t0m).
21     
22      - Catalyst::Plugin::Authorization::ACL
23      - Catalyst::Plugin::Server
24      - Catalyst::Plugin::HTML::Widget
25        - Should hopefully be fixed now..
26      
27      - Catalyst-Log-Log4perl Deep recursion on subroutine "MockApp::setup" 
28        (rafl)
29      
30      - Catalyst-Plugin-Cache dies due to mk_accessors('meta')
31      
32      - CatalystX-CRUD fails tests against 5.80 (karpet)
33     
34      - Catalyst-Engine-Apache - Deep recursion on subroutine 
35        "Catalyst::Action::execute", investigate once all other tests pass
36     
37   - Issues with TWMC not being loaded when it used to be in 5.70 
38     (Bill Moseley)
39
40   - Fix memory leaks (I already tried Devel::Leak::Object, but no joy).
41
42   -  In 5.70, you can have a component which doesn't inherit from ::Component, 
43      and has no new method, and it'll do the right thing for you. We just 
44      ignore that, we should still support that, but warn for/deprecate it so 
45      it can go for 5.9X...
46      This all obviously needs better tests :/
47
48 Cleanups:
49     
50   - Update Test suite to not assume MyApp ISA Controller
51     - After that set up attr handlers that will output helpful error messages 
52       when you do it as well as how to fix it.
53
54   - Eliminate all instances of $instance->{$key}, I think the only thing
55     left is lib/Catalyst/Engine/HTTP.pm: $self->{inputbuf}, which I haven't
56     touched as it is used as an lvalue in a lot of places (t0m)
57
58   - Find whatever in the test suite craps a file called GLOB(0xfoo) onto my 
59     disk and fix it. (Believed to be in the optional TEST_HTTP tests?) (t0m)
60
61 Documentation:
62
63    - extends in components must be inside a BEGIN block.
64
65    - How to write Moosified Catalyst components.
66
67    - Manual / Tutorial updates
68
69    - Fix the Roadmap to be less full of lies.
70
71 Profiling:
72
73   - vs 5.70 and optimisation as needed.
74
75 Tests:
76
77   - Moosified test application?
78
79   - Test warning from back-compat methods in Catalyst::Dispatcher