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