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