CHANGES.rst 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465
  1. Changes in synapse vX
  2. =====================
  3. * Changed config option from ``disable_registration`` to
  4. ``enable_registration``. Old option will be ignored.
  5. Changes in synapse v0.8.1 (2015-03-18)
  6. ======================================
  7. * Disable registration by default. New users can be added using the command
  8. ``register_new_matrix_user`` or by enabling registration in the config.
  9. * Add metrics to synapse. To enable metrics use config options
  10. ``enable_metrics`` and ``metrics_port``.
  11. * Fix bug where banning only kicked the user.
  12. Changes in synapse v0.8.0 (2015-03-06)
  13. ======================================
  14. General:
  15. * Add support for registration fallback. This is a page hosted on the server
  16. which allows a user to register for an account, regardless of what client
  17. they are using (e.g. mobile devices).
  18. * Added new default push rules and made them configurable by clients:
  19. * Suppress all notice messages.
  20. * Notify when invited to a new room.
  21. * Notify for messages that don't match any rule.
  22. * Notify on incoming call.
  23. Federation:
  24. * Added per host server side rate-limiting of incoming federation requests.
  25. * Added a ``/get_missing_events/`` API to federation to reduce number of
  26. ``/events/`` requests.
  27. Configuration:
  28. * Added configuration option to disable registration:
  29. ``disable_registration``.
  30. * Added configuration option to change soft limit of number of open file
  31. descriptors: ``soft_file_limit``.
  32. * Make ``tls_private_key_path`` optional when running with ``no_tls``.
  33. Application services:
  34. * Application services can now poll on the CS API ``/events`` for their events,
  35. by providing their application service ``access_token``.
  36. * Added exclusive namespace support to application services API.
  37. Changes in synapse v0.7.1 (2015-02-19)
  38. ======================================
  39. * Initial alpha implementation of parts of the Application Services API.
  40. Including:
  41. - AS Registration / Unregistration
  42. - User Query API
  43. - Room Alias Query API
  44. - Push transport for receiving events.
  45. - User/Alias namespace admin control
  46. * Add cache when fetching events from remote servers to stop repeatedly
  47. fetching events with bad signatures.
  48. * Respect the per remote server retry scheme when fetching both events and
  49. server keys to reduce the number of times we send requests to dead servers.
  50. * Inform remote servers when the local server fails to handle a received event.
  51. * Turn off python bytecode generation due to problems experienced when
  52. upgrading from previous versions.
  53. Changes in synapse v0.7.0 (2015-02-12)
  54. ======================================
  55. * Add initial implementation of the query auth federation API, allowing
  56. servers to agree on whether an event should be allowed or rejected.
  57. * Persist events we have rejected from federation, fixing the bug where
  58. servers would keep requesting the same events.
  59. * Various federation performance improvements, including:
  60. - Add in memory caches on queries such as:
  61. * Computing the state of a room at a point in time, used for
  62. authorization on federation requests.
  63. * Fetching events from the database.
  64. * User's room membership, used for authorizing presence updates.
  65. - Upgraded JSON library to improve parsing and serialisation speeds.
  66. * Add default avatars to new user accounts using pydenticon library.
  67. * Correctly time out federation requests.
  68. * Retry federation requests against different servers.
  69. * Add support for push and push rules.
  70. * Add alpha versions of proposed new CSv2 APIs, including ``/sync`` API.
  71. Changes in synapse 0.6.1 (2015-01-07)
  72. =====================================
  73. * Major optimizations to improve performance of initial sync and event sending
  74. in large rooms (by up to 10x)
  75. * Media repository now includes a Content-Length header on media downloads.
  76. * Improve quality of thumbnails by changing resizing algorithm.
  77. Changes in synapse 0.6.0 (2014-12-16)
  78. =====================================
  79. * Add new API for media upload and download that supports thumbnailing.
  80. * Replicate media uploads over multiple homeservers so media is always served
  81. to clients from their local homeserver. This obsoletes the
  82. --content-addr parameter and confusion over accessing content directly
  83. from remote homeservers.
  84. * Implement exponential backoff when retrying federation requests when
  85. sending to remote homeservers which are offline.
  86. * Implement typing notifications.
  87. * Fix bugs where we sent events with invalid signatures due to bugs where
  88. we incorrectly persisted events.
  89. * Improve performance of database queries involving retrieving events.
  90. Changes in synapse 0.5.4a (2014-12-13)
  91. ======================================
  92. * Fix bug while generating the error message when a file path specified in
  93. the config doesn't exist.
  94. Changes in synapse 0.5.4 (2014-12-03)
  95. =====================================
  96. * Fix presence bug where some rooms did not display presence updates for
  97. remote users.
  98. * Do not log SQL timing log lines when started with "-v"
  99. * Fix potential memory leak.
  100. Changes in synapse 0.5.3c (2014-12-02)
  101. ======================================
  102. * Change the default value for the `content_addr` option to use the HTTP
  103. listener, as by default the HTTPS listener will be using a self-signed
  104. certificate.
  105. Changes in synapse 0.5.3 (2014-11-27)
  106. =====================================
  107. * Fix bug that caused joining a remote room to fail if a single event was not
  108. signed correctly.
  109. * Fix bug which caused servers to continuously try and fetch events from other
  110. servers.
  111. Changes in synapse 0.5.2 (2014-11-26)
  112. =====================================
  113. Fix major bug that caused rooms to disappear from peoples initial sync.
  114. Changes in synapse 0.5.1 (2014-11-26)
  115. =====================================
  116. See UPGRADES.rst for specific instructions on how to upgrade.
  117. * Fix bug where we served up an Event that did not match its signatures.
  118. * Fix regression where we no longer correctly handled the case where a
  119. homeserver receives an event for a room it doesn't recognise (but is in.)
  120. Changes in synapse 0.5.0 (2014-11-19)
  121. =====================================
  122. This release includes changes to the federation protocol and client-server API
  123. that is not backwards compatible.
  124. This release also changes the internal database schemas and so requires servers to
  125. drop their current history. See UPGRADES.rst for details.
  126. Homeserver:
  127. * Add authentication and authorization to the federation protocol. Events are
  128. now signed by their originating homeservers.
  129. * Implement the new authorization model for rooms.
  130. * Split out web client into a seperate repository: matrix-angular-sdk.
  131. * Change the structure of PDUs.
  132. * Fix bug where user could not join rooms via an alias containing 4-byte
  133. UTF-8 characters.
  134. * Merge concept of PDUs and Events internally.
  135. * Improve logging by adding request ids to log lines.
  136. * Implement a very basic room initial sync API.
  137. * Implement the new invite/join federation APIs.
  138. Webclient:
  139. * The webclient has been moved to a seperate repository.
  140. Changes in synapse 0.4.2 (2014-10-31)
  141. =====================================
  142. Homeserver:
  143. * Fix bugs where we did not notify users of correct presence updates.
  144. * Fix bug where we did not handle sub second event stream timeouts.
  145. Webclient:
  146. * Add ability to click on messages to see JSON.
  147. * Add ability to redact messages.
  148. * Add ability to view and edit all room state JSON.
  149. * Handle incoming redactions.
  150. * Improve feedback on errors.
  151. * Fix bugs in mobile CSS.
  152. * Fix bugs with desktop notifications.
  153. Changes in synapse 0.4.1 (2014-10-17)
  154. =====================================
  155. Webclient:
  156. * Fix bug with display of timestamps.
  157. Changes in synpase 0.4.0 (2014-10-17)
  158. =====================================
  159. This release includes changes to the federation protocol and client-server API
  160. that is not backwards compatible.
  161. The Matrix specification has been moved to a separate git repository:
  162. http://github.com/matrix-org/matrix-doc
  163. You will also need an updated syutil and config. See UPGRADES.rst.
  164. Homeserver:
  165. * Sign federation transactions to assert strong identity over federation.
  166. * Rename timestamp keys in PDUs and events from 'ts' and 'hsob_ts' to 'origin_server_ts'.
  167. Changes in synapse 0.3.4 (2014-09-25)
  168. =====================================
  169. This version adds support for using a TURN server. See docs/turn-howto.rst on
  170. how to set one up.
  171. Homeserver:
  172. * Add support for redaction of messages.
  173. * Fix bug where inviting a user on a remote home server could take up to
  174. 20-30s.
  175. * Implement a get current room state API.
  176. * Add support specifying and retrieving turn server configuration.
  177. Webclient:
  178. * Add button to send messages to users from the home page.
  179. * Add support for using TURN for VoIP calls.
  180. * Show display name change messages.
  181. * Fix bug where the client didn't get the state of a newly joined room
  182. until after it has been refreshed.
  183. * Fix bugs with tab complete.
  184. * Fix bug where holding down the down arrow caused chrome to chew 100% CPU.
  185. * Fix bug where desktop notifications occasionally used "Undefined" as the
  186. display name.
  187. * Fix more places where we sometimes saw room IDs incorrectly.
  188. * Fix bug which caused lag when entering text in the text box.
  189. Changes in synapse 0.3.3 (2014-09-22)
  190. =====================================
  191. Homeserver:
  192. * Fix bug where you continued to get events for rooms you had left.
  193. Webclient:
  194. * Add support for video calls with basic UI.
  195. * Fix bug where one to one chats were named after your display name rather
  196. than the other person's.
  197. * Fix bug which caused lag when typing in the textarea.
  198. * Refuse to run on browsers we know won't work.
  199. * Trigger pagination when joining new rooms.
  200. * Fix bug where we sometimes didn't display invitations in recents.
  201. * Automatically join room when accepting a VoIP call.
  202. * Disable outgoing and reject incoming calls on browsers we don't support
  203. VoIP in.
  204. * Don't display desktop notifications for messages in the room you are
  205. non-idle and speaking in.
  206. Changes in synapse 0.3.2 (2014-09-18)
  207. =====================================
  208. Webclient:
  209. * Fix bug where an empty "bing words" list in old accounts didn't send
  210. notifications when it should have done.
  211. Changes in synapse 0.3.1 (2014-09-18)
  212. =====================================
  213. This is a release to hotfix v0.3.0 to fix two regressions.
  214. Webclient:
  215. * Fix a regression where we sometimes displayed duplicate events.
  216. * Fix a regression where we didn't immediately remove rooms you were
  217. banned in from the recents list.
  218. Changes in synapse 0.3.0 (2014-09-18)
  219. =====================================
  220. See UPGRADE for information about changes to the client server API, including
  221. breaking backwards compatibility with VoIP calls and registration API.
  222. Homeserver:
  223. * When a user changes their displayname or avatar the server will now update
  224. all their join states to reflect this.
  225. * The server now adds "age" key to events to indicate how old they are. This
  226. is clock independent, so at no point does any server or webclient have to
  227. assume their clock is in sync with everyone else.
  228. * Fix bug where we didn't correctly pull in missing PDUs.
  229. * Fix bug where prev_content key wasn't always returned.
  230. * Add support for password resets.
  231. Webclient:
  232. * Improve page content loading.
  233. * Join/parts now trigger desktop notifications.
  234. * Always show room aliases in the UI if one is present.
  235. * No longer show user-count in the recents side panel.
  236. * Add up & down arrow support to the text box for message sending to step
  237. through your sent history.
  238. * Don't display notifications for our own messages.
  239. * Emotes are now formatted correctly in desktop notifications.
  240. * The recents list now differentiates between public & private rooms.
  241. * Fix bug where when switching between rooms the pagination flickered before
  242. the view jumped to the bottom of the screen.
  243. * Add bing word support.
  244. Registration API:
  245. * The registration API has been overhauled to function like the login API. In
  246. practice, this means registration requests must now include the following:
  247. 'type':'m.login.password'. See UPGRADE for more information on this.
  248. * The 'user_id' key has been renamed to 'user' to better match the login API.
  249. * There is an additional login type: 'm.login.email.identity'.
  250. * The command client and web client have been updated to reflect these changes.
  251. Changes in synapse 0.2.3 (2014-09-12)
  252. =====================================
  253. Homeserver:
  254. * Fix bug where we stopped sending events to remote home servers if a
  255. user from that home server left, even if there were some still in the
  256. room.
  257. * Fix bugs in the state conflict resolution where it was incorrectly
  258. rejecting events.
  259. Webclient:
  260. * Display room names and topics.
  261. * Allow setting/editing of room names and topics.
  262. * Display information about rooms on the main page.
  263. * Handle ban and kick events in real time.
  264. * VoIP UI and reliability improvements.
  265. * Add glare support for VoIP.
  266. * Improvements to initial startup speed.
  267. * Don't display duplicate join events.
  268. * Local echo of messages.
  269. * Differentiate sending and sent of local echo.
  270. * Various minor bug fixes.
  271. Changes in synapse 0.2.2 (2014-09-06)
  272. =====================================
  273. Homeserver:
  274. * When the server returns state events it now also includes the previous
  275. content.
  276. * Add support for inviting people when creating a new room.
  277. * Make the homeserver inform the room via `m.room.aliases` when a new alias
  278. is added for a room.
  279. * Validate `m.room.power_level` events.
  280. Webclient:
  281. * Add support for captchas on registration.
  282. * Handle `m.room.aliases` events.
  283. * Asynchronously send messages and show a local echo.
  284. * Inform the UI when a message failed to send.
  285. * Only autoscroll on receiving a new message if the user was already at the
  286. bottom of the screen.
  287. * Add support for ban/kick reasons.
  288. Changes in synapse 0.2.1 (2014-09-03)
  289. =====================================
  290. Homeserver:
  291. * Added support for signing up with a third party id.
  292. * Add synctl scripts.
  293. * Added rate limiting.
  294. * Add option to change the external address the content repo uses.
  295. * Presence bug fixes.
  296. Webclient:
  297. * Added support for signing up with a third party id.
  298. * Added support for banning and kicking users.
  299. * Added support for displaying and setting ops.
  300. * Added support for room names.
  301. * Fix bugs with room membership event display.
  302. Changes in synapse 0.2.0 (2014-09-02)
  303. =====================================
  304. This update changes many configuration options, updates the
  305. database schema and mandates SSL for server-server connections.
  306. Homeserver:
  307. * Require SSL for server-server connections.
  308. * Add SSL listener for client-server connections.
  309. * Add ability to use config files.
  310. * Add support for kicking/banning and power levels.
  311. * Allow setting of room names and topics on creation.
  312. * Change presence to include last seen time of the user.
  313. * Change url path prefix to /_matrix/...
  314. * Bug fixes to presence.
  315. Webclient:
  316. * Reskin the CSS for registration and login.
  317. * Various improvements to rooms CSS.
  318. * Support changes in client-server API.
  319. * Bug fixes to VOIP UI.
  320. * Various bug fixes to handling of changes to room member list.
  321. Changes in synapse 0.1.2 (2014-08-29)
  322. =====================================
  323. Webclient:
  324. * Add basic call state UI for VoIP calls.
  325. Changes in synapse 0.1.1 (2014-08-29)
  326. =====================================
  327. Homeserver:
  328. * Fix bug that caused the event stream to not notify some clients about
  329. changes.
  330. Changes in synapse 0.1.0 (2014-08-29)
  331. =====================================
  332. Presence has been reenabled in this release.
  333. Homeserver:
  334. * Update client to server API, including:
  335. - Use a more consistent url scheme.
  336. - Provide more useful information in the initial sync api.
  337. * Change the presence handling to be much more efficient.
  338. * Change the presence server to server API to not require explicit polling of
  339. all users who share a room with a user.
  340. * Fix races in the event streaming logic.
  341. Webclient:
  342. * Update to use new client to server API.
  343. * Add basic VOIP support.
  344. * Add idle timers that change your status to away.
  345. * Add recent rooms column when viewing a room.
  346. * Various network efficiency improvements.
  347. * Add basic mobile browser support.
  348. * Add a settings page.
  349. Changes in synapse 0.0.1 (2014-08-22)
  350. =====================================
  351. Presence has been disabled in this release due to a bug that caused the
  352. homeserver to spam other remote homeservers.
  353. Homeserver:
  354. * Completely change the database schema to support generic event types.
  355. * Improve presence reliability.
  356. * Improve reliability of joining remote rooms.
  357. * Fix bug where room join events were duplicated.
  358. * Improve initial sync API to return more information to the client.
  359. * Stop generating fake messages for room membership events.
  360. Webclient:
  361. * Add tab completion of names.
  362. * Add ability to upload and send images.
  363. * Add profile pages.
  364. * Improve CSS layout of room.
  365. * Disambiguate identical display names.
  366. * Don't get remote users display names and avatars individually.
  367. * Use the new initial sync API to reduce number of round trips to the homeserver.
  368. * Change url scheme to use room aliases instead of room ids where known.
  369. * Increase longpoll timeout.
  370. Changes in synapse 0.0.0 (2014-08-13)
  371. =====================================
  372. * Initial alpha release