Make error more useful
[catagits/Catalyst-Plugin-Authentication.git] / Changes
1 Revision history for Perl extension Catalyst::Plugin::Authentication
2
3       - Die with a useful error message if we are about to try to restore
4         a user from a realm which does not exist. (t0m)
5
6 0.10012 Sat Jun  6 10:58:43 BST 2009
7       - Add Catalyst::Authentication::Credential::Remote which authenticates you
8         directly from environment variables passed by your web server. This
9         allows the use of SSL client certificates, NTLM, or just basic/digest
10         auth done at the web server level to be used to authenticate users
11         to your Catalyst application (kmx)
12         - Tests for this
13       - Change ->config invocations to be best practices (t0m)
14       - Note about session auto-vification even when use_session is set
15         to false (robert).
16       - Note about how a realms key used to be needed to unconfuse people
17         running an old version, but browsing the docs on search.cpan (ruoso)
18
19 0.10011 Sun Mar  8 23:32:12 GMT 2009
20       - Update t/live_app_session.t to skip unless you have a newer, more
21         reliable version of TWMC (RT#43817)
22       - Change check for isa Catalyst::Plugin::Session to just check the
23         existance of a session method. (Edmund von der Burg)
24
25 0.10010
26       - Change from NEXT to MRO::Compat
27       - Chop a number off the versions to get back to the correct 0.10000
28         version scheme.
29
30 0.100092_01
31       - Add hook for failing user restore.
32         - Add test for this.
33       - Fix bug in Credential::Password with password_type: clear.
34         - Add test for this.
35       - Add mock object tests for Credential::Password with password_type: 
36         clear.
37
38 0.100092
39       - Release new version, no changes since dev release.     
40
41 0.10009_01
42       - Fix POD escaping, from RT#38694 (Luke Ross)
43       - Change authentication backwards compatibility handling to not rely on
44         Class::Data::Inheritable side effects, and so be Catalyst 5.80 safe 
45         (t0m)
46
47 0.10009 2008-11-27
48         - Including progressive realm for multiple authentication attempts
49           in a single request.
50
51 0.10008 2008-10-23
52                 - Updating config to allow for inclusion of realm ref's in the main
53                   config hash rather than in a subref called 'realms'
54
55 0.10007 2008-08-17
56         - Update tests prereqs to include Test::Exception (RT #36339)
57         - Some documentation fixes (including RT #36062)
58         - Compatibility fix where the use of new style config and old
59           style Authentication::Store::Minimal would cause a crash 
60           (Reported & fixed by Jos Boumans C<kane@cpan.org>)
61         - Documentation update on Password - to indicate proper field naming
62         - Decouple Authentication system from session.  The realm class
63           now allows complete control over how a user is persisted across
64           requests.
65         - pod fixes (RT #36062, RT #36063)
66
67 0.10006 2008-02-15
68         - Additional documentation for Realms
69         - Added update_user_in_session routine to allow re-saving of user data
70           into the session.
71
72 0.10005 2008-01-24
73         - Bugfix release - correcting 'Plugin::Authentication' configuration
74           problem.
75
76 0.10004 2007-12-04
77         - Added some code for back-compatibility
78
79 0.10003 2007-12-02
80         - Added a "Null" store for credentials that don't require real stores.
81         - Make realms bonafide objects
82         - Added auto_update_user and auto_create_user options to the Realm object
83         - Doc updates
84
85         [POSSIBLE INCOMPATIBILITIES]
86         - authenticate() in credentials are now passed a realm object instead of
87           a store object. A realm object still implements find_user() so unless
88           you're doing something special you won't notice the difference.
89
90 0.10002 2007-07-22
91         - $user->store() should NOT be set by C::P::Auth - if it's needed - it
92           should be set by whatever module creates the user. We use realm for
93           saving into the session.
94
95 0.10001 2007-07-17
96         - updated tests
97
98 0.10000 2007-07-11
99         - Minor updates to work better with compatibility mode
100         - Producion release
101         - switch to Module::Install
102
103 0.09999_01 2007-02-21
104         - major changes to the internals of the plugin, to better encapsulate
105           credentials and stores.
106         - introduction of 'realms' concept, allowing multiple different
107           pairs of credential and store in a single application.
108
109 0.09    2006-08-01
110         - be a bit more pedantic about checking values for definedness before
111           invoking methods on them
112
113 0.08    2006-07-29
114         - factor test applications out to files due to changes in Catalyst::Test
115         - don't load session at prepare time unless necessary
116
117 0.07    2006-03-17 17:33:12
118         - allow base64 hashed passwords
119
120 0.06    2006-03-14 19:23:50
121         - pass extra get_user args to store so they can be made use of
122
123 0.05    2006-01-01 13:58:00
124         - Add debugging to Credential::Password
125         - Important doc fixes
126
127 0.04
128         - With User::Hash and Store::Minimal together session will store
129           userid, not actual user object
130
131 0.03    2005-12-03 18:00:00
132         - Added user_exists method.
133
134 0.02    2005-11-29 11:39:00
135                 - Fixed a typo (PLugin instead of Plugin) that caused user objects
136                   to not be restored from the session properly. Modified test suite
137                   to actually test for this case.
138
139 0.01    2005-11-27 02:30:00
140         - Initial release.