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