Add irc log of conversation about where ::Session should go, so next time this comes...
[catagits/Catalyst-Plugin-Session.git] / Changes
CommitLineData
a552e4b5 1Revision history for Perl extension Catalyst::Plugin::Session
2
2842d938 30.19_01 2009-01-09
7550f095 4 - Switch from using NEXT to Class::C3 for method re-dispatch.
5 - Use shipit to package the dist.
6 - Switch to Module::install.
eb250519 7 - Flash data is now stored inside the session (key "__flash") to avoid
8 duplicate entry errors caused by simultaneous select/insert/delete of
2842d938 9 flash rows when using DBI as a Store. (Sergio Salvi)
10 - Fix session finalization order that caused HTTP responses to be sent
11 before the session is actually finalized and stored in its Store.
12 (Sergio Salvi)
7048c24e 13
140.19 2007-10-08
15
e3496e48 160.18 2007-08-15
17 - Fix Apache engine issue (RT #28845)
c4dc7ba9 18
e3496e48 190.17 2007-07-16
20 - Skip a test if Cookie is not installed (RT #28137)
c48f1a4e 21
e3496e48 220.16 2007-07-03
bcdad401 23 - Stupid makefile
24
e3496e48 250.15 2007-06-24
38761943 26 - Fix the bug that caused sessions to expire immediately when another
27 session was deleted previously in the same request cycle
84f65b2e 28 - Changed finalize() to redispatch before saving session
29 so other finalize methods still have access to it.
38761943 30
e3496e48 310.14 2007-01-31
86553855 32 - Disable verify_address.
33 - update flash to work like session
34
e3496e48 350.13 2006-10-12
177c24fe 36 - Rerelease with slightly changed test due to a behavior change in
37 Test::MockObject
5a1f6ed4 38 - add `clear_flash`
49727697 39 - improve debug logging
40
e3496e48 410.12 2006-08-26
8f236527 42 - refactor out a hookable finalize_session method, for plugins
43 - make _clear_session_instance_data call NEXT::, so that plugins can
44 hook on to that too
45
e3496e48 460.11 2006-08-10
260b14c4 47 - Lazify expiry calculation and store it in a different instance data
48 slot. This provides greater flexibility for implementing hooks like
49 DynamicExpiry the "right" way.
50
e3496e48 510.10 2006-08-01
23a2bf16 52 - Implement a more well defined finalization order for Session stuff.
53 This solves a problem that was introduced by some value cleanups in
54 the 0.06 release.
55
e3496e48 560.09 2006-07-31
ec299c02 57 - Fix Catalyst::Plugin::Session::Test::Store
58
e3496e48 590.08 2006-07-31
ec270ef0 60 - rerelease because Module::Bane broke the META.yml. HURAAH
61
e3496e48 620.07 2006-07-30
340449a2 63 - Make build tool complain loudly on incompatible versions of state
64 plugins.
65
e3496e48 660.06 2006-07-29
6f327a6c 67 - Change State plugin API to be pull oriented
68 - Lazify more correctly (mostly performance improvements)
69 - Don't try to compute digest of hash when there is no hash
bab8b74b 70
e3496e48 710.05 2006-01-01
7db1c46a 72 - Un-workaround the Cache::FastMmap (actually Storable) limitation -
73 it's not C::P::Session's business.
74 - add $c->session_expires
75 - refactor guts
76 - improve semantics of session deletion (now deletes flash data too)
77 - improve lazy-load-ness of session data in the light of expiration
78
7a02371f 790.04 2005-12-28 09:42:00
80 - Work around a limitation in Cache::FastMmap - must store only
81 references, while expiration was an NV.
82
830.03 2005-12-26 10:22:00
a552e4b5 84 - Lazify loading of session data for better performance and less chance
85 of race conditions
9b0fa2a6 86 - support for $c->flash a la Ruby on Rails
5faaa4b0 87 - Fixed bug in sessionid algorithm detection.
4207ce8d 88 - Separate __expires from the session data - we write it every time
89 - Lazify saving of session data for better performance and less chance
90 of race conditions
a552e4b5 91
5faaa4b0 920.02 2005-11-23 09:40:00
a552e4b5 93 - Doc fixes
94 - No more -Engine=Test
95
5faaa4b0 960.01 2005-11-14 12:41:00
a552e4b5 97 - Initial release.