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