Added docs to deprecate parameter based session ID retrieval
[catagits/Web-Session.git] / Changes
1 Revision history for Perl extension Plack::Middleware::Session
2
3 0.12 Wed Jul  7 15:54:05 PDT 2010
4     - Improved documents (markstos, haarg)
5     - Support httponly option (haarg)        
6
7 0.11 Sat Feb 27 02:40:29 PST 2010
8     - Added Session::Store::DBI by lestrrat
9
10 0.10 Mon Feb 22 19:03:17 PST 2010
11     - Make this a non-dev release now Plack 0.9910 is out
12
13 0.09_03 Tue Feb  2 20:42:56 PST 2010
14     - Fixed so the default Cookie path is now correctly set to '/'
15       You can override that by setting path = undef in psgix.session.options.
16       (Reported by tomyhero)
17
18 0.09_02 Sat Jan 30 23:13:50 PST 2010
19     - Fixed a bug in Cookie serialization where it breaks the response headers
20       generated by applications (tomyhero)
21
22 0.09_01 Sat Jan 30 13:39:21 PST 2010
23     - Reworked the internal code and API a lot, so Session persistence
24       and retrieval are handled in a more stateless way
25     - INCOMPATIBLE: psgix.session is now a hash reference rather than an object.
26       If you need an object like before, do:
27         use Plack::Session; $session = Plack::Session->new($env);
28     - Added Plack::Middleware::Session::Cookie which uses CookieStore
29     - Updated Cookie handling code to work with Plack 0.99 and later
30
31 0.03 Thurs. Jan. 7, 2009
32     * Plack::Middleware::Session
33       - change plack.session to psgix.session (plack.session is
34         retained for back-compat, but is deprecated and will be
35         removed in future versions)
36
37     * Plack::Session::Store::File
38       - changed to lock_* versions of the Storaable functions
39         (thanks to Miyagawa)
40
41 0.02 Sat. Dec. 19, 2009
42     - fixed dependency list (RT #52891) (Thanks to Andreas Koenig)
43     - fixed some POD misspellings (Thanks to franckcuny)
44     - fixed streaming interface (Thanks to clkao and miyagawa)
45
46 0.01 Tues. Dec. 15, 2009
47     - Hello CPAN World!