File: ChangeLog

package info (click to toggle)
mono-reference-assemblies 3.12.1%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 604,240 kB
  • ctags: 625,505
  • sloc: cs: 3,967,741; xml: 2,793,081; ansic: 418,042; java: 60,435; sh: 14,833; makefile: 11,576; sql: 7,956; perl: 1,467; cpp: 1,446; yacc: 1,203; python: 598; asm: 422; sed: 16; php: 1
file content (221 lines) | stat: -rw-r--r-- 7,283 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
2010-02-24  Marek Habersack  <mhabersack@novell.com>

	* SessionStateServerHandler.cs, SessionSQLServerHandler.cs: added
	support for session state compression (4.0)

2010-01-20  Marek Habersack  <mhabersack@novell.com>

	* SessionStateBehavior.cs: added (4.0)

2009-10-19  Marek Habersack  <mhabersack@novell.com>

	* SessionStateModule.cs: enabled SQL session state provider.

	* SessionSQLServerHandler.cs: implemented. Uses System.Data.Common
	for provider-agnostic implementation. Until an issue with Npgsql's
	2.0 factory missing is resolved it defaults to using
	Mono.Data.Sqlite as the provider.
	Selecting of the data provider is done by putting DbProviderName
	in the connection string specified in the
	<system.web/sessionState> configuration section.

2009-03-21  Marek Habersack  <mhabersack@novell.com>

	* HttpSessionState.cs: implemented the CookieMode property.

2008-09-15  Marek Habersack  <mhabersack@novell.com>

	* SessionStateModule.cs: correctly let the handler know if an item
	is new when calling SetAndReleaseItemExclusive. Fixes bug #424797
	If handler's GetItem doesn't initialize storeLockId to a non-null
	value, initialize it to 0. Fixes bug #424797

2008-07-29  Marek Habersack  <mhabersack@novell.com>

	* SessionStateModule.cs: use Request.FilePath instead of
	Request.BaseVirtualDirectory to retrieve the cookie-less session
	identifier. Fixes bug #397418

2008-06-04  Marek Habersack  <mhabersack@novell.com>

	* SessionStateModule.cs: set the application modifier path to bare
	session id.

2008-05-30  Marek Habersack  <mhabersack@novell.com>

	* SessionStateModule.cs: do not use synthetized event accessors
	(to avoid locks).

2008-04-24  Marek Habersack  <mhabersack@novell.com>

	* SessionStateModule.cs: reset the storage data item timeout to
	the HttpApplication.Session.Timeout value after the Session_Start
	event is fired. Fixes bug #382644

2007-11-05  Marek Habersack  <mhabersack@novell.com>

	* SessionStateModule.cs: use TimeSpan.TotalMinutes wherever a
	session timeout is required, so that sessions do not expire
	prematurely. Fixes bug #339026. Patch from Adriaan van Kekem
	<adriaanvk@gmail.com>, thanks!

2007-10-17  Marek Habersack  <mhabersack@novell.com>

	* SessionInProcHandler.cs: in certain situations the 'item'
	parameter passed to SetAndReleaseItemExclusive may be null. The
	issue was reported in bug #333898, but the reporter cannot provide
	a test case that triggers the issue. Added work around the problem
	in the way that should have the least impact on the rest of the
	code. If 'item' is null, then the new session item is created
	without the items and staticItems collections - they will be
	initialized to defaults when retrieving the session item. This is
	not a correct fix, but since there is no test case this is the
	best what can be done right now.

2007-10-15  Juraj Skripsky  <js@hotfeet.ch>

	* SessionStateModule.cs (Init): Use HttpApplication.LoadType,
	don't swallow TypeLoadException.

2007-10-15  Marek Habersack  <mhabersack@novell.com>

	* SessionStateServerHandler.cs: adjust order of field
	initialization. 

2007-09-18  Marek Habersack  <mhabersack@novell.com>

	* SessionIDManager.cs: preserve the query part of the url when
	redirecting with cookieless sessions active. Fixes bug #318790

2007-09-07  Marek Habersack  <mhabersack@novell.com>

	* SessionInProcHandler.cs: properly clone the
	ApplicationState.SessionObjects at the start of the request and
	use the copy when creating new storage items. That way session
	scope static objects are valid within a single session only. Fixes
	bug #82709

2007-08-14  Marek Habersack  <mhabersack@novell.com>

	* SessionStateServerHandler.cs: remove unused field.

2007-07-31  Marek Habersack  <mhabersack@novell.com>

	* SessionInProcHandler.cs: initialize the static session objects
	collection from the application state instead of using
	SessionStateUtility.GetSessionStaticObjects. Fixes bug #82193
	* SessionStateServerHandler.cs: as above
	
2007-07-30  Igor Zelmanovich <igorz@mainsoft.com>

	* SessionStateModule.cs:
	ensure release (save) session state at OnEndRequest.	

2007-06-20  Marek Habersack  <mhabersack@novell.com>

	* SessionInProcHandler.cs: use HttpRuntime.InternalCache to keep
	the internal entries.

	* SessionStateModule.cs: if session is abandoned and the handler
	supports expiration, disable the handler's session expiration
	callback and call SessionStateUtility.RaiseSessionEnd
	directly. Fixes bug #81853.

2007-04-30  Marek Habersack  <mhabersack@novell.com>

	* SessionInProcHandler.cs: do not end session when setting and
	releasing item in mid-session. Fixes bugs #81440, #81140 and
	#80723

2007-04-18  Marek Habersack  <mhabersack@novell.com>

	* SessionInProcHandler.cs: added protection against raising early
	session end event when resetting item timeout. Fixes bug #81140

2007-03-12  Konstantin Triger <kostat@mainsoft.com>

	* SessionStateModule.cs: TARGET_J2EE: support only J2EE sessions.

2007-03-06  Marek Habersack  <mhabersack@novell.com>

	* SessionInProcHandler.cs: gracefully handle different value types
	in the session removal handler.

	* SessionStateModule.cs: create an empty container if session data
	is null. Fixes bug 80682

2007-02-19  Konstantin Triger <kostat@mainsoft.com>

	* SessionStateModule.cs: call Session_End callback only if the handler
		does not support expiration.

2007-01-20  Miguel de Icaza  <miguel@novell.com>

	* SessionStateModule.cs: Removed unused variables.

2007-01-07  Konstantin Triger <kostat@mainsoft.com>

	* SessionStateModule.cs: Implemented raising of Session_OnEnd event,
		refactoring.

2006-12-27  Konstantin Triger <kostat@mainsoft.com>

	* SessionIDManager.cs: Pass config to SessionStateModule.IsCookieLess.
	* SessionStateStoreData.cs: fix constructor signature.
	* SessionInProcHandler.cs, SessionStateServerHandler.cs: ensure has a default
		constructor to make instantiating same as for custom provider.
	* SessionStateModule.cs: support custom providers.

2006-12-20  Marek Habersack  <grendello@gmail.com>
	* SessionStateServerHandler.cs:
	implemented for the 2.0 model.

	* SessionStateUtility.cs:
	implemented.

	* SessionStateStoreProviderBase.cs:
	implemented.

	* SessionInProcHandler.cs:
	reimplemented for the 2.0 model.

	* SessionIDManager.cs: implemented.

	* SessionStateModule.cs: copied the
	file to new location and implemented the 2.0 model.

	* SessionSQLServerHandler.cs:
	created. Implementation not done yet.

	* HttpSessionStateContainer.cs: copied
	the file to new location and implemented the 2.0 model.

	* StateServerItem.cs: implementation
	for the 2.0 model.

	* HttpSessionState.cs: reimplemented
	for the 2.0 model.

	* RemoteStateServer.cs: copied the
	file to new location and added new code for the 2.0 model.

	* SessionStateItemCollection.cs:
	implemented.

	* SessionStateActions.cs: moved the
	file to new location and added the None member.

	* ISessionIDManager.cs: moved the file
	to new location.

	* SessionStateItemExpireCallback.cs:
	moved the file to new location.

	* IHttpSessionState.cs: moved the file
	to new location.

	* SessionStateStoreData.cs: moved the
	file to new location and modified for the 2.0 model.

	* ISessionStateItemCollection.cs:
	moved the file to new location.