ChangeLog 6.9 KB

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