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