Checking in changes prior to tagging of version 0.24. Changelog diff is:
[catagits/Catalyst-Plugin-Session.git] / Changes
1 Revision history for Perl extension Catalyst::Plugin::Session
2
3 0.24 2009-06-23
4         - Be more paranoid about getting values of $c->req to avoid issues
5           with old Test::WWW::Mechanize::Catalyst.
6         - Check we have a modern version of TWMC before doing the tests which
7           need it.
8
9 0.23 2009-06-16
10         - Add the verify_user_agent config parameter (kmx)
11         - Add a test case to prove that logging in with a session cookie still 
12           causes a new cookie to be issued for you, proving that the code is
13           not vulnerable to a session fixation attack. (t0m)
14
15 0.22 2009-05-13
16         - INSANE HACK to ensure B::Hooks::EndOfScope inlines us a new method right now
17           in Catalyst::Plugin::Session::Test::Store for Catalyst 5.80004 compatibility. 
18
19           This change does not in any way affect normal users - it is just due to the
20           fairly crazy way that Catalyst::Plugin::Session::Test::Store works, and that
21           module is _only_ used for unit testing session store plugins pre-installation.
22
23           Session::Test::Store should be replaced with a more sane solution, and other
24           CPAN modules using it moved away from using it, but this change keeps stops
25           new Catalyst breaking other distributions right now.
26
27 0.21 2009-04-30
28         - Hide the internal packages in Catalyst::Plugin::Session::Test::Store from PAUSE.
29         - Convert from CAF to Moose with Moosex::Emulate::Class::Accessor::Fast
30
31 0.20 2009-02-05
32         - No code changes since 0.19_01 dev release.
33         - Add IDEAS.txt which is an irc log of discussion about the next-generation
34           session plugin from discussion on #catalyst-dev
35         - Remove TODO file, which is no longer relevant.
36
37 0.19_01 2009-01-09
38         - Switch from using NEXT to Class::C3 for method re-dispatch.
39         - Use shipit to package the dist.
40         - Switch to Module::install.
41         - Flash data is now stored inside the session (key "__flash") to avoid
42           duplicate entry errors caused by simultaneous select/insert/delete of
43           flash rows when using DBI as a Store. (Sergio Salvi)
44         - Fix session finalization order that caused HTTP responses to be sent
45           before the session is actually finalized and stored in its Store.
46           (Sergio Salvi)
47
48 0.19    2007-10-08
49
50 0.18    2007-08-15
51         - Fix Apache engine issue (RT #28845)
52
53 0.17    2007-07-16
54         - Skip a test if Cookie is not installed (RT #28137)
55
56 0.16    2007-07-03
57         - Stupid makefile
58
59 0.15    2007-06-24
60         - Fix the bug that caused sessions to expire immediately when another
61           session was deleted previously in the same request cycle
62         - Changed finalize() to redispatch before saving session
63           so other finalize methods still have access to it.
64
65 0.14    2007-01-31
66         - Disable verify_address.
67         - update flash to work like session
68
69 0.13    2006-10-12
70         - Rerelease with slightly changed test due to a behavior change in
71           Test::MockObject
72         - add `clear_flash`
73         - improve debug logging
74
75 0.12    2006-08-26
76         - refactor out a hookable finalize_session method, for plugins
77         - make _clear_session_instance_data call NEXT::, so that plugins can
78           hook on to that too
79
80 0.11    2006-08-10
81         - Lazify expiry calculation and store it in a different instance data
82           slot. This provides greater flexibility for implementing hooks like
83           DynamicExpiry the "right" way.
84
85 0.10    2006-08-01
86         - Implement a more well defined finalization order for Session stuff.
87           This solves a problem that was introduced by some value cleanups in
88           the 0.06 release.
89
90 0.09    2006-07-31
91         - Fix Catalyst::Plugin::Session::Test::Store
92
93 0.08    2006-07-31
94         - rerelease because Module::Bane broke the META.yml. HURAAH
95
96 0.07    2006-07-30
97         - Make build tool complain loudly on incompatible versions of state
98           plugins.
99
100 0.06    2006-07-29
101         - Change State plugin API to be pull oriented
102         - Lazify more correctly (mostly performance improvements)
103         - Don't try to compute digest of hash when there is no hash
104
105 0.05    2006-01-01
106         - Un-workaround the Cache::FastMmap (actually Storable) limitation -
107           it's not C::P::Session's business.
108         - add $c->session_expires
109         - refactor guts
110         - improve semantics of session deletion (now deletes flash data too)
111         - improve lazy-load-ness of session data in the light of expiration
112
113 0.04    2005-12-28 09:42:00
114         - Work around a limitation in Cache::FastMmap - must store only
115           references, while expiration was an NV.
116
117 0.03    2005-12-26 10:22:00
118         - Lazify loading of session data for better performance and less chance
119           of race conditions
120         - support for $c->flash a la Ruby on Rails
121         - Fixed bug in sessionid algorithm detection.
122         - Separate __expires from the session data - we write it every time
123         - Lazify saving of session data for better performance and less chance
124           of race conditions
125
126 0.02    2005-11-23 09:40:00
127         - Doc fixes
128         - No more -Engine=Test
129
130 0.01    2005-11-14 12:41:00
131         - Initial release.