ChangeLog 6.4 KB

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