Warnings about deprecated runtime plugins
[catagits/Catalyst-Runtime.git] / TODO
1 Back-compat investigation / known issues:
2
3   - Get engines tested:
4     - Catalyst-Engine-Zeus
5     - Catalyst-Engine-XMPP2
6     - Catalyst-Engine-HTTPEngine
7     - Catalyst-Engine-HTTP-Prefork
8     - Catalyst-Engine-SCGI
9     - Catalyst-Engine-Wx
10
11   - CatalystX-Imports, Class::MOP doesn't consider anon subs in the symbol 
12     table as methods, tests + fix, or explanation and documentation?
13     (rafl & phaylon)
14
15   - Run another round of repository smokes against latest 5.80 trunk, manually
16     go through all the things which are broken (t0m).
17     
18      - Catalyst-Plugin-Session-State-Cookie
19        Catalyst-Plugin-Session-Store-FastMmap
20        Catalyst-Plugin-Session-PerUser
21        Catalyst-Plugin-Session-Store-File
22        Catalyst-Authentication-Credential-HTTP
23        Catalyst-Plugin-SmartURI
24         - All fixed by Scope::Upper
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 and CatalystX-CRUD-ModelAdapter-DBIC
32        fail tests against 5.80 (karpet)
33
34      - Catalyst-Plugin-Authorization-ACL fails as 
35        Catalyst::Dispatcher::_do_forward does not fix arguments if you throw
36        an exception. Needs a test case (Caelum)
37      
38      - Catalyst::Plugin::Authentication new release.
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 should 
47      still support that, but warn for/deprecate it so it can go for 5.9X...
48      This obviously needs better tests :/
49
50 Cleanups:
51
52   - Allow turning deprecated warnings off with use Catalyst 
53     qw/-NoDeprecationWarnings/
54
55   - Update Test suite to not assume MyApp ISA Controller
56     - After that set up attr handlers that will output helpful error messages 
57       when you do it as well as how to fix it.
58
59   - Eliminate all instances of $instance->{$key}, I think the only thing
60     left is lib/Catalyst/Engine/HTTP.pm: $self->{inputbuf}, which I haven't
61     touched as it is used as an lvalue in a lot of places (t0m)
62
63   - Find whatever in the test suite craps a file called GLOB(0xfoo) onto my 
64     disk and fix it. (Believed to be in the optional TEST_HTTP tests?) (t0m)
65
66 Documentation:
67
68    - extends in components with attributes must be inside a BEGIN block.
69
70    - How to write Moosified Catalyst components.
71
72    - Manual / Tutorial updates
73
74    - Fix the Roadmap to be less full of lies.
75
76    -  With 5.7 people did extends qw/Moose::Object Catalyst::Component/, now 
77       Catalyst::Component isa Moose::Object so now isa doesn't linearize 
78       anymore, docs of what doesn't work and why (rafl)
79
80 Profiling:
81
82   - vs 5.70 and optimisation as needed.
83
84 Tests:
85
86   - Moosified test application?
87
88   - Test warning from back-compat methods in Catalyst::Dispatcher
89   
90   - Test warnings from plugin method on Catalyst
91