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