updated version and changlog in prep for release
[catagits/Catalyst-Plugin-Session.git] / Changes
1 Revision history for Perl extension Catalyst::Plugin::Session
2
3 0.38 2013-09-18
4       - New feature: "expiry_threshold" which allows you more control over when
5       this plugin checks and updates the expiration date for the session.
6       This is useful when you have high traffic and need to reduce the number
7       of session expiration hits (like if you are using a database for sessions
8       and your db is getting pounded).
9
10 0.37 2013-02-25
11       - Fix t/live_verify_address.t to skip if Catalyst::Plugin::Authentication
12         is not installed, fixing RT#81506.
13
14 0.36 2012-10-19
15        - Re-pack with new Module::Install which doesn't get
16          MYMETA.yaml wrong.
17        - Remove use of Plack::Middleware::ForceEnv from the tests
18           as it was not used / needed
19
20 0.35 2012-04-24
21         - Implement a 'change_session_expires' method (gshank)
22
23         - Fixed bug from last version where session does not persist
24           across a redirect
25
26 0.34 2012-03-30
27         - Fixed up t/live_verify_address.t per https://rt.cpan.org/Ticket/Display.html?id=71142
28         - Merged in dpetrov's 0.32 changes (extend_session_expire)
29
30 0.33 2012-03-08
31         - Note that flash is deprecated / not recommended due to it's
32           inherent races. Point out Catalyst::Plugin::StatusMessage instead
33
34 0.32 2011-06-08
35         - Fix handling with enables verify_address and add related test
36
37 0.31 2010-10-08
38         - Fix session being loaded by call to dump_these in debug mode
39           (RT#58856)
40
41 0.30 2010-06-24
42         - Fix Makefile.PL's is_upgrading_needed() routine (RT #58771)
43
44 0.29 2009-11-04
45         - Fix session being deleted when you have a new session after session
46           expiry when calling session_is_valid method. Tests for this.
47         - Allow ->session to be used as a setter method so that you can say
48           ->session( key => $value );
49
50 0.28 2009-10-29
51         - Fix session fixation test with LWP 5.833 by calling $cookie_jar->set_cookie
52           rather than manually stuffing the cookie in the request.
53
54 0.27 2009-10-08
55         - Release 0.26_01 as stable without further changes.
56
57 0.26_01 2009-10-06
58         - Move actions out of the root application class in tests as this
59           is deprecated.
60         - Change configuration key to 'Plugin::Session' by default. The
61           old 'session' key is still supported, but will issue a warning
62           in a future release.
63
64 0.26 2009-08-19
65         - Remove Test::MockObject from the test suite as prone to failing on
66           some platforms and perl versions due to it's UNIVERSAL:: package
67           dependencies.
68
69 0.25 2009-07-08
70         - Add the a change_session_id method which can be called after
71           authentication to change the user's session cookie whilst preserving
72           their session data. This can be used to provide protection from
73           Session Fixation attacks. (kmx)
74
75 0.24 2009-06-23
76         - Be more paranoid about getting values of $c->req to avoid issues
77           with old Test::WWW::Mechanize::Catalyst.
78         - Check we have a modern version of TWMC before doing the tests which
79           need it.
80
81 0.23 2009-06-16
82         - Add the verify_user_agent config parameter (kmx)
83         - Add a test case to prove that logging in with a session cookie still
84           causes a new cookie to be issued for you, proving that the code is
85           not vulnerable to a session fixation attack. (t0m)
86
87 0.22 2009-05-13
88         - INSANE HACK to ensure B::Hooks::EndOfScope inlines us a new method right now
89           in Catalyst::Plugin::Session::Test::Store for Catalyst 5.80004 compatibility.
90
91           This change does not in any way affect normal users - it is just due to the
92           fairly crazy way that Catalyst::Plugin::Session::Test::Store works, and that
93           module is _only_ used for unit testing session store plugins pre-installation.
94
95           Session::Test::Store should be replaced with a more sane solution, and other
96           CPAN modules using it moved away from using it, but this change keeps stops
97           new Catalyst breaking other distributions right now.
98
99 0.21 2009-04-30
100         - Hide the internal packages in Catalyst::Plugin::Session::Test::Store from PAUSE.
101         - Convert from CAF to Moose with Moosex::Emulate::Class::Accessor::Fast
102
103 0.20 2009-02-05
104         - No code changes since 0.19_01 dev release.
105         - Add IDEAS.txt which is an irc log of discussion about the next-generation
106           session plugin from discussion on #catalyst-dev
107         - Remove TODO file, which is no longer relevant.
108
109 0.19_01 2009-01-09
110         - Switch from using NEXT to Class::C3 for method re-dispatch.
111         - Use shipit to package the dist.
112         - Switch to Module::install.
113         - Flash data is now stored inside the session (key "__flash") to avoid
114           duplicate entry errors caused by simultaneous select/insert/delete of
115           flash rows when using DBI as a Store. (Sergio Salvi)
116         - Fix session finalization order that caused HTTP responses to be sent
117           before the session is actually finalized and stored in its Store.
118           (Sergio Salvi)
119
120 0.19    2007-10-08
121
122 0.18    2007-08-15
123         - Fix Apache engine issue (RT #28845)
124
125 0.17    2007-07-16
126         - Skip a test if Cookie is not installed (RT #28137)
127
128 0.16    2007-07-03
129         - Stupid makefile
130
131 0.15    2007-06-24
132         - Fix the bug that caused sessions to expire immediately when another
133           session was deleted previously in the same request cycle
134         - Changed finalize() to redispatch before saving session
135           so other finalize methods still have access to it.
136
137 0.14    2007-01-31
138         - Disable verify_address.
139         - update flash to work like session
140
141 0.13    2006-10-12
142         - Rerelease with slightly changed test due to a behavior change in
143           Test::MockObject
144         - add `clear_flash`
145         - improve debug logging
146
147 0.12    2006-08-26
148         - refactor out a hookable finalize_session method, for plugins
149         - make _clear_session_instance_data call NEXT::, so that plugins can
150           hook on to that too
151
152 0.11    2006-08-10
153         - Lazify expiry calculation and store it in a different instance data
154           slot. This provides greater flexibility for implementing hooks like
155           DynamicExpiry the "right" way.
156
157 0.10    2006-08-01
158         - Implement a more well defined finalization order for Session stuff.
159           This solves a problem that was introduced by some value cleanups in
160           the 0.06 release.
161
162 0.09    2006-07-31
163         - Fix Catalyst::Plugin::Session::Test::Store
164
165 0.08    2006-07-31
166         - rerelease because Module::Bane broke the META.yml. HURAAH
167
168 0.07    2006-07-30
169         - Make build tool complain loudly on incompatible versions of state
170           plugins.
171
172 0.06    2006-07-29
173         - Change State plugin API to be pull oriented
174         - Lazify more correctly (mostly performance improvements)
175         - Don't try to compute digest of hash when there is no hash
176
177 0.05    2006-01-01
178         - Un-workaround the Cache::FastMmap (actually Storable) limitation -
179           it's not C::P::Session's business.
180         - add $c->session_expires
181         - refactor guts
182         - improve semantics of session deletion (now deletes flash data too)
183         - improve lazy-load-ness of session data in the light of expiration
184
185 0.04    2005-12-28 09:42:00
186         - Work around a limitation in Cache::FastMmap - must store only
187           references, while expiration was an NV.
188
189 0.03    2005-12-26 10:22:00
190         - Lazify loading of session data for better performance and less chance
191           of race conditions
192         - support for $c->flash a la Ruby on Rails
193         - Fixed bug in sessionid algorithm detection.
194         - Separate __expires from the session data - we write it every time
195         - Lazify saving of session data for better performance and less chance
196           of race conditions
197
198 0.02    2005-11-23 09:40:00
199         - Doc fixes
200         - No more -Engine=Test
201
202 0.01    2005-11-14 12:41:00
203         - Initial release.