Fix bug, patch from Anthony Gladdish on mailing list
[catagits/Catalyst-Authentication-Store-DBIx-Class.git] / Changes
1 Revision history for Catalyst-Plugin-Authentication-Store-DBIx-Class
2
3 0.1401  2010-11-16
4         * Fix call to ->load which was not passing $c
5
6 0.1400  2010-09-01
7         * Make can() work as well as AUTOLOADing.
8
9 0.1300  2010-06-16
10         * Support columns with accessors that aren't the column name.
11         * Fix some documentation typos.
12         * Stop failing horribly when running the tests in parallel.
13         * Default to not running pod tests for users, even if the
14           required modules for that are available.
15
16 0.1200  2010-04-10
17         Release 0.1100 as a stable version without further modifications.
18
19 0.1100  2010-03-29 - development release
20         Support compound primary keys for looking up users.
21
22 0.1083  2010-03-03
23         Tweaking exception message to better explain what people did wrong when
24             they pass bad columns to authenticate.
25
26 0.1082  2008-10-27
27         Documentation tweak to clarify user_class, store_user_class etc.
28
29 0.108   2008-09-25
30         Adding SimpleDB realm to simplify basic auth configuration
31         Changing user_class to user_model, per req. by mst to avoid confusing newbies.
32
33 0.107   2008-09-29
34         Fix the typo in exception during authenticate
35         Doc fixes and clarifications
36         Added missing dependency on Catalyst::Model::DBIC::Schema to Makefile.PL
37
38
39 0.105   2008-03-19
40         Throw an exception if no fields are provided during authenticate
41            - better than retrieving a random user.
42            - still possible to do an empty search by using searchargs
43
44 0.104   2008-02-15
45         Added ability to avoid DB hits when restoring from session
46
47 0.103   2008-02-07
48         Added missing DBIx::Class dependancy in Makefile.PL so
49         that the damn test bots stop emailing me.
50
51 0.102   2008-01-23
52         Catalyst::Authentication::Store::DBIx::Class::User
53           - Explicitly call auto_create() against resultset()
54           - Explicitly call auto_update() against _user()
55           - Document the above
56
57 0.101   2007-12-02
58         Implemented basic auto_update_user and auto_create_user support
59
60 0.10    2007-07-07 3pm CST
61         Proper handling of missing id_field config (load from primary_key)
62         Throw exception if id_field specified does not exist
63         Full test suite added.  (based loosely on old DBIC store)
64
65 0.03    XXX
66         Switch to Module::Install
67
68 0.02    2006-12-16 2pm CST
69         Rewritten to use proper accessors and clean up to match updated C::P::Authentication class naming
70
71 0.01    2006-11-10
72         First version, worked internally, completely undocumented