nasty hack
[catagits/Catalyst-Plugin-Session.git] / Changes
1 Revision history for Perl extension Catalyst::Plugin::Session
2
3 0.18
4         - http://rt.cpan.org/Public/Bug/Display.html?id=28845
5
6 0.17
7         - Skip a test if Cookie is not installed
8
9 0.16
10         - Stupid makefile
11
12 0.15
13         - Fix the bug that caused sessions to expire immediately when another
14           session was deleted previously in the same request cycle
15         - Changed finalize() to redispatch before saving session
16           so other finalize methods still have access to it.
17
18 0.14    2007-01-31 12:19:00
19         - Disable verify_address.
20         - update flash to work like session
21
22 0.13
23         - Rerelease with slightly changed test due to a behavior change in
24           Test::MockObject
25         - add `clear_flash`
26         - improve debug logging
27
28 0.12
29         - refactor out a hookable finalize_session method, for plugins
30         - make _clear_session_instance_data call NEXT::, so that plugins can
31           hook on to that too
32
33 0.11
34         - Lazify expiry calculation and store it in a different instance data
35           slot. This provides greater flexibility for implementing hooks like
36           DynamicExpiry the "right" way.
37
38 0.10
39         - Implement a more well defined finalization order for Session stuff.
40           This solves a problem that was introduced by some value cleanups in
41           the 0.06 release.
42
43 0.09
44         - Fix Catalyst::Plugin::Session::Test::Store
45
46 0.08
47         - rerelease because Module::Bane broke the META.yml. HURAAH
48
49 0.07
50         - Make build tool complain loudly on incompatible versions of state
51           plugins.
52
53 0.06
54         - Change State plugin API to be pull oriented
55         - Lazify more correctly (mostly performance improvements)
56         - Don't try to compute digest of hash when there is no hash
57
58 0.05     
59         - Un-workaround the Cache::FastMmap (actually Storable) limitation -
60           it's not C::P::Session's business.
61         - add $c->session_expires
62         - refactor guts
63         - improve semantics of session deletion (now deletes flash data too)
64         - improve lazy-load-ness of session data in the light of expiration
65
66 0.04    2005-12-28 09:42:00
67         - Work around a limitation in Cache::FastMmap - must store only
68           references, while expiration was an NV.
69
70 0.03    2005-12-26 10:22:00
71         - Lazify loading of session data for better performance and less chance
72           of race conditions
73         - support for $c->flash a la Ruby on Rails
74         - Fixed bug in sessionid algorithm detection.
75         - Separate __expires from the session data - we write it every time
76         - Lazify saving of session data for better performance and less chance
77           of race conditions
78
79 0.02    2005-11-23 09:40:00
80         - Doc fixes
81         - No more -Engine=Test
82
83 0.01    2005-11-14 12:41:00
84         - Initial release.