ChangeLog 6.0 KB

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