Yet another 5.80 regression
[catagits/Catalyst-Runtime.git] / TODO
CommitLineData
9de04be2 1Pending patches:
3fb903fd 2 - meta test for MX::Emulate::CAF needed by Catalyst::Plugin::Cache::Curried
083ee5d9 3
4 - Class::Accessor::Chained::Fast test for MX::Emulate::CAF, to fix
5 HTML::Widget
6
7 - Re-opening packages with MX::Emulate::CAF (for
8 Catalyst::Plugin::HashedCookies)
9
fb9f65db 10Back-compat investigation / known issues:
8a440eba 11
b1e0cb6d 12 - Catalyst::Plugin::Server is still buggered in various ways..
13 - Fix TODO tests in t/aggregate/live_engine_request_body.t
14
8a440eba 15 - Common engine test failures, look into and get tests into core.
16
17 - CatalystX-Imports, Class::MOP doesn't consider anon subs in the symbol
18 table as methods, tests + fix, or explanation and documentation?
19 (rafl & phaylon)
20
21 - Run another round of repository smokes against latest 5.80 trunk, manually
22 go through all the things which are broken (t0m).
fb9f65db 23
fb9f65db 24 - Catalyst-Plugin-Cache dies due to mk_accessors('meta')
25
26 - Catalyst-Action-REST appears to have real issues, investigate
27
28 - Catalyst-Model-Search ditto
29
30 - CatalystX-CRUD ditto
31
32 - Catalyst-Engine-Apache - Deep recursion on subroutine
33 "Catalyst::Action::execute", investigate once all other tests pass
34
35 - Catalyst-Plugin-Scheduler
36 - Catalyst-Engine-HTTPEngine
37 - Catalyst-View-HTML-Template
38 - Catalyst-View-XSLT
39 - Catalyst-Plugin-Setenv
40 - Catalyst-Plugin-RequireSSL - Bullshit 'cannot locate' errors
41 Bug in smoke test rig.
8a440eba 42
43 - Issues with TWMC not being loaded when it used to be in 5.70
44 (Bill Moseley)
45
46 - Fix memory leaks (I already tried Devel::Leak::Object, but no joy).
9de04be2 47
fb9f65db 48 - In 5.70, you can have a component which doesn't inherit from ::Component,
49 and has no new method, and it'll do the right thing for you. We just
50 ignore that, we should still support that, but warn for/deprecate it so
51 it can go for 5.9X...
52 This all obviously needs better tests :/
53
9de04be2 54Cleanups:
55
24e6a237 56 - Catalyst-Plugin-Authorization-ACL, Can't locate object method "tree"
57 via package "Catalyst::Dispatcher", fix the plugin as tree was never
58 a public method.
2105b371 59
24e6a237 60 - Catalyst-Model-Akismet, incorrectly inherits from
61 Catalyst::Component::InstancePerContext, should compose as a role.
62 Fix the module.
9de04be2 63
2105b371 64 - Update Test suite to not assume MyApp ISA Controller
24e6a237 65 - After that set up attr handlers that will output helpful error messages
66 when you do it as well as how to fix it. (done already?)
9de04be2 67
68 - Comments marked /Moose TODO/i in Catalyst::Request re {_body} (t0m)
69
02570318 70 - Eliminate all instances of $instance->{$key}, I think the only thing
71 left is lib/Catalyst/Engine/HTTP.pm: $self->{inputbuf}, which I haven't
9de04be2 72 touched as it is used as an lvalue in a lot of places (t0m)
73
74 - Find whatever in the test suite craps a file called GLOB(0xfoo) onto my
75 disk and fix it. (Believed to be in the optional tests?) (t0m)
76
77Documentation:
78
79 - extends in components must be inside a BEGIN block.
80
81 - How to write Moosified Catalyst components.
82
83 - Manual / Tutorial updates
84
85 - Fix the Roadmap to be less full of lies.
2105b371 86
9de04be2 87Profiling:
2105b371 88
9de04be2 89 - vs 5.70 and optimisation as needed.
90
9de04be2 91Tests:
3fb903fd 92
9de04be2 93 - Moosified test application?