Switch to MRO::Compat's maybe::next::method. I could probably use just next::method...
[catagits/Catalyst-Plugin-Session.git] / Changes
CommitLineData
a552e4b5 1Revision history for Perl extension Catalyst::Plugin::Session
2
2842d938 30.19_01 2009-01-09
4 - Use shipit to package the dist
7048c24e 5 - Switch to Module::install
eb250519 6 - Flash data is now stored inside the session (key "__flash") to avoid
7 duplicate entry errors caused by simultaneous select/insert/delete of
2842d938 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)
7048c24e 12
130.19 2007-10-08
14
e3496e48 150.18 2007-08-15
16 - Fix Apache engine issue (RT #28845)
c4dc7ba9 17
e3496e48 180.17 2007-07-16
19 - Skip a test if Cookie is not installed (RT #28137)
c48f1a4e 20
e3496e48 210.16 2007-07-03
bcdad401 22 - Stupid makefile
23
e3496e48 240.15 2007-06-24
38761943 25 - Fix the bug that caused sessions to expire immediately when another
26 session was deleted previously in the same request cycle
84f65b2e 27 - Changed finalize() to redispatch before saving session
28 so other finalize methods still have access to it.
38761943 29
e3496e48 300.14 2007-01-31
86553855 31 - Disable verify_address.
32 - update flash to work like session
33
e3496e48 340.13 2006-10-12
177c24fe 35 - Rerelease with slightly changed test due to a behavior change in
36 Test::MockObject
5a1f6ed4 37 - add `clear_flash`
49727697 38 - improve debug logging
39
e3496e48 400.12 2006-08-26
8f236527 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
e3496e48 450.11 2006-08-10
260b14c4 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
e3496e48 500.10 2006-08-01
23a2bf16 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
e3496e48 550.09 2006-07-31
ec299c02 56 - Fix Catalyst::Plugin::Session::Test::Store
57
e3496e48 580.08 2006-07-31
ec270ef0 59 - rerelease because Module::Bane broke the META.yml. HURAAH
60
e3496e48 610.07 2006-07-30
340449a2 62 - Make build tool complain loudly on incompatible versions of state
63 plugins.
64
e3496e48 650.06 2006-07-29
6f327a6c 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
bab8b74b 69
e3496e48 700.05 2006-01-01
7db1c46a 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
7a02371f 780.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
820.03 2005-12-26 10:22:00
a552e4b5 83 - Lazify loading of session data for better performance and less chance
84 of race conditions
9b0fa2a6 85 - support for $c->flash a la Ruby on Rails
5faaa4b0 86 - Fixed bug in sessionid algorithm detection.
4207ce8d 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
a552e4b5 90
5faaa4b0 910.02 2005-11-23 09:40:00
a552e4b5 92 - Doc fixes
93 - No more -Engine=Test
94
5faaa4b0 950.01 2005-11-14 12:41:00
a552e4b5 96 - Initial release.