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