Checking in changes prior to tagging of version 0.09_03. Changelog diff is:
[catagits/Web-Session.git] / Changes
CommitLineData
d94ab365 1Revision history for Perl extension Plack::Middleware::Session
3b4205cd 2
983d87dd 30.09_03 Tue Feb 2 20:42:56 PST 2010
4 - Fixed so the default Cookie path is now correctly set to '/'
5 You can override that by setting path = undef in psgix.session.options.
6 (Reported by tomyhero)
7
98f62fd7 80.09_02 Sat Jan 30 23:13:50 PST 2010
9 - Fixed a bug in Cookie serialization where it breaks the response headers
10 generated by applications (tomyhero)
11
91b87895 120.09_01 Sat Jan 30 13:39:21 PST 2010
98f62fd7 13 - Reworked the internal code and API a lot, so Session persistence
91b87895 14 and retrieval are handled in a more stateless way
98f62fd7 15 - INCOMPATIBLE: psgix.session is now a hash reference rather than an object.
91b87895 16 If you need an object like before, do:
17 use Plack::Session; $session = Plack::Session->new($env);
98f62fd7 18 - Added Plack::Middleware::Session::Cookie which uses CookieStore
19 - Updated Cookie handling code to work with Plack 0.99 and later
91b87895 20
000c696e 210.03 Thurs. Jan. 7, 2009
22 * Plack::Middleware::Session
23 - change plack.session to psgix.session (plack.session is
24 retained for back-compat, but is deprecated and will be
25 removed in future versions)
26
27 * Plack::Session::Store::File
28 - changed to lock_* versions of the Storaable functions
29 (thanks to Miyagawa)
30
de784fad 310.02 Sat. Dec. 19, 2009
32 - fixed dependency list (RT #52891) (Thanks to Andreas Koenig)
33 - fixed some POD misspellings (Thanks to franckcuny)
34 - fixed streaming interface (Thanks to clkao and miyagawa)
35
536da026 360.01 Tues. Dec. 15, 2009
43852b38 37 - Hello CPAN World!