[Catalyst-commits] r8507 - in
Catalyst-Authentication-Credential-OpenID: . 0.11
0.11/lib/Catalyst/Authentication/Credential
apv at dev.catalyst.perl.org
apv at dev.catalyst.perl.org
Sun Oct 5 08:47:51 BST 2008
Author: apv
Date: 2008-10-05 08:47:50 +0100 (Sun, 05 Oct 2008)
New Revision: 8507
Added:
Catalyst-Authentication-Credential-OpenID/0.11/
Modified:
Catalyst-Authentication-Credential-OpenID/0.11/Changes
Catalyst-Authentication-Credential-OpenID/0.11/Makefile.PL
Catalyst-Authentication-Credential-OpenID/0.11/lib/Catalyst/Authentication/Credential/OpenID.pm
Log:
This is 0.11 on CPAN.
Copied: Catalyst-Authentication-Credential-OpenID/0.11 (from rev 8506, Catalyst-Authentication-Credential-OpenID/0.10)
Modified: Catalyst-Authentication-Credential-OpenID/0.11/Changes
===================================================================
--- Catalyst-Authentication-Credential-OpenID/0.10/Changes 2008-10-04 21:23:31 UTC (rev 8506)
+++ Catalyst-Authentication-Credential-OpenID/0.11/Changes 2008-10-05 07:47:50 UTC (rev 8507)
@@ -1,5 +1,9 @@
Revision history for Catalyst::Authentication::Credential::OpenID
+0.11 Sun Oct 5 00:41:37 PDT 2008
+ - Added LWPx paranoid to build_requires.
+ - Put some experimental mdash entities into the Pod.
+
0.10 Thu Oct 2 19:13:42 PDT 2008
- Just twiddled the requirements calls in the Makefile. I can't
figure out why testers are failing it for prereqs it *is*
Modified: Catalyst-Authentication-Credential-OpenID/0.11/Makefile.PL
===================================================================
--- Catalyst-Authentication-Credential-OpenID/0.10/Makefile.PL 2008-10-04 21:23:31 UTC (rev 8506)
+++ Catalyst-Authentication-Credential-OpenID/0.11/Makefile.PL 2008-10-05 07:47:50 UTC (rev 8507)
@@ -8,21 +8,22 @@
requires "Class::Accessor::Fast" => undef;
requires "HTML::Parser" => "3";
requires "LWP::UserAgent" => undef;
+requires "Cache::FastMmap" => "1.28";
requires "Catalyst" => "5.7";
requires "Catalyst::Devel" => "1";
requires "Crypt::DH" => "0.05"; # IIRC OpenID stuff forgets to prereq this
requires "Net::OpenID::Consumer" => "0.14";
requires "Catalyst::Authentication::User::Hash" => undef;
-requires "Cache::FastMmap" => "1.28";
requires "Catalyst::Plugin::Session::Store::FastMmap" => "0.05";
requires "Catalyst::Plugin::Session::State::Cookie" => "0.08";
requires "Catalyst::Engine::HTTP" => undef;
recommends "Config::General" => "2";
recommends "YAML" => "0.6";
+recommends "Math::BigInt" => undef;
recommends "LWPx::ParanoidAgent" => "1.03";
-recommends "Math::BigInt" => undef;
+build_requires "LWPx::ParanoidAgent" => "1.03";
build_requires "Test::More" => "0.42";
build_requires "Net::OpenID::Server" => undef;
build_requires "Test::WWW::Mechanize" => "1.20";
Modified: Catalyst-Authentication-Credential-OpenID/0.11/lib/Catalyst/Authentication/Credential/OpenID.pm
===================================================================
--- Catalyst-Authentication-Credential-OpenID/0.10/lib/Catalyst/Authentication/Credential/OpenID.pm 2008-10-04 21:23:31 UTC (rev 8506)
+++ Catalyst-Authentication-Credential-OpenID/0.11/lib/Catalyst/Authentication/Credential/OpenID.pm 2008-10-05 07:47:50 UTC (rev 8507)
@@ -8,7 +8,7 @@
__PACKAGE__->mk_accessors(qw/ _config realm debug secret /);
}
-our $VERSION = "0.10";
+our $VERSION = "0.11";
use Net::OpenID::Consumer;
use Catalyst::Exception ();
@@ -128,7 +128,7 @@
=head1 VERSION
-0.10
+0.11
=head1 SYNOPSIS
@@ -191,10 +191,10 @@
=head1 DESCRIPTION
This is the B<third> OpenID related authentication piece for
-L<Catalyst>. The first -- L<Catalyst::Plugin::Authentication::OpenID>
-by Benjamin Trott -- was deprecated by the second --
+L<Catalyst>. The first E<mdash> L<Catalyst::Plugin::Authentication::OpenID>
+by Benjamin Trott E<mdash> was deprecated by the second E<mdash>
L<Catalyst::Plugin::Authentication::Credential::OpenID> by Tatsuhiko
-Miyagawa -- and this is an attempt to deprecate both by conforming to
+Miyagawa E<mdash> and this is an attempt to deprecate both by conforming to
the newish, at the time of this module's inception, realm-based
authentication in L<Catalyst::Plugin::Authentication>.
@@ -390,7 +390,7 @@
- 127.0.0.1
- localhost
-B<NB>: There is no OpenID store yet. Trying for next release.
+B<NB>: There is no OpenID store yet.
=head2 MORE ON CONFIGURATION
@@ -400,7 +400,7 @@
=item ua_args and ua_class
-L<LWPx::ParanoidAgent> is the default agent -- C<ua_class>. You don't
+L<LWPx::ParanoidAgent> is the default agent E<mdash> C<ua_class>. You don't
have to set it. I recommend that you do B<not> override it. You can
with any well behaved L<LWP::UserAgent>. You probably should not.
L<LWPx::ParanoidAgent> buys you many defenses and extra security
More information about the Catalyst-commits
mailing list