Checking in changes prior to tagging of version 0.09_03. Changelog diff is:
[catagits/Web-Session.git] / Changes
1 Revision history for Perl extension Plack::Middleware::Session
2
3 0.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
8 0.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
12 0.09_01 Sat Jan 30 13:39:21 PST 2010
13     - Reworked the internal code and API a lot, so Session persistence
14       and retrieval are handled in a more stateless way
15     - INCOMPATIBLE: psgix.session is now a hash reference rather than an object.
16       If you need an object like before, do:
17         use Plack::Session; $session = Plack::Session->new($env);
18     - Added Plack::Middleware::Session::Cookie which uses CookieStore
19     - Updated Cookie handling code to work with Plack 0.99 and later
20
21 0.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
31 0.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
36 0.01 Tues. Dec. 15, 2009
37     - Hello CPAN World!