Authentication back compat fail due to ::ClassData not behaving like C::D::I, not...
[catagits/Catalyst-Runtime.git] / TODO
CommitLineData
9de04be2 1Pending patches:
3fb903fd 2 - meta test for MX::Emulate::CAF needed by Catalyst::Plugin::Cache::Curried
f55d1491 3
9de04be2 4 - Adopt::NEXT
def52816 5 - updated docs with how to disable it (t0m/rafl)
9de04be2 6
7Known issues:
8
85781ad7 9 - Fix t/cdi_backcompat_plugin_accessor_override.t - Catalyst::ClassData
10 doesn't emulate Class::Data::Inheritable by crapping on the symbol table
11 of the top level MyApp class, which causes back-compat fail.
9de04be2 12
13Cleanups:
14
24e6a237 15 - Catalyst-Plugin-Authorization-ACL, Can't locate object method "tree"
16 via package "Catalyst::Dispatcher", fix the plugin as tree was never
17 a public method.
2105b371 18
24e6a237 19 - Catalyst-Model-Akismet, incorrectly inherits from
20 Catalyst::Component::InstancePerContext, should compose as a role.
21 Fix the module.
9de04be2 22
2105b371 23 - Update Test suite to not assume MyApp ISA Controller
24e6a237 24 - After that set up attr handlers that will output helpful error messages
25 when you do it as well as how to fix it. (done already?)
9de04be2 26
27 - Comments marked /Moose TODO/i in Catalyst::Request re {_body} (t0m)
28
02570318 29 - Eliminate all instances of $instance->{$key}, I think the only thing
30 left is lib/Catalyst/Engine/HTTP.pm: $self->{inputbuf}, which I haven't
9de04be2 31 touched as it is used as an lvalue in a lot of places (t0m)
32
33 - Find whatever in the test suite craps a file called GLOB(0xfoo) onto my
34 disk and fix it. (Believed to be in the optional tests?) (t0m)
35
36Documentation:
37
38 - extends in components must be inside a BEGIN block.
39
40 - How to write Moosified Catalyst components.
41
42 - Manual / Tutorial updates
43
44 - Fix the Roadmap to be less full of lies.
2105b371 45
9de04be2 46Profiling:
2105b371 47
9de04be2 48 - vs 5.70 and optimisation as needed.
49
50Back-compat investigation:
51
52 - Common engine test failures, look into and get tests into core.
53
54 - CatalystX-Imports, Class::MOP doesn't consider anon subs in the symbol
55 table as methods, tests + fix, or explanation and documentation?
56 (rafl & phaylon)
02570318 57
58 - Run another round of repository smokes against latest 5.80 trunk, manually
3fb903fd 59 go through all the things which are broken (t0m).
60
3fb903fd 61 - Issues with TWMC not being loaded when it used to be in 5.70
62 (Bill Moseley)
63
64 - Fix memory leaks (I already tried Devel::Leak::Object, but no joy).
65
9de04be2 66Tests:
3fb903fd 67
9de04be2 68 - Moosified test application?