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