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