Fix RT#82944
[catagits/Catalyst-Authentication-Store-DBIx-Class.git] / Changes
1 Revision history for Catalyst-Plugin-Authentication-Store-DBIx-Class
2
3        * Fix RT#82944 - test fails on perl >= 5.17.3
4
5        * Return undef if there isn't a user. This will cause an exception
6           but a more helpful exception (probably from DBIC) than the inability
7           to call a method in this code.
8
9 0.1504  2012-10-05
10         * Make use_userdata_from_session use inflate_result since this is
11           already-stored data, not a "new" object being created
12
13 0.1503  2011-12-08
14         * Change docs to show $c->config('Plugin::Authentication' => {...
15           rather than $c->config->{authentication}. The new key, and method
16           rather than hash access style are both preferred and recommended.
17
18 0.1502  2011-08-24
19         * Switch repository to git (fREW Schmidt)
20
21 0.1501  2011-06-17
22         * If use_userdata_from_session isn't set, then don't store more
23           fields than we need in the session -- only the fields we need to
24           load the object from the DB again.
25
26 0.1500  2010-11-16
27         * Allow specifying a fully loaded DBIC result in addition to resultsets
28           of which only the first row is considered.
29
30 0.1401  2010-11-16
31         * Fix call to ->load which was not passing $c
32
33 0.1400  2010-09-01
34         * Make can() work as well as AUTOLOADing.
35
36 0.1300  2010-06-16
37         * Support columns with accessors that aren't the column name.
38         * Fix some documentation typos.
39         * Stop failing horribly when running the tests in parallel.
40         * Default to not running pod tests for users, even if the
41           required modules for that are available.
42
43 0.1200  2010-04-10
44         Release 0.1100 as a stable version without further modifications.
45
46 0.1100  2010-03-29 - development release
47         Support compound primary keys for looking up users.
48
49 0.1083  2010-03-03
50         Tweaking exception message to better explain what people did wrong when
51             they pass bad columns to authenticate.
52
53 0.1082  2008-10-27
54         Documentation tweak to clarify user_class, store_user_class etc.
55
56 0.108   2008-09-25
57         Adding SimpleDB realm to simplify basic auth configuration
58         Changing user_class to user_model, per req. by mst to avoid confusing newbies.
59
60 0.107   2008-09-29
61         Fix the typo in exception during authenticate
62         Doc fixes and clarifications
63         Added missing dependency on Catalyst::Model::DBIC::Schema to Makefile.PL
64
65
66 0.105   2008-03-19
67         Throw an exception if no fields are provided during authenticate
68            - better than retrieving a random user.
69            - still possible to do an empty search by using searchargs
70
71 0.104   2008-02-15
72         Added ability to avoid DB hits when restoring from session
73
74 0.103   2008-02-07
75         Added missing DBIx::Class dependancy in Makefile.PL so
76         that the damn test bots stop emailing me.
77
78 0.102   2008-01-23
79         Catalyst::Authentication::Store::DBIx::Class::User
80           - Explicitly call auto_create() against resultset()
81           - Explicitly call auto_update() against _user()
82           - Document the above
83
84 0.101   2007-12-02
85         Implemented basic auto_update_user and auto_create_user support
86
87 0.10    2007-07-07 3pm CST
88         Proper handling of missing id_field config (load from primary_key)
89         Throw exception if id_field specified does not exist
90         Full test suite added.  (based loosely on old DBIC store)
91
92 0.03    XXX
93         Switch to Module::Install
94
95 0.02    2006-12-16 2pm CST
96         Rewritten to use proper accessors and clean up to match updated C::P::Authentication class naming
97
98 0.01    2006-11-10
99         First version, worked internally, completely undocumented