Checking in changes prior to tagging of version 0.26. Changelog diff is:
[catagits/Catalyst-Plugin-Session.git] / Changes
1 Revision history for Perl extension Catalyst::Plugin::Session
2
3 0.26 2009-08-19
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.
7
8 0.25 2009-07-08
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
14 0.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
20 0.23 2009-06-16
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)
25
26 0.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
38 0.21 2009-04-30
39         - Hide the internal packages in Catalyst::Plugin::Session::Test::Store from PAUSE.
40         - Convert from CAF to Moose with Moosex::Emulate::Class::Accessor::Fast
41
42 0.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
48 0.19_01 2009-01-09
49         - Switch from using NEXT to Class::C3 for method re-dispatch.
50         - Use shipit to package the dist.
51         - Switch to Module::install.
52         - Flash data is now stored inside the session (key "__flash") to avoid
53           duplicate entry errors caused by simultaneous select/insert/delete of
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)
58
59 0.19    2007-10-08
60
61 0.18    2007-08-15
62         - Fix Apache engine issue (RT #28845)
63
64 0.17    2007-07-16
65         - Skip a test if Cookie is not installed (RT #28137)
66
67 0.16    2007-07-03
68         - Stupid makefile
69
70 0.15    2007-06-24
71         - Fix the bug that caused sessions to expire immediately when another
72           session was deleted previously in the same request cycle
73         - Changed finalize() to redispatch before saving session
74           so other finalize methods still have access to it.
75
76 0.14    2007-01-31
77         - Disable verify_address.
78         - update flash to work like session
79
80 0.13    2006-10-12
81         - Rerelease with slightly changed test due to a behavior change in
82           Test::MockObject
83         - add `clear_flash`
84         - improve debug logging
85
86 0.12    2006-08-26
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
91 0.11    2006-08-10
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
96 0.10    2006-08-01
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
101 0.09    2006-07-31
102         - Fix Catalyst::Plugin::Session::Test::Store
103
104 0.08    2006-07-31
105         - rerelease because Module::Bane broke the META.yml. HURAAH
106
107 0.07    2006-07-30
108         - Make build tool complain loudly on incompatible versions of state
109           plugins.
110
111 0.06    2006-07-29
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
115
116 0.05    2006-01-01
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
124 0.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
128 0.03    2005-12-26 10:22:00
129         - Lazify loading of session data for better performance and less chance
130           of race conditions
131         - support for $c->flash a la Ruby on Rails
132         - Fixed bug in sessionid algorithm detection.
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
136
137 0.02    2005-11-23 09:40:00
138         - Doc fixes
139         - No more -Engine=Test
140
141 0.01    2005-11-14 12:41:00
142         - Initial release.