Make mech tests skip unless mech new enough. RT#55303
[catagits/Catalyst-Authentication-Credential-HTTP.git] / Changes
CommitLineData
3aff571e 1 - Skip WWW::Mech tests unless WWW::Mech is a new enough version (RT#55303).
2
bd020dd7 31.012 2010-03-07
4 - Move actions out of the test applications to stop warnings.
5
ac0351e1 6 - Make Pod tests author only.
7
9c02f7aa 81.011 2009-06-26
9 - Added true/false check to _debug option
de3a252c 10
111.010 2009-05-14
12 - Moved tests out to t/lib/ (dhoss)
13
8f5d966b 14 - Add debug when a user is found, but passwords don't match (abraxxa)
15
afe44be8 161.009 2009-01-04
8f5d966b 17 - Remove use of _config accessor, which I'd stupidly cargo-culted.
18 As we don't ever run in auth back-compat mode, we can store
afe44be8 19 everything in instance data without worrying about conflicts.
20 Note however - have to keep the accessor itself so that our
21 parent class (which is still stupid and uses it) continues to work.
22
b5402c9e 231.008 2008-12-10
8f5d966b 24 - Fix issue with the user not being authenticated into the correct
b5402c9e 25 realm, by not calling $c->set_authenticated ourselves, but instead
26 just returning the user object. Fix suggested by Bernhard Graf. (t0m)
27 - Add test for this (t0m)
28 - Change $user to $user_obj in authenticate_digest for consistency (t0m)
29
2dad9ca6 301.007 2008-11-19
31 - Add test for query strings in digest auth as digest header is built using
32 the full URI (t0m)
33 - Fix for this (Peter Corlett)
34 - Fix warning when used with self_check => 1 (t0m)
35 - Added respository info to META.yml (t0m)
e8cb49b7 36
a50635bf 371.006 2008-10-06
38 - Added username_field configuration option. I need this to play
39 nice with Catalyst::Authentication::Store::Tangram.
2101d025 40 - Doc cleanups / clarifications related to RT#39838
a50635bf 41
6cd8c8c7 421.005 2008-09-25
ea92acf7 43 - Added better description of the use of the domains and
44 use_uri_for options (info culled from RFC2617).
6cd8c8c7 45 - Split init method out to make this module easier to sub-class
46 (used by Catalyst::Authentication::HTTP::Proxy).
ea92acf7 47
c5a1fa88 481.004 2008-09-12
49 - Add tests for use_uri_for configuration options.
50 - Add tests and documentation for storing an MD5
51 of "$user:$relam:$password" instead of cleartext password
52 when doing digest auth.
53
f1f73b53 541.003 2008-09-11
bf399285 55 - Add ability to override the realm name presented for authentication
05512a69 56 when calling $c->authenticate. Documentation and tests for this.
bf399285 57 - Clean up documentation of options inherited from
05512a69 58 Catalyst::Authentication::Credential::Password.
031f556c 59 - Added an example of calling methods in the credential module from a
60 controller to the POD.
05512a69 61 - Tests for the authorization_required_message configuration parameter.
62 - Document use_uri_for configuration option
f1f73b53 63 - Document domain option (passed through from $c->authenticate) and add
64 tests for this option.
bf399285 65
490754a8 661.002 2008-09-03
67 - Fix the assumptions that the password field is named password when doing
68 digest auth.
69
701.001 2008-09-02
71 - Fix some of the assumptions about the user class by inheriting from the
72 Catalyst::Authentication::Credential::Password module. This should make
73 using DBIC as a store work correctly for basic auth.
74 - Updated synopsis and todo list, this module still needs some work before
75 it's ready for prime time again..
76
771.000 2008-09-01
513d8ab6 78 - Rename to remove Plugin from namespace. This is a pretty breaking change,
79 as lots of things work differently with the new auth refactor.
80 - Pull out some functionality which I think is better in other
81 modules (realms/stores). With the auth refactor, this module didn't need
82 to do so much. If anyone misses any of the functionality, please yell at
83 me and I'll put it back.
84
850.11 2008-07-12
5b51e987 86 - Changed cache modules used in the tests to not be deprecated.
6afc3665 87 - Fix RT#31036, and comply with RFC2617 Section 1.2.
5b51e987 88
826670f9 890.10 2007-04-26
90 - switch to Module::Install
91
920.09 2006-12-31
93 - clean up tests
94 - clean up docs
95 - add body to 401 status
96
970.08 2006-10-12
2d4d6aac 98 - Fix basic test when using Test::MockObject 1.07 (die if using undefined
99 interfaces)
4e8cbd42 100
826670f9 1010.07 2006-09-12
e9684b75 102 - Applied Ton Voon's patch that fixed option propagation for basic auth.
103
826670f9 1040.06 2006-09-07
e9684b75 105 - Refactored internals into smaller methods