Checking in changes prior to tagging of version 1.004. Changelog diff is:
[catagits/Catalyst-Authentication-Credential-HTTP.git] / Changes
1 1.004  2008-09-12
2    - Add tests for use_uri_for configuration options.
3    - Add tests and documentation for storing an MD5
4      of "$user:$relam:$password" instead of cleartext password
5      when doing digest auth.
6
7 1.003  2008-09-11
8    - Add ability to override the realm name presented for authentication
9      when calling $c->authenticate. Documentation and tests for this.
10    - Clean up documentation of options inherited from 
11      Catalyst::Authentication::Credential::Password.
12    - Added an example of calling methods in the credential module from a 
13      controller to the POD.
14    - Tests for the authorization_required_message configuration parameter. 
15    - Document use_uri_for configuration option
16    - Document domain option (passed through from $c->authenticate) and add 
17      tests for this option.
18
19 1.002  2008-09-03
20    - Fix the assumptions that the password field is named password when doing 
21      digest auth.
22
23 1.001  2008-09-02
24    - Fix some of the assumptions about the user class by inheriting from the
25      Catalyst::Authentication::Credential::Password module. This should make
26      using DBIC as a store work correctly for basic auth.
27    - Updated synopsis and todo list, this module still needs some work before
28      it's ready for prime time again..
29
30 1.000  2008-09-01
31    - Rename to remove Plugin from namespace. This is a pretty breaking change,
32      as lots of things work differently with the new auth refactor.
33    - Pull out some functionality which I think is better in other 
34      modules (realms/stores). With the auth refactor, this module didn't need
35      to do so much. If anyone misses any of the functionality, please yell at
36      me and I'll put it back.
37
38 0.11  2008-07-12
39     - Changed cache modules used in the tests to not be deprecated.
40     - Fix RT#31036, and comply with RFC2617 Section 1.2.
41
42 0.10  2007-04-26
43     - switch to Module::Install
44
45 0.09  2006-12-31
46     - clean up tests
47     - clean up docs
48     - add body to 401 status
49
50 0.08  2006-10-12
51     - Fix basic test when using Test::MockObject 1.07 (die if using undefined
52       interfaces)
53
54 0.07  2006-09-12
55     - Applied Ton Voon's patch that fixed option propagation for basic auth.
56
57 0.06  2006-09-07
58     - Refactored internals into smaller methods