Message body not shown because it is not plain text.
Sat Jun 14 04:41:42 2014haarg [...] haarg.org - Correspondence added
The problem here was that App::Sqitch uses Mouse, so 0.16 and 0.17 were trying to use Mouse's meta class to determine what needed to be cleaned. Previous versions used a Moose meta class, even for Mouse classes. Mouse's metaclass provides inaccurate information for the method list, so the color sub wasn't getting cleaned.
My fix, at https://github.com/moose/namespace-autoclean/pull/4, is to just use the fallback heuristic instead of Mouse's metaclass. This should behave the same as the previous version that used Moose.
Sun Jun 15 12:28:14 2014ether [...] cpan.org - Correspondence added
On 2014-06-14 01:41:42, haarg wrote:
Show quoted text
> The problem here was that App::Sqitch uses Mouse, so 0.16 and 0.17
> were trying to use Mouse's meta class to determine what needed to be
> cleaned. Previous versions used a Moose meta class, even for Mouse
> classes. Mouse's metaclass provides inaccurate information for the
> method list, so the color sub wasn't getting cleaned.
>
> My fix, at https://github.com/moose/namespace-autoclean/pull/4, is to
> just use the fallback heuristic instead of Mouse's metaclass. This
> should behave the same as the previous version that used Moose.
I released 0.18 yesterday with this fix.
Mon Jun 30 12:55:07 2014ether [...] cpan.org - Taken
Mon Jun 30 12:55:19 2014ether [...] cpan.org - Status changed from 'open' to 'resolved'
Mon Jun 30 12:55:19 2014ether [...] cpan.org - Fixed in 0.18 added