more session finalization cleanups
[catagits/Catalyst-Plugin-Session.git] / Changes
1 Revision history for Perl extension Catalyst::Plugin::Session
2
3 0.11
4         - Lazify expiry calculation and store it in a different instance data
5           slot. This provides greater flexibility for implementing hooks like
6           DynamicExpiry the "right" way.
7
8 0.10
9         - Implement a more well defined finalization order for Session stuff.
10           This solves a problem that was introduced by some value cleanups in
11           the 0.06 release.
12
13 0.09
14         - Fix Catalyst::Plugin::Session::Test::Store
15
16 0.08
17         - rerelease because Module::Bane broke the META.yml. HURAAH
18
19 0.07
20         - Make build tool complain loudly on incompatible versions of state
21           plugins.
22
23 0.06
24         - Change State plugin API to be pull oriented
25         - Lazify more correctly (mostly performance improvements)
26         - Don't try to compute digest of hash when there is no hash
27
28 0.05     
29         - Un-workaround the Cache::FastMmap (actually Storable) limitation -
30           it's not C::P::Session's business.
31         - add $c->session_expires
32         - refactor guts
33         - improve semantics of session deletion (now deletes flash data too)
34         - improve lazy-load-ness of session data in the light of expiration
35
36 0.04    2005-12-28 09:42:00
37         - Work around a limitation in Cache::FastMmap - must store only
38           references, while expiration was an NV.
39
40 0.03    2005-12-26 10:22:00
41         - Lazify loading of session data for better performance and less chance
42           of race conditions
43         - support for $c->flash a la Ruby on Rails
44         - Fixed bug in sessionid algorithm detection.
45         - Separate __expires from the session data - we write it every time
46         - Lazify saving of session data for better performance and less chance
47           of race conditions
48
49 0.02    2005-11-23 09:40:00
50         - Doc fixes
51         - No more -Engine=Test
52
53 0.01    2005-11-14 12:41:00
54         - Initial release.