Merge pull request #7 from tokuhirom/master
[catagits/Web-Session.git] / Changes
CommitLineData
d94ab365 1Revision history for Perl extension Plack::Middleware::Session
3b4205cd 2
f85f3f00 30.14 Tue Mar 29 13:48:42 PDT 2011
4 - Support get_dbh callback in Store::DBI (kazeburo)
5
c9cdee23 60.13 Wed Dec 22 08:56:52 PST 2010
7 - Added WARNINGS to deprecate request parameter based session state from the default state
8 - Added 'change_id' option for paranoids against session fixation (s-aska, nihen)
9
89d240fa 100.12 Wed Jul 7 15:54:05 PDT 2010
11 - Improved documents (markstos, haarg)
12 - Support httponly option (haarg)
13
3f7980ee 140.11 Sat Feb 27 02:40:29 PST 2010
15 - Added Session::Store::DBI by lestrrat
16
69c28b0e 170.10 Mon Feb 22 19:03:17 PST 2010
18 - Make this a non-dev release now Plack 0.9910 is out
19
983d87dd 200.09_03 Tue Feb 2 20:42:56 PST 2010
21 - Fixed so the default Cookie path is now correctly set to '/'
22 You can override that by setting path = undef in psgix.session.options.
23 (Reported by tomyhero)
24
98f62fd7 250.09_02 Sat Jan 30 23:13:50 PST 2010
26 - Fixed a bug in Cookie serialization where it breaks the response headers
27 generated by applications (tomyhero)
28
91b87895 290.09_01 Sat Jan 30 13:39:21 PST 2010
98f62fd7 30 - Reworked the internal code and API a lot, so Session persistence
91b87895 31 and retrieval are handled in a more stateless way
98f62fd7 32 - INCOMPATIBLE: psgix.session is now a hash reference rather than an object.
91b87895 33 If you need an object like before, do:
34 use Plack::Session; $session = Plack::Session->new($env);
98f62fd7 35 - Added Plack::Middleware::Session::Cookie which uses CookieStore
36 - Updated Cookie handling code to work with Plack 0.99 and later
91b87895 37
000c696e 380.03 Thurs. Jan. 7, 2009
39 * Plack::Middleware::Session
40 - change plack.session to psgix.session (plack.session is
41 retained for back-compat, but is deprecated and will be
42 removed in future versions)
43
44 * Plack::Session::Store::File
45 - changed to lock_* versions of the Storaable functions
46 (thanks to Miyagawa)
47
de784fad 480.02 Sat. Dec. 19, 2009
49 - fixed dependency list (RT #52891) (Thanks to Andreas Koenig)
50 - fixed some POD misspellings (Thanks to franckcuny)
51 - fixed streaming interface (Thanks to clkao and miyagawa)
52
536da026 530.01 Tues. Dec. 15, 2009
43852b38 54 - Hello CPAN World!