Skip Menu |

This queue is for tickets about the Dist-Zilla-Plugin-PromptIfStale CPAN distribution.

Report information
The Basics
Id: 100019
Status: rejected
Priority: 0/
Queue: Dist-Zilla-Plugin-PromptIfStale

People
Owner: ether [...] cpan.org
Requestors: dagolden [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: 0.028
Fixed in: (no value)



Module missing in diagnostics: [@DAGOLDEN/PromptIfStale] checking for stale modules... < at version 1.006 but you only have 1.004 installed. Continue anyway? [y/N]: n [@DAGOLDEN/PromptIfStale] Aborting release [@DAGOLDEN/PromptIfStale] To remedy, do: cpanm Dist::Zilla::Plugin::MinimumPerl [@DAGOLDEN/PromptIfStale] Aborting release [@DAGOLDEN/PromptIfStale] To remedy, do: cpanm Dist::Zilla::Plugin::MinimumPerl at /Users/david/.plenv/versions/20.0/lib/perl5/site_perl/5.20.0/darwin-2level/Moose/Meta/Method/Delegation.pm line 112.
On 2014-11-04 03:52:31, DAGOLDEN wrote: Show quoted text
> Module missing in diagnostics: > > [@DAGOLDEN/PromptIfStale] checking for stale modules... > < > at version 1.006 but you only have 1.004 installed. Continue anyway? > [y/N]: n
Are you really really sure this couldn't have been a terminal issue? The only uses of the string "at version" are here: https://github.com/karenetheridge/Dist-Zilla-Plugin-PromptIfStale/blob/master/lib/Dist/Zilla/Plugin/PromptIfStale.pm#L199 and here: https://github.com/karenetheridge/Dist-Zilla-Plugin-PromptIfStale/blob/master/lib/Dist/Zilla/Plugin/PromptIfStale.pm#L207 and they are both prefaced with "is indexed". I don't see how what you report could have happened...
Weird. Or possibly something in the log_debug ate it? In any case, I'll close this, as I agree there's nothing you can do about it.
For anyone else who might find this issue, this script reproduces the issue as well: use strict; use warnings; use Dist::Zilla; use Dist::Zilla::Chrome::Term; my $zilla = Dist::Zilla->new( chrome => Dist::Zilla::Chrome::Term->new, root => '.', ); my $continue = $zilla->chrome->prompt_yn( 'This is a test. this is only a test. Dist::Zilla::Plugin::Covenant is indexed at version v0.1.1 but you only have 0.1.0 installed. Continue anyway?', { default => 0 }, ); ... so it seems to be something in one of the Term::* modules.