flash data is now stored inside the session
[catagits/Catalyst-Plugin-Session.git] / Changes
CommitLineData
a552e4b5 1Revision history for Perl extension Catalyst::Plugin::Session
2
7048c24e 30.20 XXX
4 - Switch to Module::install
eb250519 5 - Flash data is now stored inside the session (key "__flash") to avoid
6 duplicate entry errors caused by simultaneous select/insert/delete of
7 flash rows when using DBI as a Store.
7048c24e 8
90.19 2007-10-08
10
e3496e48 110.18 2007-08-15
12 - Fix Apache engine issue (RT #28845)
c4dc7ba9 13
e3496e48 140.17 2007-07-16
15 - Skip a test if Cookie is not installed (RT #28137)
c48f1a4e 16
e3496e48 170.16 2007-07-03
bcdad401 18 - Stupid makefile
19
e3496e48 200.15 2007-06-24
38761943 21 - Fix the bug that caused sessions to expire immediately when another
22 session was deleted previously in the same request cycle
84f65b2e 23 - Changed finalize() to redispatch before saving session
24 so other finalize methods still have access to it.
38761943 25
e3496e48 260.14 2007-01-31
86553855 27 - Disable verify_address.
28 - update flash to work like session
29
e3496e48 300.13 2006-10-12
177c24fe 31 - Rerelease with slightly changed test due to a behavior change in
32 Test::MockObject
5a1f6ed4 33 - add `clear_flash`
49727697 34 - improve debug logging
35
e3496e48 360.12 2006-08-26
8f236527 37 - refactor out a hookable finalize_session method, for plugins
38 - make _clear_session_instance_data call NEXT::, so that plugins can
39 hook on to that too
40
e3496e48 410.11 2006-08-10
260b14c4 42 - Lazify expiry calculation and store it in a different instance data
43 slot. This provides greater flexibility for implementing hooks like
44 DynamicExpiry the "right" way.
45
e3496e48 460.10 2006-08-01
23a2bf16 47 - Implement a more well defined finalization order for Session stuff.
48 This solves a problem that was introduced by some value cleanups in
49 the 0.06 release.
50
e3496e48 510.09 2006-07-31
ec299c02 52 - Fix Catalyst::Plugin::Session::Test::Store
53
e3496e48 540.08 2006-07-31
ec270ef0 55 - rerelease because Module::Bane broke the META.yml. HURAAH
56
e3496e48 570.07 2006-07-30
340449a2 58 - Make build tool complain loudly on incompatible versions of state
59 plugins.
60
e3496e48 610.06 2006-07-29
6f327a6c 62 - Change State plugin API to be pull oriented
63 - Lazify more correctly (mostly performance improvements)
64 - Don't try to compute digest of hash when there is no hash
bab8b74b 65
e3496e48 660.05 2006-01-01
7db1c46a 67 - Un-workaround the Cache::FastMmap (actually Storable) limitation -
68 it's not C::P::Session's business.
69 - add $c->session_expires
70 - refactor guts
71 - improve semantics of session deletion (now deletes flash data too)
72 - improve lazy-load-ness of session data in the light of expiration
73
7a02371f 740.04 2005-12-28 09:42:00
75 - Work around a limitation in Cache::FastMmap - must store only
76 references, while expiration was an NV.
77
780.03 2005-12-26 10:22:00
a552e4b5 79 - Lazify loading of session data for better performance and less chance
80 of race conditions
9b0fa2a6 81 - support for $c->flash a la Ruby on Rails
5faaa4b0 82 - Fixed bug in sessionid algorithm detection.
4207ce8d 83 - Separate __expires from the session data - we write it every time
84 - Lazify saving of session data for better performance and less chance
85 of race conditions
a552e4b5 86
5faaa4b0 870.02 2005-11-23 09:40:00
a552e4b5 88 - Doc fixes
89 - No more -Engine=Test
90
5faaa4b0 910.01 2005-11-14 12:41:00
a552e4b5 92 - Initial release.