ChangeLog 5.8 KB

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