ChangeLog 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221
  1. 2010-02-24 Marek Habersack <[email protected]>
  2. * SessionStateServerHandler.cs, SessionSQLServerHandler.cs: added
  3. support for session state compression (4.0)
  4. 2010-01-20 Marek Habersack <[email protected]>
  5. * SessionStateBehavior.cs: added (4.0)
  6. 2009-10-19 Marek Habersack <[email protected]>
  7. * SessionStateModule.cs: enabled SQL session state provider.
  8. * SessionSQLServerHandler.cs: implemented. Uses System.Data.Common
  9. for provider-agnostic implementation. Until an issue with Npgsql's
  10. 2.0 factory missing is resolved it defaults to using
  11. Mono.Data.Sqlite as the provider.
  12. Selecting of the data provider is done by putting DbProviderName
  13. in the connection string specified in the
  14. <system.web/sessionState> configuration section.
  15. 2009-03-21 Marek Habersack <[email protected]>
  16. * HttpSessionState.cs: implemented the CookieMode property.
  17. 2008-09-15 Marek Habersack <[email protected]>
  18. * SessionStateModule.cs: correctly let the handler know if an item
  19. is new when calling SetAndReleaseItemExclusive. Fixes bug #424797
  20. If handler's GetItem doesn't initialize storeLockId to a non-null
  21. value, initialize it to 0. Fixes bug #424797
  22. 2008-07-29 Marek Habersack <[email protected]>
  23. * SessionStateModule.cs: use Request.FilePath instead of
  24. Request.BaseVirtualDirectory to retrieve the cookie-less session
  25. identifier. Fixes bug #397418
  26. 2008-06-04 Marek Habersack <[email protected]>
  27. * SessionStateModule.cs: set the application modifier path to bare
  28. session id.
  29. 2008-05-30 Marek Habersack <[email protected]>
  30. * SessionStateModule.cs: do not use synthetized event accessors
  31. (to avoid locks).
  32. 2008-04-24 Marek Habersack <[email protected]>
  33. * SessionStateModule.cs: reset the storage data item timeout to
  34. the HttpApplication.Session.Timeout value after the Session_Start
  35. event is fired. Fixes bug #382644
  36. 2007-11-05 Marek Habersack <[email protected]>
  37. * SessionStateModule.cs: use TimeSpan.TotalMinutes wherever a
  38. session timeout is required, so that sessions do not expire
  39. prematurely. Fixes bug #339026. Patch from Adriaan van Kekem
  40. <[email protected]>, thanks!
  41. 2007-10-17 Marek Habersack <[email protected]>
  42. * SessionInProcHandler.cs: in certain situations the 'item'
  43. parameter passed to SetAndReleaseItemExclusive may be null. The
  44. issue was reported in bug #333898, but the reporter cannot provide
  45. a test case that triggers the issue. Added work around the problem
  46. in the way that should have the least impact on the rest of the
  47. code. If 'item' is null, then the new session item is created
  48. without the items and staticItems collections - they will be
  49. initialized to defaults when retrieving the session item. This is
  50. not a correct fix, but since there is no test case this is the
  51. best what can be done right now.
  52. 2007-10-15 Juraj Skripsky <[email protected]>
  53. * SessionStateModule.cs (Init): Use HttpApplication.LoadType,
  54. don't swallow TypeLoadException.
  55. 2007-10-15 Marek Habersack <[email protected]>
  56. * SessionStateServerHandler.cs: adjust order of field
  57. initialization.
  58. 2007-09-18 Marek Habersack <[email protected]>
  59. * SessionIDManager.cs: preserve the query part of the url when
  60. redirecting with cookieless sessions active. Fixes bug #318790
  61. 2007-09-07 Marek Habersack <[email protected]>
  62. * SessionInProcHandler.cs: properly clone the
  63. ApplicationState.SessionObjects at the start of the request and
  64. use the copy when creating new storage items. That way session
  65. scope static objects are valid within a single session only. Fixes
  66. bug #82709
  67. 2007-08-14 Marek Habersack <[email protected]>
  68. * SessionStateServerHandler.cs: remove unused field.
  69. 2007-07-31 Marek Habersack <[email protected]>
  70. * SessionInProcHandler.cs: initialize the static session objects
  71. collection from the application state instead of using
  72. SessionStateUtility.GetSessionStaticObjects. Fixes bug #82193
  73. * SessionStateServerHandler.cs: as above
  74. 2007-07-30 Igor Zelmanovich <[email protected]>
  75. * SessionStateModule.cs:
  76. ensure release (save) session state at OnEndRequest.
  77. 2007-06-20 Marek Habersack <[email protected]>
  78. * SessionInProcHandler.cs: use HttpRuntime.InternalCache to keep
  79. the internal entries.
  80. * SessionStateModule.cs: if session is abandoned and the handler
  81. supports expiration, disable the handler's session expiration
  82. callback and call SessionStateUtility.RaiseSessionEnd
  83. directly. Fixes bug #81853.
  84. 2007-04-30 Marek Habersack <[email protected]>
  85. * SessionInProcHandler.cs: do not end session when setting and
  86. releasing item in mid-session. Fixes bugs #81440, #81140 and
  87. #80723
  88. 2007-04-18 Marek Habersack <[email protected]>
  89. * SessionInProcHandler.cs: added protection against raising early
  90. session end event when resetting item timeout. Fixes bug #81140
  91. 2007-03-12 Konstantin Triger <[email protected]>
  92. * SessionStateModule.cs: TARGET_J2EE: support only J2EE sessions.
  93. 2007-03-06 Marek Habersack <[email protected]>
  94. * SessionInProcHandler.cs: gracefully handle different value types
  95. in the session removal handler.
  96. * SessionStateModule.cs: create an empty container if session data
  97. is null. Fixes bug 80682
  98. 2007-02-19 Konstantin Triger <[email protected]>
  99. * SessionStateModule.cs: call Session_End callback only if the handler
  100. does not support expiration.
  101. 2007-01-20 Miguel de Icaza <[email protected]>
  102. * SessionStateModule.cs: Removed unused variables.
  103. 2007-01-07 Konstantin Triger <[email protected]>
  104. * SessionStateModule.cs: Implemented raising of Session_OnEnd event,
  105. refactoring.
  106. 2006-12-27 Konstantin Triger <[email protected]>
  107. * SessionIDManager.cs: Pass config to SessionStateModule.IsCookieLess.
  108. * SessionStateStoreData.cs: fix constructor signature.
  109. * SessionInProcHandler.cs, SessionStateServerHandler.cs: ensure has a default
  110. constructor to make instantiating same as for custom provider.
  111. * SessionStateModule.cs: support custom providers.
  112. 2006-12-20 Marek Habersack <[email protected]>
  113. * SessionStateServerHandler.cs:
  114. implemented for the 2.0 model.
  115. * SessionStateUtility.cs:
  116. implemented.
  117. * SessionStateStoreProviderBase.cs:
  118. implemented.
  119. * SessionInProcHandler.cs:
  120. reimplemented for the 2.0 model.
  121. * SessionIDManager.cs: implemented.
  122. * SessionStateModule.cs: copied the
  123. file to new location and implemented the 2.0 model.
  124. * SessionSQLServerHandler.cs:
  125. created. Implementation not done yet.
  126. * HttpSessionStateContainer.cs: copied
  127. the file to new location and implemented the 2.0 model.
  128. * StateServerItem.cs: implementation
  129. for the 2.0 model.
  130. * HttpSessionState.cs: reimplemented
  131. for the 2.0 model.
  132. * RemoteStateServer.cs: copied the
  133. file to new location and added new code for the 2.0 model.
  134. * SessionStateItemCollection.cs:
  135. implemented.
  136. * SessionStateActions.cs: moved the
  137. file to new location and added the None member.
  138. * ISessionIDManager.cs: moved the file
  139. to new location.
  140. * SessionStateItemExpireCallback.cs:
  141. moved the file to new location.
  142. * IHttpSessionState.cs: moved the file
  143. to new location.
  144. * SessionStateStoreData.cs: moved the
  145. file to new location and modified for the 2.0 model.
  146. * ISessionStateItemCollection.cs:
  147. moved the file to new location.