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