ChangeLog 5.3 KB

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