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