Make auth configuration in the synopis actually work by including a default_realm...
[catagits/Catalyst-Authentication-Credential-HTTP.git] / Changes
CommitLineData
a50635bf 11.006 2008-10-06
2 - Added username_field configuration option. I need this to play
3 nice with Catalyst::Authentication::Store::Tangram.
4
6cd8c8c7 51.005 2008-09-25
ea92acf7 6 - Added better description of the use of the domains and
7 use_uri_for options (info culled from RFC2617).
6cd8c8c7 8 - Split init method out to make this module easier to sub-class
9 (used by Catalyst::Authentication::HTTP::Proxy).
ea92acf7 10
c5a1fa88 111.004 2008-09-12
12 - Add tests for use_uri_for configuration options.
13 - Add tests and documentation for storing an MD5
14 of "$user:$relam:$password" instead of cleartext password
15 when doing digest auth.
16
f1f73b53 171.003 2008-09-11
bf399285 18 - Add ability to override the realm name presented for authentication
05512a69 19 when calling $c->authenticate. Documentation and tests for this.
bf399285 20 - Clean up documentation of options inherited from
05512a69 21 Catalyst::Authentication::Credential::Password.
031f556c 22 - Added an example of calling methods in the credential module from a
23 controller to the POD.
05512a69 24 - Tests for the authorization_required_message configuration parameter.
25 - Document use_uri_for configuration option
f1f73b53 26 - Document domain option (passed through from $c->authenticate) and add
27 tests for this option.
bf399285 28
490754a8 291.002 2008-09-03
30 - Fix the assumptions that the password field is named password when doing
31 digest auth.
32
331.001 2008-09-02
34 - Fix some of the assumptions about the user class by inheriting from the
35 Catalyst::Authentication::Credential::Password module. This should make
36 using DBIC as a store work correctly for basic auth.
37 - Updated synopsis and todo list, this module still needs some work before
38 it's ready for prime time again..
39
401.000 2008-09-01
513d8ab6 41 - Rename to remove Plugin from namespace. This is a pretty breaking change,
42 as lots of things work differently with the new auth refactor.
43 - Pull out some functionality which I think is better in other
44 modules (realms/stores). With the auth refactor, this module didn't need
45 to do so much. If anyone misses any of the functionality, please yell at
46 me and I'll put it back.
47
480.11 2008-07-12
5b51e987 49 - Changed cache modules used in the tests to not be deprecated.
6afc3665 50 - Fix RT#31036, and comply with RFC2617 Section 1.2.
5b51e987 51
826670f9 520.10 2007-04-26
53 - switch to Module::Install
54
550.09 2006-12-31
56 - clean up tests
57 - clean up docs
58 - add body to 401 status
59
600.08 2006-10-12
2d4d6aac 61 - Fix basic test when using Test::MockObject 1.07 (die if using undefined
62 interfaces)
4e8cbd42 63
826670f9 640.07 2006-09-12
e9684b75 65 - Applied Ton Voon's patch that fixed option propagation for basic auth.
66
826670f9 670.06 2006-09-07
e9684b75 68 - Refactored internals into smaller methods