remove use DBI since it SHOULD be called outside and it makes mock testing easier
[catagits/Web-Session.git] / Changes
CommitLineData
d94ab365 1Revision history for Perl extension Plack::Middleware::Session
3b4205cd 2
69c28b0e 30.10 Mon Feb 22 19:03:17 PST 2010
4 - Make this a non-dev release now Plack 0.9910 is out
5
983d87dd 60.09_03 Tue Feb 2 20:42:56 PST 2010
7 - Fixed so the default Cookie path is now correctly set to '/'
8 You can override that by setting path = undef in psgix.session.options.
9 (Reported by tomyhero)
10
98f62fd7 110.09_02 Sat Jan 30 23:13:50 PST 2010
12 - Fixed a bug in Cookie serialization where it breaks the response headers
13 generated by applications (tomyhero)
14
91b87895 150.09_01 Sat Jan 30 13:39:21 PST 2010
98f62fd7 16 - Reworked the internal code and API a lot, so Session persistence
91b87895 17 and retrieval are handled in a more stateless way
98f62fd7 18 - INCOMPATIBLE: psgix.session is now a hash reference rather than an object.
91b87895 19 If you need an object like before, do:
20 use Plack::Session; $session = Plack::Session->new($env);
98f62fd7 21 - Added Plack::Middleware::Session::Cookie which uses CookieStore
22 - Updated Cookie handling code to work with Plack 0.99 and later
91b87895 23
000c696e 240.03 Thurs. Jan. 7, 2009
25 * Plack::Middleware::Session
26 - change plack.session to psgix.session (plack.session is
27 retained for back-compat, but is deprecated and will be
28 removed in future versions)
29
30 * Plack::Session::Store::File
31 - changed to lock_* versions of the Storaable functions
32 (thanks to Miyagawa)
33
de784fad 340.02 Sat. Dec. 19, 2009
35 - fixed dependency list (RT #52891) (Thanks to Andreas Koenig)
36 - fixed some POD misspellings (Thanks to franckcuny)
37 - fixed streaming interface (Thanks to clkao and miyagawa)
38
536da026 390.01 Tues. Dec. 15, 2009
43852b38 40 - Hello CPAN World!