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