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