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