fce0aca59f4541f10d877e3b0c34a4e59c0fca6c
[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   - Engine test failures, look into and update tests / do fixes as
14     needed.
15
16   - CatalystX-Imports, Class::MOP doesn't consider anon subs in the symbol 
17     table as methods, tests + fix, or explanation and documentation?
18     (rafl & phaylon)
19
20   - Run another round of repository smokes against latest 5.80 trunk, manually
21     go through all the things which are broken (t0m).
22     
23      - Catalyst::Plugin::Authorization::ACL
24      - Catalyst::Plugin::Server
25      - Catalyst::Plugin::HTML::Widget
26        - Should hopefully be fixed now..
27      
28      - Catalyst-Log-Log4perl Deep recursion on subroutine "MockApp::setup" 
29        (rafl)
30      
31      - Catalyst-Plugin-Cache dies due to mk_accessors('meta')
32      
33      - CatalystX-CRUD fails tests against 5.80 (karpet)
34
35   - Issues with TWMC not being loaded when it used to be in 5.70 
36     (Bill Moseley)
37
38   - Fix memory leaks (I already tried Devel::Leak::Object, but no joy).
39
40   -  In 5.70, you can have a component which doesn't inherit from ::Component, 
41      and has no new method, and it'll do the right thing for you. We just 
42      ignore that, we should still support that, but warn for/deprecate it so 
43      it can go for 5.9X...
44      This all obviously needs better tests :/
45
46 Cleanups:
47     
48   - Update Test suite to not assume MyApp ISA Controller
49     - After that set up attr handlers that will output helpful error messages 
50       when you do it as well as how to fix it.
51
52   - Eliminate all instances of $instance->{$key}, I think the only thing
53     left is lib/Catalyst/Engine/HTTP.pm: $self->{inputbuf}, which I haven't
54     touched as it is used as an lvalue in a lot of places (t0m)
55
56   - Find whatever in the test suite craps a file called GLOB(0xfoo) onto my 
57     disk and fix it. (Believed to be in the optional TEST_HTTP tests?) (t0m)
58
59 Documentation:
60
61    - extends in components must be inside a BEGIN block.
62
63    - How to write Moosified Catalyst components.
64
65    - Manual / Tutorial updates
66
67    - Fix the Roadmap to be less full of lies.
68
69 Profiling:
70
71   - vs 5.70 and optimisation as needed.
72
73 Tests:
74
75   - Moosified test application?
76
77   - Test warning from back-compat methods in Catalyst::Dispatcher