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