C::P::Session - branche session_fixation: new method change_session_id (incl. doc...
[catagits/Catalyst-Plugin-Session.git] / Changes
CommitLineData
a552e4b5 1Revision history for Perl extension Catalyst::Plugin::Session
2
f8f81744 30.24 2009-06-23
4 - Be more paranoid about getting values of $c->req to avoid issues
5 with old Test::WWW::Mechanize::Catalyst.
6 - Check we have a modern version of TWMC before doing the tests which
7 need it.
8
e79a686c 90.23 2009-06-16
b97042c0 10 - Add the verify_user_agent config parameter (kmx)
11 - Add a test case to prove that logging in with a session cookie still
12 causes a new cookie to be issued for you, proving that the code is
13 not vulnerable to a session fixation attack. (t0m)
73d1f3a2 14
3253438d 150.22 2009-05-13
16 - INSANE HACK to ensure B::Hooks::EndOfScope inlines us a new method right now
17 in Catalyst::Plugin::Session::Test::Store for Catalyst 5.80004 compatibility.
18
19 This change does not in any way affect normal users - it is just due to the
20 fairly crazy way that Catalyst::Plugin::Session::Test::Store works, and that
21 module is _only_ used for unit testing session store plugins pre-installation.
22
23 Session::Test::Store should be replaced with a more sane solution, and other
24 CPAN modules using it moved away from using it, but this change keeps stops
25 new Catalyst breaking other distributions right now.
26
eee1173f 270.21 2009-04-30
66017cbc 28 - Hide the internal packages in Catalyst::Plugin::Session::Test::Store from PAUSE.
fff59d60 29 - Convert from CAF to Moose with Moosex::Emulate::Class::Accessor::Fast
66017cbc 30
87ed5295 310.20 2009-02-05
32 - No code changes since 0.19_01 dev release.
33 - Add IDEAS.txt which is an irc log of discussion about the next-generation
34 session plugin from discussion on #catalyst-dev
35 - Remove TODO file, which is no longer relevant.
36
2842d938 370.19_01 2009-01-09
7550f095 38 - Switch from using NEXT to Class::C3 for method re-dispatch.
39 - Use shipit to package the dist.
40 - Switch to Module::install.
eb250519 41 - Flash data is now stored inside the session (key "__flash") to avoid
42 duplicate entry errors caused by simultaneous select/insert/delete of
2842d938 43 flash rows when using DBI as a Store. (Sergio Salvi)
44 - Fix session finalization order that caused HTTP responses to be sent
45 before the session is actually finalized and stored in its Store.
46 (Sergio Salvi)
7048c24e 47
480.19 2007-10-08
49
e3496e48 500.18 2007-08-15
51 - Fix Apache engine issue (RT #28845)
c4dc7ba9 52
e3496e48 530.17 2007-07-16
54 - Skip a test if Cookie is not installed (RT #28137)
c48f1a4e 55
e3496e48 560.16 2007-07-03
bcdad401 57 - Stupid makefile
58
e3496e48 590.15 2007-06-24
38761943 60 - Fix the bug that caused sessions to expire immediately when another
61 session was deleted previously in the same request cycle
84f65b2e 62 - Changed finalize() to redispatch before saving session
63 so other finalize methods still have access to it.
38761943 64
e3496e48 650.14 2007-01-31
86553855 66 - Disable verify_address.
67 - update flash to work like session
68
e3496e48 690.13 2006-10-12
177c24fe 70 - Rerelease with slightly changed test due to a behavior change in
71 Test::MockObject
5a1f6ed4 72 - add `clear_flash`
49727697 73 - improve debug logging
74
e3496e48 750.12 2006-08-26
8f236527 76 - refactor out a hookable finalize_session method, for plugins
77 - make _clear_session_instance_data call NEXT::, so that plugins can
78 hook on to that too
79
e3496e48 800.11 2006-08-10
260b14c4 81 - Lazify expiry calculation and store it in a different instance data
82 slot. This provides greater flexibility for implementing hooks like
83 DynamicExpiry the "right" way.
84
e3496e48 850.10 2006-08-01
23a2bf16 86 - Implement a more well defined finalization order for Session stuff.
87 This solves a problem that was introduced by some value cleanups in
88 the 0.06 release.
89
e3496e48 900.09 2006-07-31
ec299c02 91 - Fix Catalyst::Plugin::Session::Test::Store
92
e3496e48 930.08 2006-07-31
ec270ef0 94 - rerelease because Module::Bane broke the META.yml. HURAAH
95
e3496e48 960.07 2006-07-30
340449a2 97 - Make build tool complain loudly on incompatible versions of state
98 plugins.
99
e3496e48 1000.06 2006-07-29
6f327a6c 101 - Change State plugin API to be pull oriented
102 - Lazify more correctly (mostly performance improvements)
103 - Don't try to compute digest of hash when there is no hash
bab8b74b 104
e3496e48 1050.05 2006-01-01
7db1c46a 106 - Un-workaround the Cache::FastMmap (actually Storable) limitation -
107 it's not C::P::Session's business.
108 - add $c->session_expires
109 - refactor guts
110 - improve semantics of session deletion (now deletes flash data too)
111 - improve lazy-load-ness of session data in the light of expiration
112
7a02371f 1130.04 2005-12-28 09:42:00
114 - Work around a limitation in Cache::FastMmap - must store only
115 references, while expiration was an NV.
116
1170.03 2005-12-26 10:22:00
a552e4b5 118 - Lazify loading of session data for better performance and less chance
119 of race conditions
9b0fa2a6 120 - support for $c->flash a la Ruby on Rails
5faaa4b0 121 - Fixed bug in sessionid algorithm detection.
4207ce8d 122 - Separate __expires from the session data - we write it every time
123 - Lazify saving of session data for better performance and less chance
124 of race conditions
a552e4b5 125
5faaa4b0 1260.02 2005-11-23 09:40:00
a552e4b5 127 - Doc fixes
128 - No more -Engine=Test
129
5faaa4b0 1300.01 2005-11-14 12:41:00
a552e4b5 131 - Initial release.