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