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