New version v0.13
Tomas Doran [Sun, 7 Jun 2009 16:33:53 +0000 (16:33 +0000)]
Changes
README
lib/Catalyst/Plugin/Authentication/Credential/HTTP.pm

diff --git a/Changes b/Changes
index e72e98a..463e409 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,3 +1,6 @@
+0.13 2009-07-07
+   - Fix tests to work with Catalyst 5.80004 and above.
+
 0.12 2008-09-11
    - Added deprecation notice to module.
 
diff --git a/README b/README
index 2f7d7db..e43b69a 100644 (file)
--- a/README
+++ b/README
@@ -1,6 +1,7 @@
 NAME
-    Catalyst::Plugin::Authentication::Credential::HTTP - HTTP Basic and
-    Digest authentication for Catalyst.
+    Catalyst::Plugin::Authentication::Credential::HTTP - Superseded /
+    deprecated module providing HTTP Basic and Digest authentication for
+    Catalyst applications.
 
 SYNOPSIS
         use Catalyst qw/
@@ -34,6 +35,19 @@ SYNOPSIS
             $c->error(0);
         }
 
+DEPRECATION NOTICE
+    Please note that this module is DEPRECATED, it has been Superseded by
+    Catalyst::Authentication::Credential::HTTP, please use that module in
+    any new projects.
+
+    Porting existing projects to use the new module should also be easy, and
+    if there are any facilities in this module which you cannot see how to
+    achieve in the new module then *please contact the maintainer* as this
+    is a bug and *will be fixed*.
+
+    Let me say that again: THIS MODULE IS NOT SUPPORTED, use
+    Catalyst::Authentication::Credential::HTTP instead.
+
 DESCRIPTION
     This moduule lets you use HTTP authentication with
     Catalyst::Plugin::Authentication. Both basic and digest authentication
@@ -96,6 +110,8 @@ METHODS
         You may override these methods. By default they will call "get" and
         "set" on "$c->cache".
 
+    get_http_auth_store %opts
+
 CONFIGURATION
     All configuration is stored in
     "YourApp->config->{authentication}{http}".
index e944ec0..5ba5e74 100644 (file)
@@ -11,7 +11,7 @@ use URI::Escape    ();
 use Catalyst       ();
 use Digest::MD5    ();
 
-our $VERSION = "0.12";
+our $VERSION = "0.13";
 
 sub authenticate_http {
     my ( $c, @args ) = @_;