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