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