ChangeLog 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. 2007-10-15 Marek Habersack <[email protected]>
  2. * SessionStateServerHandler.cs: adjust order of field
  3. initialization.
  4. 2007-09-18 Marek Habersack <[email protected]>
  5. * SessionIDManager.cs: preserve the query part of the url when
  6. redirecting with cookieless sessions active. Fixes bug #318790
  7. 2007-09-07 Marek Habersack <[email protected]>
  8. * SessionInProcHandler.cs: properly clone the
  9. ApplicationState.SessionObjects at the start of the request and
  10. use the copy when creating new storage items. That way session
  11. scope static objects are valid within a single session only. Fixes
  12. bug #82709
  13. 2007-08-14 Marek Habersack <[email protected]>
  14. * SessionStateServerHandler.cs: remove unused field.
  15. 2007-07-31 Marek Habersack <[email protected]>
  16. * SessionInProcHandler.cs: initialize the static session objects
  17. collection from the application state instead of using
  18. SessionStateUtility.GetSessionStaticObjects. Fixes bug #82193
  19. * SessionStateServerHandler.cs: as above
  20. 2007-07-30 Igor Zelmanovich <[email protected]>
  21. * SessionStateModule.cs:
  22. ensure release (save) session state at OnEndRequest.
  23. 2007-06-20 Marek Habersack <[email protected]>
  24. * SessionInProcHandler.cs: use HttpRuntime.InternalCache to keep
  25. the internal entries.
  26. * SessionStateModule.cs: if session is abandoned and the handler
  27. supports expiration, disable the handler's session expiration
  28. callback and call SessionStateUtility.RaiseSessionEnd
  29. directly. Fixes bug #81853.
  30. 2007-04-30 Marek Habersack <[email protected]>
  31. * SessionInProcHandler.cs: do not end session when setting and
  32. releasing item in mid-session. Fixes bugs #81440, #81140 and
  33. #80723
  34. 2007-04-18 Marek Habersack <[email protected]>
  35. * SessionInProcHandler.cs: added protection against raising early
  36. session end event when resetting item timeout. Fixes bug #81140
  37. 2007-03-12 Konstantin Triger <[email protected]>
  38. * SessionStateModule.cs: TARGET_J2EE: support only J2EE sessions.
  39. 2007-03-06 Marek Habersack <[email protected]>
  40. * SessionInProcHandler.cs: gracefully handle different value types
  41. in the session removal handler.
  42. * SessionStateModule.cs: create an empty container if session data
  43. is null. Fixes bug 80682
  44. 2007-02-19 Konstantin Triger <[email protected]>
  45. * SessionStateModule.cs: call Session_End callback only if the handler
  46. does not support expiration.
  47. 2007-01-20 Miguel de Icaza <[email protected]>
  48. * SessionStateModule.cs: Removed unused variables.
  49. 2007-01-07 Konstantin Triger <[email protected]>
  50. * SessionStateModule.cs: Implemented raising of Session_OnEnd event,
  51. refactoring.
  52. 2006-12-27 Konstantin Triger <[email protected]>
  53. * SessionIDManager.cs: Pass config to SessionStateModule.IsCookieLess.
  54. * SessionStateStoreData.cs: fix constructor signature.
  55. * SessionInProcHandler.cs, SessionStateServerHandler.cs: ensure has a default
  56. constructor to make instantiating same as for custom provider.
  57. * SessionStateModule.cs: support custom providers.
  58. 2006-12-20 Marek Habersack <[email protected]>
  59. * SessionStateServerHandler.cs:
  60. implemented for the 2.0 model.
  61. * SessionStateUtility.cs:
  62. implemented.
  63. * SessionStateStoreProviderBase.cs:
  64. implemented.
  65. * SessionInProcHandler.cs:
  66. reimplemented for the 2.0 model.
  67. * SessionIDManager.cs: implemented.
  68. * SessionStateModule.cs: copied the
  69. file to new location and implemented the 2.0 model.
  70. * SessionSQLServerHandler.cs:
  71. created. Implementation not done yet.
  72. * HttpSessionStateContainer.cs: copied
  73. the file to new location and implemented the 2.0 model.
  74. * StateServerItem.cs: implementation
  75. for the 2.0 model.
  76. * HttpSessionState.cs: reimplemented
  77. for the 2.0 model.
  78. * RemoteStateServer.cs: copied the
  79. file to new location and added new code for the 2.0 model.
  80. * SessionStateItemCollection.cs:
  81. implemented.
  82. * SessionStateActions.cs: moved the
  83. file to new location and added the None member.
  84. * ISessionIDManager.cs: moved the file
  85. to new location.
  86. * SessionStateItemExpireCallback.cs:
  87. moved the file to new location.
  88. * IHttpSessionState.cs: moved the file
  89. to new location.
  90. * SessionStateStoreData.cs: moved the
  91. file to new location and modified for the 2.0 model.
  92. * ISessionStateItemCollection.cs:
  93. moved the file to new location.