update changes file with some release dates and RT info
[catagits/Catalyst-Plugin-Session.git] / Changes
1 Revision history for Perl extension Catalyst::Plugin::Session
2
3 0.18    2007-08-15
4         - Fix Apache engine issue (RT #28845)
5
6 0.17    2007-07-16
7         - Skip a test if Cookie is not installed (RT #28137)
8
9 0.16    2007-07-03
10         - Stupid makefile
11
12 0.15    2007-06-24
13         - Fix the bug that caused sessions to expire immediately when another
14           session was deleted previously in the same request cycle
15         - Changed finalize() to redispatch before saving session
16           so other finalize methods still have access to it.
17
18 0.14    2007-01-31
19         - Disable verify_address.
20         - update flash to work like session
21
22 0.13    2006-10-12
23         - Rerelease with slightly changed test due to a behavior change in
24           Test::MockObject
25         - add `clear_flash`
26         - improve debug logging
27
28 0.12    2006-08-26
29         - refactor out a hookable finalize_session method, for plugins
30         - make _clear_session_instance_data call NEXT::, so that plugins can
31           hook on to that too
32
33 0.11    2006-08-10
34         - Lazify expiry calculation and store it in a different instance data
35           slot. This provides greater flexibility for implementing hooks like
36           DynamicExpiry the "right" way.
37
38 0.10    2006-08-01
39         - Implement a more well defined finalization order for Session stuff.
40           This solves a problem that was introduced by some value cleanups in
41           the 0.06 release.
42
43 0.09    2006-07-31
44         - Fix Catalyst::Plugin::Session::Test::Store
45
46 0.08    2006-07-31
47         - rerelease because Module::Bane broke the META.yml. HURAAH
48
49 0.07    2006-07-30
50         - Make build tool complain loudly on incompatible versions of state
51           plugins.
52
53 0.06    2006-07-29
54         - Change State plugin API to be pull oriented
55         - Lazify more correctly (mostly performance improvements)
56         - Don't try to compute digest of hash when there is no hash
57
58 0.05    2006-01-01
59         - Un-workaround the Cache::FastMmap (actually Storable) limitation -
60           it's not C::P::Session's business.
61         - add $c->session_expires
62         - refactor guts
63         - improve semantics of session deletion (now deletes flash data too)
64         - improve lazy-load-ness of session data in the light of expiration
65
66 0.04    2005-12-28 09:42:00
67         - Work around a limitation in Cache::FastMmap - must store only
68           references, while expiration was an NV.
69
70 0.03    2005-12-26 10:22:00
71         - Lazify loading of session data for better performance and less chance
72           of race conditions
73         - support for $c->flash a la Ruby on Rails
74         - Fixed bug in sessionid algorithm detection.
75         - Separate __expires from the session data - we write it every time
76         - Lazify saving of session data for better performance and less chance
77           of race conditions
78
79 0.02    2005-11-23 09:40:00
80         - Doc fixes
81         - No more -Engine=Test
82
83 0.01    2005-11-14 12:41:00
84         - Initial release.