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