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