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