Checking in changes prior to tagging of version 0.20. Changelog diff is:
[catagits/Catalyst-Plugin-Session.git] / Changes
CommitLineData
a552e4b5 1Revision history for Perl extension Catalyst::Plugin::Session
2
87ed5295 30.20 2009-02-05
4 - No code changes since 0.19_01 dev release.
5 - Add IDEAS.txt which is an irc log of discussion about the next-generation
6 session plugin from discussion on #catalyst-dev
7 - Remove TODO file, which is no longer relevant.
8
2842d938 90.19_01 2009-01-09
7550f095 10 - Switch from using NEXT to Class::C3 for method re-dispatch.
11 - Use shipit to package the dist.
12 - Switch to Module::install.
eb250519 13 - Flash data is now stored inside the session (key "__flash") to avoid
14 duplicate entry errors caused by simultaneous select/insert/delete of
2842d938 15 flash rows when using DBI as a Store. (Sergio Salvi)
16 - Fix session finalization order that caused HTTP responses to be sent
17 before the session is actually finalized and stored in its Store.
18 (Sergio Salvi)
7048c24e 19
200.19 2007-10-08
21
e3496e48 220.18 2007-08-15
23 - Fix Apache engine issue (RT #28845)
c4dc7ba9 24
e3496e48 250.17 2007-07-16
26 - Skip a test if Cookie is not installed (RT #28137)
c48f1a4e 27
e3496e48 280.16 2007-07-03
bcdad401 29 - Stupid makefile
30
e3496e48 310.15 2007-06-24
38761943 32 - Fix the bug that caused sessions to expire immediately when another
33 session was deleted previously in the same request cycle
84f65b2e 34 - Changed finalize() to redispatch before saving session
35 so other finalize methods still have access to it.
38761943 36
e3496e48 370.14 2007-01-31
86553855 38 - Disable verify_address.
39 - update flash to work like session
40
e3496e48 410.13 2006-10-12
177c24fe 42 - Rerelease with slightly changed test due to a behavior change in
43 Test::MockObject
5a1f6ed4 44 - add `clear_flash`
49727697 45 - improve debug logging
46
e3496e48 470.12 2006-08-26
8f236527 48 - refactor out a hookable finalize_session method, for plugins
49 - make _clear_session_instance_data call NEXT::, so that plugins can
50 hook on to that too
51
e3496e48 520.11 2006-08-10
260b14c4 53 - Lazify expiry calculation and store it in a different instance data
54 slot. This provides greater flexibility for implementing hooks like
55 DynamicExpiry the "right" way.
56
e3496e48 570.10 2006-08-01
23a2bf16 58 - Implement a more well defined finalization order for Session stuff.
59 This solves a problem that was introduced by some value cleanups in
60 the 0.06 release.
61
e3496e48 620.09 2006-07-31
ec299c02 63 - Fix Catalyst::Plugin::Session::Test::Store
64
e3496e48 650.08 2006-07-31
ec270ef0 66 - rerelease because Module::Bane broke the META.yml. HURAAH
67
e3496e48 680.07 2006-07-30
340449a2 69 - Make build tool complain loudly on incompatible versions of state
70 plugins.
71
e3496e48 720.06 2006-07-29
6f327a6c 73 - Change State plugin API to be pull oriented
74 - Lazify more correctly (mostly performance improvements)
75 - Don't try to compute digest of hash when there is no hash
bab8b74b 76
e3496e48 770.05 2006-01-01
7db1c46a 78 - Un-workaround the Cache::FastMmap (actually Storable) limitation -
79 it's not C::P::Session's business.
80 - add $c->session_expires
81 - refactor guts
82 - improve semantics of session deletion (now deletes flash data too)
83 - improve lazy-load-ness of session data in the light of expiration
84
7a02371f 850.04 2005-12-28 09:42:00
86 - Work around a limitation in Cache::FastMmap - must store only
87 references, while expiration was an NV.
88
890.03 2005-12-26 10:22:00
a552e4b5 90 - Lazify loading of session data for better performance and less chance
91 of race conditions
9b0fa2a6 92 - support for $c->flash a la Ruby on Rails
5faaa4b0 93 - Fixed bug in sessionid algorithm detection.
4207ce8d 94 - Separate __expires from the session data - we write it every time
95 - Lazify saving of session data for better performance and less chance
96 of race conditions
a552e4b5 97
5faaa4b0 980.02 2005-11-23 09:40:00
a552e4b5 99 - Doc fixes
100 - No more -Engine=Test
101
5faaa4b0 1020.01 2005-11-14 12:41:00
a552e4b5 103 - Initial release.