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