Make error more useful
[catagits/Catalyst-Plugin-Authentication.git] / Changes
CommitLineData
51111c81 1Revision history for Perl extension Catalyst::Plugin::Authentication
2
e538cfdc 3 - Die with a useful error message if we are about to try to restore
4 a user from a realm which does not exist. (t0m)
5
1c09a42c 60.10012 Sat Jun 6 10:58:43 BST 2009
7 - Add Catalyst::Authentication::Credential::Remote which authenticates you
8 directly from environment variables passed by your web server. This
9 allows the use of SSL client certificates, NTLM, or just basic/digest
10 auth done at the web server level to be used to authenticate users
11 to your Catalyst application (kmx)
12 - Tests for this
13 - Change ->config invocations to be best practices (t0m)
fd89b7af 14 - Note about session auto-vification even when use_session is set
15 to false (robert).
1a25f831 16 - Note about how a realms key used to be needed to unconfuse people
17 running an old version, but browsing the docs on search.cpan (ruoso)
18
94087d51 190.10011 Sun Mar 8 23:32:12 GMT 2009
26a7222c 20 - Update t/live_app_session.t to skip unless you have a newer, more
21 reliable version of TWMC (RT#43817)
385a82f9 22 - Change check for isa Catalyst::Plugin::Session to just check the
23 existance of a session method. (Edmund von der Burg)
26a7222c 24
87a5427f 250.10010
26 - Change from NEXT to MRO::Compat
26a7222c 27 - Chop a number off the versions to get back to the correct 0.10000
87a5427f 28 version scheme.
29
841ea891 300.100092_01
47deaea0 31 - Add hook for failing user restore.
2fb8865d 32 - Add test for this.
007228c1 33 - Fix bug in Credential::Password with password_type: clear.
34 - Add test for this.
35 - Add mock object tests for Credential::Password with password_type:
36 clear.
37
ff43bbb2 380.100092
39 - Release new version, no changes since dev release.
40
4ef63c94 410.10009_01
d6b7fb02 42 - Fix POD escaping, from RT#38694 (Luke Ross)
43 - Change authentication backwards compatibility handling to not rely on
ff43bbb2 44 Class::Data::Inheritable side effects, and so be Catalyst 5.80 safe
45 (t0m)
d6b7fb02 46
2c8686a1 470.10009 2008-11-27
48 - Including progressive realm for multiple authentication attempts
49 in a single request.
50
510.10008 2008-10-23
928722c0 52 - Updating config to allow for inclusion of realm ref's in the main
53 config hash rather than in a subref called 'realms'
d0599b6d 54
928722c0 550.10007 2008-08-17
56 - Update tests prereqs to include Test::Exception (RT #36339)
bd7b00a4 57 - Some documentation fixes (including RT #36062)
58 - Compatibility fix where the use of new style config and old
59 style Authentication::Store::Minimal would cause a crash
60 (Reported & fixed by Jos Boumans C<kane@cpan.org>)
71486cb0 61 - Documentation update on Password - to indicate proper field naming
62 - Decouple Authentication system from session. The realm class
63 now allows complete control over how a user is persisted across
64 requests.
e386a76d 65 - pod fixes (RT #36062, RT #36063)
71486cb0 66
670.10006 2008-02-15
68 - Additional documentation for Realms
69 - Added update_user_in_session routine to allow re-saving of user data
70 into the session.
71
720.10005 2008-01-24
73 - Bugfix release - correcting 'Plugin::Authentication' configuration
74 problem.
75
1bd67563 760.10004 2007-12-04
77 - Added some code for back-compatibility
78
187e2b5d 790.10003 2007-12-02
ff93b7a4 80 - Added a "Null" store for credentials that don't require real stores.
2c7d23af 81 - Make realms bonafide objects
9b840849 82 - Added auto_update_user and auto_create_user options to the Realm object
d2ca09b8 83 - Doc updates
84
85 [POSSIBLE INCOMPATIBILITIES]
86 - authenticate() in credentials are now passed a realm object instead of
87 a store object. A realm object still implements find_user() so unless
88 you're doing something special you won't notice the difference.
ff93b7a4 89
24c44124 900.10002 2007-07-22
91 - $user->store() should NOT be set by C::P::Auth - if it's needed - it
92 should be set by whatever module creates the user. We use realm for
93 saving into the session.
94
950.10001 2007-07-17
96 - updated tests
97
454780f9 980.10000 2007-07-11
99 - Minor updates to work better with compatibility mode
100 - Producion release
1af16f71 101 - switch to Module::Install
102
1030.09999_01 2007-02-21
8655b8a5 104 - major changes to the internals of the plugin, to better encapsulate
105 credentials and stores.
106 - introduction of 'realms' concept, allowing multiple different
107 pairs of credential and store in a single application.
c9b72c5b 108
1af16f71 1090.09 2006-08-01
9583def5 110 - be a bit more pedantic about checking values for definedness before
111 invoking methods on them
112
1af16f71 1130.08 2006-07-29
b42497b3 114 - factor test applications out to files due to changes in Catalyst::Test
ee76cbfe 115 - don't load session at prepare time unless necessary
b42497b3 116
24d591ac 1170.07 2006-03-17 17:33:12
9b9c451e 118 - allow base64 hashed passwords
119
24d591ac 1200.06 2006-03-14 19:23:50
d9b7728f 121 - pass extra get_user args to store so they can be made use of
122
24d591ac 1230.05 2006-01-01 13:58:00
bcbde06d 124 - Add debugging to Credential::Password
125 - Important doc fixes
126
df0b952b 1270.04
128 - With User::Hash and Store::Minimal together session will store
129 userid, not actual user object
130
51111c81 1310.03 2005-12-03 18:00:00
132 - Added user_exists method.
133
1340.02 2005-11-29 11:39:00
f7f9859a 135 - Fixed a typo (PLugin instead of Plugin) that caused user objects
136 to not be restored from the session properly. Modified test suite
137 to actually test for this case.
138
51111c81 1390.01 2005-11-27 02:30:00
140 - Initial release.