Skip to content

Commit

Permalink
Merge pull request #1831 from metacpan/haarg/pcc-pvc
Browse files Browse the repository at this point in the history
switch to Params::ValidationCompiler
  • Loading branch information
oalders committed Dec 8, 2016
2 parents 938be20 + 8983556 commit a3b9a72
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 20 deletions.
2 changes: 1 addition & 1 deletion cpanfile
Expand Up @@ -69,7 +69,7 @@ requires 'MooseX::Types::Moose';
requires 'MooseX::Types::URI', '0.08';
requires 'Net::Fastly', '1.05';
requires 'Path::Tiny', '0.076';
requires 'Params::CheckCompiler';
requires 'Params::ValidationCompiler';
requires 'Plack', '1.0039';
requires 'Plack::Middleware::ReverseProxy';
requires 'Plack::Middleware::Runtime';
Expand Down
34 changes: 17 additions & 17 deletions cpanfile.snapshot
Expand Up @@ -4074,23 +4074,6 @@ DISTRIBUTIONS
JSON 0
Test::More 0
Test::Warn 0
Params-CheckCompiler-0.07
pathname: D/DR/DROLSKY/Params-CheckCompiler-0.07.tar.gz
provides:
Params::CheckCompiler 0.07
Params::CheckCompiler::Compiler 0.07
Params::CheckCompiler::Exceptions 0.07
requirements:
Eval::Closure 0
Exception::Class 0
Exporter 0
ExtUtils::MakeMaker 0
List::SomeUtils 0
Scalar::Util 0
Sub::Name 0
overload 0
strict 0
warnings 0
Params-Util-1.07
pathname: A/AD/ADAMK/Params-Util-1.07.tar.gz
provides:
Expand Down Expand Up @@ -4121,6 +4104,23 @@ DISTRIBUTIONS
strict 0
vars 0
warnings 0
Params-ValidationCompiler-0.21
pathname: D/DR/DROLSKY/Params-ValidationCompiler-0.21.tar.gz
provides:
Params::ValidationCompiler 0.21
Params::ValidationCompiler::Compiler 0.21
Params::ValidationCompiler::Exceptions 0.21
requirements:
Carp 0
Eval::Closure 0
Exception::Class 0
Exporter 0
ExtUtils::MakeMaker 0
List::Util 1.29
Scalar::Util 0
overload 0
strict 0
warnings 0
Path-Class-0.36
pathname: K/KW/KWILLIAMS/Path-Class-0.36.tar.gz
provides:
Expand Down
4 changes: 2 additions & 2 deletions lib/MetaCPAN/Web/Controller/Feed.pm
Expand Up @@ -9,7 +9,7 @@ BEGIN { extends 'MetaCPAN::Web::Controller' }
use DateTime::Format::ISO8601 ();
use HTML::Escape qw/escape_html/;
use MetaCPAN::Web::Types qw( ArrayRef HashRef Str Uri );
use Params::CheckCompiler qw( validation_for );
use Params::ValidationCompiler qw( validation_for );
use Path::Tiny qw/path/;
use Text::Markdown qw/markdown/;
use XML::Feed ();
Expand Down Expand Up @@ -194,7 +194,7 @@ sub build_feed {
params => {
entries => { type => ArrayRef },
host => { type => Uri, optional => 0, },
title => Str,
title => { type => Str },
}
);

Expand Down

0 comments on commit a3b9a72

Please sign in to comment.