ChangeLog 6.3 KB

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