ChangeLog 5.5 KB

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