CHANGES.rst 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. Latest
  2. ======
  3. Registration API:
  4. * The registration API has been overhauled to function like the login API. In
  5. practice, this means registration requests must now include the following:
  6. 'type':'m.login.password'. See UPGRADE for more information on this.
  7. * The 'user_id' key has been renamed to 'user' to better match the login API.
  8. * There is an additional login type: 'm.login.email.identity'.
  9. * The command client and web client have been updated to reflect these changes.
  10. Changes in synapse 0.2.3 (2014-09-12)
  11. =====================================
  12. Homeserver:
  13. * Fix bug where we stopped sending events to remote home servers if a
  14. user from that home server left, even if there were some still in the
  15. room.
  16. * Fix bugs in the state conflict resolution where it was incorrectly
  17. rejecting events.
  18. Webclient:
  19. * Display room names and topics.
  20. * Allow setting/editing of room names and topics.
  21. * Display information about rooms on the main page.
  22. * Handle ban and kick events in real time.
  23. * VoIP UI and reliability improvements.
  24. * Add glare support for VoIP.
  25. * Improvements to initial startup speed.
  26. * Don't display duplicate join events.
  27. * Local echo of messages.
  28. * Differentiate sending and sent of local echo.
  29. * Various minor bug fixes.
  30. Changes in synapse 0.2.2 (2014-09-06)
  31. =====================================
  32. Homeserver:
  33. * When the server returns state events it now also includes the previous
  34. content.
  35. * Add support for inviting people when creating a new room.
  36. * Make the homeserver inform the room via `m.room.aliases` when a new alias
  37. is added for a room.
  38. * Validate `m.room.power_level` events.
  39. Webclient:
  40. * Add support for captchas on registration.
  41. * Handle `m.room.aliases` events.
  42. * Asynchronously send messages and show a local echo.
  43. * Inform the UI when a message failed to send.
  44. * Only autoscroll on receiving a new message if the user was already at the
  45. bottom of the screen.
  46. * Add support for ban/kick reasons.
  47. Changes in synapse 0.2.1 (2014-09-03)
  48. =====================================
  49. Homeserver:
  50. * Added support for signing up with a third party id.
  51. * Add synctl scripts.
  52. * Added rate limiting.
  53. * Add option to change the external address the content repo uses.
  54. * Presence bug fixes.
  55. Webclient:
  56. * Added support for signing up with a third party id.
  57. * Added support for banning and kicking users.
  58. * Added support for displaying and setting ops.
  59. * Added support for room names.
  60. * Fix bugs with room membership event display.
  61. Changes in synapse 0.2.0 (2014-09-02)
  62. =====================================
  63. This update changes many configuration options, updates the
  64. database schema and mandates SSL for server-server connections.
  65. Homeserver:
  66. * Require SSL for server-server connections.
  67. * Add SSL listener for client-server connections.
  68. * Add ability to use config files.
  69. * Add support for kicking/banning and power levels.
  70. * Allow setting of room names and topics on creation.
  71. * Change presence to include last seen time of the user.
  72. * Change url path prefix to /_matrix/...
  73. * Bug fixes to presence.
  74. Webclient:
  75. * Reskin the CSS for registration and login.
  76. * Various improvements to rooms CSS.
  77. * Support changes in client-server API.
  78. * Bug fixes to VOIP UI.
  79. * Various bug fixes to handling of changes to room member list.
  80. Changes in synapse 0.1.2 (2014-08-29)
  81. =====================================
  82. Webclient:
  83. * Add basic call state UI for VoIP calls.
  84. Changes in synapse 0.1.1 (2014-08-29)
  85. =====================================
  86. Homeserver:
  87. * Fix bug that caused the event stream to not notify some clients about
  88. changes.
  89. Changes in synapse 0.1.0 (2014-08-29)
  90. =====================================
  91. Presence has been reenabled in this release.
  92. Homeserver:
  93. * Update client to server API, including:
  94. - Use a more consistent url scheme.
  95. - Provide more useful information in the initial sync api.
  96. * Change the presence handling to be much more efficient.
  97. * Change the presence server to server API to not require explicit polling of
  98. all users who share a room with a user.
  99. * Fix races in the event streaming logic.
  100. Webclient:
  101. * Update to use new client to server API.
  102. * Add basic VOIP support.
  103. * Add idle timers that change your status to away.
  104. * Add recent rooms column when viewing a room.
  105. * Various network efficiency improvements.
  106. * Add basic mobile browser support.
  107. * Add a settings page.
  108. Changes in synapse 0.0.1 (2014-08-22)
  109. =====================================
  110. Presence has been disabled in this release due to a bug that caused the
  111. homeserver to spam other remote homeservers.
  112. Homeserver:
  113. * Completely change the database schema to support generic event types.
  114. * Improve presence reliability.
  115. * Improve reliability of joining remote rooms.
  116. * Fix bug where room join events were duplicated.
  117. * Improve initial sync API to return more information to the client.
  118. * Stop generating fake messages for room membership events.
  119. Webclient:
  120. * Add tab completion of names.
  121. * Add ability to upload and send images.
  122. * Add profile pages.
  123. * Improve CSS layout of room.
  124. * Disambiguate identical display names.
  125. * Don't get remote users display names and avatars individually.
  126. * Use the new initial sync API to reduce number of round trips to the homeserver.
  127. * Change url scheme to use room aliases instead of room ids where known.
  128. * Increase longpoll timeout.
  129. Changes in synapse 0.0.0 (2014-08-13)
  130. =====================================
  131. * Initial alpha release