And fixes for the CDI issue, this is getting really yucky..
[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-Session-State-Cookie
22        Catalyst-Plugin-Session-Store-FastMmap
23        Catalyst-Plugin-Session-PerUser
24        Catalyst-Plugin-Session-Store-File
25        Catalyst-Authentication-Credential-HTTP
26        Catalyst-Plugin-SmartURI
27         - All fixed by Scope::Upper
28      
29      - Catalyst-Log-Log4perl Deep recursion on subroutine "MockApp::setup" 
30        (rafl)
31      
32      - Catalyst-Plugin-Cache dies due to mk_accessors('meta')
33      
34      - CatalystX-CRUD fails tests against 5.80 (karpet)
35
36      - Catalyst-Plugin-Authorization-ACL fails as 
37        Catalyst::Dispatcher::_do_forward does not fix arguments if you throw
38        an exception. Needs a test case (Caelum)
39      
40      - Catalyst::Plugin::Authentication::Store::DBIC relies on 
41        hooking the setup_finished class data method in a plugin
42        (see t/cdi_backcompat_accessor_override.t).
43        Is this insane / should we support this?
44
45   - Issues with TWMC not being loaded when it used to be in 5.70 
46     (Bill Moseley)
47
48   - Fix memory leaks (I already tried Devel::Leak::Object, but no joy).
49
50   -  In 5.70, you can have a component which doesn't inherit from ::Component, 
51      and has no new method, and it'll do the right thing for you. We should 
52      still support that, but warn for/deprecate it so it can go for 5.9X...
53      This obviously needs better tests :/
54
55 Cleanups:
56     
57   - Update Test suite to not assume MyApp ISA Controller
58     - After that set up attr handlers that will output helpful error messages 
59       when you do it as well as how to fix it.
60
61   - Eliminate all instances of $instance->{$key}, I think the only thing
62     left is lib/Catalyst/Engine/HTTP.pm: $self->{inputbuf}, which I haven't
63     touched as it is used as an lvalue in a lot of places (t0m)
64
65   - Find whatever in the test suite craps a file called GLOB(0xfoo) onto my 
66     disk and fix it. (Believed to be in the optional TEST_HTTP tests?) (t0m)
67
68   - Deprecate runtime plugins with warning.
69
70 Documentation:
71
72    - extends in components with attributes must be inside a BEGIN block.
73
74    - How to write Moosified Catalyst components.
75
76    - Manual / Tutorial updates
77
78    - Fix the Roadmap to be less full of lies.
79
80    -  With 5.7 people did extends qw/Moose::Object Catalyst::Component/, now 
81       Catalyst::Component isa Moose::Object so now isa doesn't linearize 
82       anymore, docs of what doesn't work and why (rafl)
83
84 Profiling:
85
86   - vs 5.70 and optimisation as needed.
87
88 Tests:
89
90   - Moosified test application?
91
92   - Test warning from back-compat methods in Catalyst::Dispatcher