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