Checking in changes prior to tagging of version 0.09_02. Changelog diff is:
[catagits/Web-Session.git] / Changes
1 Revision history for Perl extension Plack::Middleware::Session
2
3 0.09_02 Sat Jan 30 23:13:50 PST 2010
4     - Fixed a bug in Cookie serialization where it breaks the response headers
5       generated by applications (tomyhero)
6
7 0.09_01 Sat Jan 30 13:39:21 PST 2010
8     - Reworked the internal code and API a lot, so Session persistence
9       and retrieval are handled in a more stateless way
10     - INCOMPATIBLE: psgix.session is now a hash reference rather than an object.
11       If you need an object like before, do:
12         use Plack::Session; $session = Plack::Session->new($env);
13     - Added Plack::Middleware::Session::Cookie which uses CookieStore
14     - Updated Cookie handling code to work with Plack 0.99 and later
15
16 0.03 Thurs. Jan. 7, 2009
17     * Plack::Middleware::Session
18       - change plack.session to psgix.session (plack.session is
19         retained for back-compat, but is deprecated and will be
20         removed in future versions)
21
22     * Plack::Session::Store::File
23       - changed to lock_* versions of the Storaable functions
24         (thanks to Miyagawa)
25
26 0.02 Sat. Dec. 19, 2009
27     - fixed dependency list (RT #52891) (Thanks to Andreas Koenig)
28     - fixed some POD misspellings (Thanks to franckcuny)
29     - fixed streaming interface (Thanks to clkao and miyagawa)
30
31 0.01 Tues. Dec. 15, 2009
32     - Hello CPAN World!