And fixes for the CDI issue, this is getting really yucky..
[catagits/Catalyst-Runtime.git] / TODO
CommitLineData
9de04be2 1Pending patches:
3fb903fd 2 - meta test for MX::Emulate::CAF needed by Catalyst::Plugin::Cache::Curried
54f4bfef 3
fb9f65db 4Back-compat investigation / known issues:
8a440eba 5
1a23d3da 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
8a440eba 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).
fb9f65db 20
edb20ed3 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
d91474f5 28
54f4bfef 29 - Catalyst-Log-Log4perl Deep recursion on subroutine "MockApp::setup"
30 (rafl)
31
fb9f65db 32 - Catalyst-Plugin-Cache dies due to mk_accessors('meta')
fb9f65db 33
54f4bfef 34 - CatalystX-CRUD fails tests against 5.80 (karpet)
121b0c3a 35
df3ea11b 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
76721d3c 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?
df3ea11b 44
8a440eba 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).
9de04be2 49
fb9f65db 50 - In 5.70, you can have a component which doesn't inherit from ::Component,
1a23d3da 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...
420453e3 53 This obviously needs better tests :/
54
9de04be2 55Cleanups:
9de04be2 56
2105b371 57 - Update Test suite to not assume MyApp ISA Controller
24e6a237 58 - After that set up attr handlers that will output helpful error messages
0dcb8354 59 when you do it as well as how to fix it.
9de04be2 60
02570318 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
9de04be2 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
c41cfce3 66 disk and fix it. (Believed to be in the optional TEST_HTTP tests?) (t0m)
9de04be2 67
420453e3 68 - Deprecate runtime plugins with warning.
69
9de04be2 70Documentation:
71
420453e3 72 - extends in components with attributes must be inside a BEGIN block.
9de04be2 73
74 - How to write Moosified Catalyst components.
75
76 - Manual / Tutorial updates
77
78 - Fix the Roadmap to be less full of lies.
2105b371 79
edb20ed3 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
9de04be2 84Profiling:
2105b371 85
9de04be2 86 - vs 5.70 and optimisation as needed.
87
9de04be2 88Tests:
3fb903fd 89
9de04be2 90 - Moosified test application?
c41cfce3 91
92 - Test warning from back-compat methods in Catalyst::Dispatcher