fd90259f47714cb3d05f69eb5aa77f942d6f3d78
[catagits/Catalyst-Plugin-Session-State-Cookie.git] / Changes
1 Revision history for Perl extension Catalyst::Plugin::Session::State::Cookie
2
3         - Allow turning off the httponly option (Closes RT#48930).
4
5 0.13    2009-08-19
6         - Remove Test::MockObject from the test suite as prone to failing on
7           some platforms and perl versions due to its UNIVERSAL:: package
8           dependencies.
9         - Remove Class::Accessor::Fast and replace with Moose. This allows
10           us to not have a ->new method, This is more correct for Plugins
11           and also means that Catalyst is not forced to invoke the scary
12           replace_constructor at scope end handling.
13
14 0.12    2009-07-18
15         - Introduced a new option cookie_httponly
16         - Option cookie_secure extended (old syntax fully supported)
17
18 0.11    2009-05-13
19         - Change TestApp so that the application is in t/lib, to make it easier
20           for Catalyst to force our package to be immutable.
21
22 0.10    2009-02-08
23         - POD addition.
24         - Switch from NEXT to MRO::Compat
25
26 0.09    2007-10-08
27         - Bump dependencies so that streaming a file also causes the cookie to
28           be updated.
29           - Add tests for this
30
31 0.08    2007-09-14
32         - Fix live test with Mech version 0.37+
33         - Switch to Module::Install
34
35 0.07    2007-04-04 23:10:00
36         - Fix the bug that caused sessions to expire immediately when another
37           session was deleted previously in the same request cycle
38
39 0.06    2006-09-20 19:53:00
40         - Fix args in calls to NEXT::set_session_id and NEXT::extend_session_id
41
42 0.05    2006-08-06 20:50:00
43         - Add configuration of 'cookie_path' (Michael W Peterson)
44
45 0.04
46         - Depend on a higher version of C::P::Session
47
48 0.03
49         - refactored make_session_cookie to separate calc_expiry, and made
50               that easily overloadable.
51         - updated for the new state API (get_session_id, set_session_id, etc)
52
53 0.02    2005-12-28 13:51:00
54         - Fixed cookie_expires to support browser session cookies.
55         - Renamed default cookie name from just 'session' to
56           'yourapp_session' to allow several applications on the same domain
57           to exist without conflict (LTJake)
58
59 0.01    2005-11-14 12:45:00
60         - Initial release.