We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When create next config:
meta_merge => { resources => { bugtracker => 'url', }}
and run ./Build.PL the warning is not issued about url is not valid. and this field silently missed at MYMETA.json.
./Build.PL
MYMETA.json
The text was updated successfully, but these errors were encountered:
This is probably a Module::Build problem, not CPAN::Meta. CPAN::Meta has proper validation on that field:
https://metacpan.org/source/DAGOLDEN/CPAN-Meta-2.150010/lib/CPAN/Meta/Validator.pm#L151
Sorry, something went wrong.
Ok. That is probably due to this issue
Module::Build uses CPAN::Meta::Converter via CPAN::Meta::Merge. As this fragment shows:
Module::Build
CPAN::Meta::Converter
CPAN::Meta::Merge
use CPAN::Meta::Converter; use Data::Dumper; my $c = CPAN::Meta::Converter->new({ resources => { bugtracker => 'url' } }); print Dumper($c->upgrade_fragment(version => 2));
The observed behavior follows out of CPAN::Meta::Converters behavior.
No branches or pull requests
When create next config:
and run
./Build.PL
the warning is not issued about url is not valid. and this field silently missed atMYMETA.json
.The text was updated successfully, but these errors were encountered: