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