CHANGES.rst 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735
  1. Changes in synapse v0.10.0-r2 (2015-09-16)
  2. ==========================================
  3. * Fix bug where we always fetched remote server signing keys instead of using
  4. ones in our cache.
  5. * Fix adding threepids to an existing account.
  6. * Fix bug with invinting over federation where remote server was already in
  7. the room. (PR #281, SYN-392)
  8. Changes in synapse v0.10.0-r1 (2015-09-08)
  9. ==========================================
  10. * Fix bug with python packaging
  11. Changes in synapse v0.10.0 (2015-09-03)
  12. =======================================
  13. No change from release candidate.
  14. Changes in synapse v0.10.0-rc6 (2015-09-02)
  15. ===========================================
  16. * Remove some of the old database upgrade scripts.
  17. * Fix database port script to work with newly created sqlite databases.
  18. Changes in synapse v0.10.0-rc5 (2015-08-27)
  19. ===========================================
  20. * Fix bug that broke downloading files with ascii filenames across federation.
  21. Changes in synapse v0.10.0-rc4 (2015-08-27)
  22. ===========================================
  23. * Allow UTF-8 filenames for upload. (PR #259)
  24. Changes in synapse v0.10.0-rc3 (2015-08-25)
  25. ===========================================
  26. * Add ``--keys-directory`` config option to specify where files such as
  27. certs and signing keys should be stored in, when using ``--generate-config``
  28. or ``--generate-keys``. (PR #250)
  29. * Allow ``--config-path`` to specify a directory, causing synapse to use all
  30. \*.yaml files in the directory as config files. (PR #249)
  31. * Add ``web_client_location`` config option to specify static files to be
  32. hosted by synapse under ``/_matrix/client``. (PR #245)
  33. * Add helper utility to synapse to read and parse the config files and extract
  34. the value of a given key. For example::
  35. $ python -m synapse.config read server_name -c homeserver.yaml
  36. localhost
  37. (PR #246)
  38. Changes in synapse v0.10.0-rc2 (2015-08-24)
  39. ===========================================
  40. * Fix bug where we incorrectly populated the ``event_forward_extremities``
  41. table, resulting in problems joining large remote rooms (e.g.
  42. ``#matrix:matrix.org``)
  43. * Reduce the number of times we wake up pushers by not listening for presence
  44. or typing events, reducing the CPU cost of each pusher.
  45. Changes in synapse v0.10.0-rc1 (2015-08-21)
  46. ===========================================
  47. Also see v0.9.4-rc1 changelog, which has been amalgamated into this release.
  48. General:
  49. * Upgrade to Twisted 15 (PR #173)
  50. * Add support for serving and fetching encryption keys over federation.
  51. (PR #208)
  52. * Add support for logging in with email address (PR #234)
  53. * Add support for new ``m.room.canonical_alias`` event. (PR #233)
  54. * Change synapse to treat user IDs case insensitively during registration and
  55. login. (If two users already exist with case insensitive matching user ids,
  56. synapse will continue to require them to specify their user ids exactly.)
  57. * Error if a user tries to register with an email already in use. (PR #211)
  58. * Add extra and improve existing caches (PR #212, #219, #226, #228)
  59. * Batch various storage request (PR #226, #228)
  60. * Fix bug where we didn't correctly log the entity that triggered the request
  61. if the request came in via an application service (PR #230)
  62. * Fix bug where we needlessly regenerated the full list of rooms an AS is
  63. interested in. (PR #232)
  64. * Add support for AS's to use v2_alpha registration API (PR #210)
  65. Configuration:
  66. * Add ``--generate-keys`` that will generate any missing cert and key files in
  67. the configuration files. This is equivalent to running ``--generate-config``
  68. on an existing configuration file. (PR #220)
  69. * ``--generate-config`` now no longer requires a ``--server-name`` parameter
  70. when used on existing configuration files. (PR #220)
  71. * Add ``--print-pidfile`` flag that controls the printing of the pid to stdout
  72. of the demonised process. (PR #213)
  73. Media Repository:
  74. * Fix bug where we picked a lower resolution image than requested. (PR #205)
  75. * Add support for specifying if a the media repository should dynamically
  76. thumbnail images or not. (PR #206)
  77. Metrics:
  78. * Add statistics from the reactor to the metrics API. (PR #224, #225)
  79. Demo Homeservers:
  80. * Fix starting the demo homeservers without rate-limiting enabled. (PR #182)
  81. * Fix enabling registration on demo homeservers (PR #223)
  82. Changes in synapse v0.9.4-rc1 (2015-07-21)
  83. ==========================================
  84. General:
  85. * Add basic implementation of receipts. (SPEC-99)
  86. * Add support for configuration presets in room creation API. (PR #203)
  87. * Add auth event that limits the visibility of history for new users.
  88. (SPEC-134)
  89. * Add SAML2 login/registration support. (PR #201. Thanks Muthu Subramanian!)
  90. * Add client side key management APIs for end to end encryption. (PR #198)
  91. * Change power level semantics so that you cannot kick, ban or change power
  92. levels of users that have equal or greater power level than you. (SYN-192)
  93. * Improve performance by bulk inserting events where possible. (PR #193)
  94. * Improve performance by bulk verifying signatures where possible. (PR #194)
  95. Configuration:
  96. * Add support for including TLS certificate chains.
  97. Media Repository:
  98. * Add Content-Disposition headers to content repository responses. (SYN-150)
  99. Changes in synapse v0.9.3 (2015-07-01)
  100. ======================================
  101. No changes from v0.9.3 Release Candidate 1.
  102. Changes in synapse v0.9.3-rc1 (2015-06-23)
  103. ==========================================
  104. General:
  105. * Fix a memory leak in the notifier. (SYN-412)
  106. * Improve performance of room initial sync. (SYN-418)
  107. * General improvements to logging.
  108. * Remove ``access_token`` query params from ``INFO`` level logging.
  109. Configuration:
  110. * Add support for specifying and configuring multiple listeners. (SYN-389)
  111. Application services:
  112. * Fix bug where synapse failed to send user queries to application services.
  113. Changes in synapse v0.9.2-r2 (2015-06-15)
  114. =========================================
  115. Fix packaging so that schema delta python files get included in the package.
  116. Changes in synapse v0.9.2 (2015-06-12)
  117. ======================================
  118. General:
  119. * Use ultrajson for json (de)serialisation when a canonical encoding is not
  120. required. Ultrajson is significantly faster than simplejson in certain
  121. circumstances.
  122. * Use connection pools for outgoing HTTP connections.
  123. * Process thumbnails on separate threads.
  124. Configuration:
  125. * Add option, ``gzip_responses``, to disable HTTP response compression.
  126. Federation:
  127. * Improve resilience of backfill by ensuring we fetch any missing auth events.
  128. * Improve performance of backfill and joining remote rooms by removing
  129. unnecessary computations. This included handling events we'd previously
  130. handled as well as attempting to compute the current state for outliers.
  131. Changes in synapse v0.9.1 (2015-05-26)
  132. ======================================
  133. General:
  134. * Add support for backfilling when a client paginates. This allows servers to
  135. request history for a room from remote servers when a client tries to
  136. paginate history the server does not have - SYN-36
  137. * Fix bug where you couldn't disable non-default pushrules - SYN-378
  138. * Fix ``register_new_user`` script - SYN-359
  139. * Improve performance of fetching events from the database, this improves both
  140. initialSync and sending of events.
  141. * Improve performance of event streams, allowing synapse to handle more
  142. simultaneous connected clients.
  143. Federation:
  144. * Fix bug with existing backfill implementation where it returned the wrong
  145. selection of events in some circumstances.
  146. * Improve performance of joining remote rooms.
  147. Configuration:
  148. * Add support for changing the bind host of the metrics listener via the
  149. ``metrics_bind_host`` option.
  150. Changes in synapse v0.9.0-r5 (2015-05-21)
  151. =========================================
  152. * Add more database caches to reduce amount of work done for each pusher. This
  153. radically reduces CPU usage when multiple pushers are set up in the same room.
  154. Changes in synapse v0.9.0 (2015-05-07)
  155. ======================================
  156. General:
  157. * Add support for using a PostgreSQL database instead of SQLite. See
  158. `docs/postgres.rst`_ for details.
  159. * Add password change and reset APIs. See `Registration`_ in the spec.
  160. * Fix memory leak due to not releasing stale notifiers - SYN-339.
  161. * Fix race in caches that occasionally caused some presence updates to be
  162. dropped - SYN-369.
  163. * Check server name has not changed on restart.
  164. * Add a sample systemd unit file and a logger configuration in
  165. contrib/systemd. Contributed Ivan Shapovalov.
  166. Federation:
  167. * Add key distribution mechanisms for fetching public keys of unavailable
  168. remote home servers. See `Retrieving Server Keys`_ in the spec.
  169. Configuration:
  170. * Add support for multiple config files.
  171. * Add support for dictionaries in config files.
  172. * Remove support for specifying config options on the command line, except
  173. for:
  174. * ``--daemonize`` - Daemonize the home server.
  175. * ``--manhole`` - Turn on the twisted telnet manhole service on the given
  176. port.
  177. * ``--database-path`` - The path to a sqlite database to use.
  178. * ``--verbose`` - The verbosity level.
  179. * ``--log-file`` - File to log to.
  180. * ``--log-config`` - Python logging config file.
  181. * ``--enable-registration`` - Enable registration for new users.
  182. Application services:
  183. * Reliably retry sending of events from Synapse to application services, as per
  184. `Application Services`_ spec.
  185. * Application services can no longer register via the ``/register`` API,
  186. instead their configuration should be saved to a file and listed in the
  187. synapse ``app_service_config_files`` config option. The AS configuration file
  188. has the same format as the old ``/register`` request.
  189. See `docs/application_services.rst`_ for more information.
  190. .. _`docs/postgres.rst`: docs/postgres.rst
  191. .. _`docs/application_services.rst`: docs/application_services.rst
  192. .. _`Registration`: https://github.com/matrix-org/matrix-doc/blob/master/specification/10_client_server_api.rst#registration
  193. .. _`Retrieving Server Keys`: https://github.com/matrix-org/matrix-doc/blob/6f2698/specification/30_server_server_api.rst#retrieving-server-keys
  194. .. _`Application Services`: https://github.com/matrix-org/matrix-doc/blob/0c6bd9/specification/25_application_service_api.rst#home-server---application-service-api
  195. Changes in synapse v0.8.1 (2015-03-18)
  196. ======================================
  197. * Disable registration by default. New users can be added using the command
  198. ``register_new_matrix_user`` or by enabling registration in the config.
  199. * Add metrics to synapse. To enable metrics use config options
  200. ``enable_metrics`` and ``metrics_port``.
  201. * Fix bug where banning only kicked the user.
  202. Changes in synapse v0.8.0 (2015-03-06)
  203. ======================================
  204. General:
  205. * Add support for registration fallback. This is a page hosted on the server
  206. which allows a user to register for an account, regardless of what client
  207. they are using (e.g. mobile devices).
  208. * Added new default push rules and made them configurable by clients:
  209. * Suppress all notice messages.
  210. * Notify when invited to a new room.
  211. * Notify for messages that don't match any rule.
  212. * Notify on incoming call.
  213. Federation:
  214. * Added per host server side rate-limiting of incoming federation requests.
  215. * Added a ``/get_missing_events/`` API to federation to reduce number of
  216. ``/events/`` requests.
  217. Configuration:
  218. * Added configuration option to disable registration:
  219. ``disable_registration``.
  220. * Added configuration option to change soft limit of number of open file
  221. descriptors: ``soft_file_limit``.
  222. * Make ``tls_private_key_path`` optional when running with ``no_tls``.
  223. Application services:
  224. * Application services can now poll on the CS API ``/events`` for their events,
  225. by providing their application service ``access_token``.
  226. * Added exclusive namespace support to application services API.
  227. Changes in synapse v0.7.1 (2015-02-19)
  228. ======================================
  229. * Initial alpha implementation of parts of the Application Services API.
  230. Including:
  231. - AS Registration / Unregistration
  232. - User Query API
  233. - Room Alias Query API
  234. - Push transport for receiving events.
  235. - User/Alias namespace admin control
  236. * Add cache when fetching events from remote servers to stop repeatedly
  237. fetching events with bad signatures.
  238. * Respect the per remote server retry scheme when fetching both events and
  239. server keys to reduce the number of times we send requests to dead servers.
  240. * Inform remote servers when the local server fails to handle a received event.
  241. * Turn off python bytecode generation due to problems experienced when
  242. upgrading from previous versions.
  243. Changes in synapse v0.7.0 (2015-02-12)
  244. ======================================
  245. * Add initial implementation of the query auth federation API, allowing
  246. servers to agree on whether an event should be allowed or rejected.
  247. * Persist events we have rejected from federation, fixing the bug where
  248. servers would keep requesting the same events.
  249. * Various federation performance improvements, including:
  250. - Add in memory caches on queries such as:
  251. * Computing the state of a room at a point in time, used for
  252. authorization on federation requests.
  253. * Fetching events from the database.
  254. * User's room membership, used for authorizing presence updates.
  255. - Upgraded JSON library to improve parsing and serialisation speeds.
  256. * Add default avatars to new user accounts using pydenticon library.
  257. * Correctly time out federation requests.
  258. * Retry federation requests against different servers.
  259. * Add support for push and push rules.
  260. * Add alpha versions of proposed new CSv2 APIs, including ``/sync`` API.
  261. Changes in synapse 0.6.1 (2015-01-07)
  262. =====================================
  263. * Major optimizations to improve performance of initial sync and event sending
  264. in large rooms (by up to 10x)
  265. * Media repository now includes a Content-Length header on media downloads.
  266. * Improve quality of thumbnails by changing resizing algorithm.
  267. Changes in synapse 0.6.0 (2014-12-16)
  268. =====================================
  269. * Add new API for media upload and download that supports thumbnailing.
  270. * Replicate media uploads over multiple homeservers so media is always served
  271. to clients from their local homeserver. This obsoletes the
  272. --content-addr parameter and confusion over accessing content directly
  273. from remote homeservers.
  274. * Implement exponential backoff when retrying federation requests when
  275. sending to remote homeservers which are offline.
  276. * Implement typing notifications.
  277. * Fix bugs where we sent events with invalid signatures due to bugs where
  278. we incorrectly persisted events.
  279. * Improve performance of database queries involving retrieving events.
  280. Changes in synapse 0.5.4a (2014-12-13)
  281. ======================================
  282. * Fix bug while generating the error message when a file path specified in
  283. the config doesn't exist.
  284. Changes in synapse 0.5.4 (2014-12-03)
  285. =====================================
  286. * Fix presence bug where some rooms did not display presence updates for
  287. remote users.
  288. * Do not log SQL timing log lines when started with "-v"
  289. * Fix potential memory leak.
  290. Changes in synapse 0.5.3c (2014-12-02)
  291. ======================================
  292. * Change the default value for the `content_addr` option to use the HTTP
  293. listener, as by default the HTTPS listener will be using a self-signed
  294. certificate.
  295. Changes in synapse 0.5.3 (2014-11-27)
  296. =====================================
  297. * Fix bug that caused joining a remote room to fail if a single event was not
  298. signed correctly.
  299. * Fix bug which caused servers to continuously try and fetch events from other
  300. servers.
  301. Changes in synapse 0.5.2 (2014-11-26)
  302. =====================================
  303. Fix major bug that caused rooms to disappear from peoples initial sync.
  304. Changes in synapse 0.5.1 (2014-11-26)
  305. =====================================
  306. See UPGRADES.rst for specific instructions on how to upgrade.
  307. * Fix bug where we served up an Event that did not match its signatures.
  308. * Fix regression where we no longer correctly handled the case where a
  309. homeserver receives an event for a room it doesn't recognise (but is in.)
  310. Changes in synapse 0.5.0 (2014-11-19)
  311. =====================================
  312. This release includes changes to the federation protocol and client-server API
  313. that is not backwards compatible.
  314. This release also changes the internal database schemas and so requires servers to
  315. drop their current history. See UPGRADES.rst for details.
  316. Homeserver:
  317. * Add authentication and authorization to the federation protocol. Events are
  318. now signed by their originating homeservers.
  319. * Implement the new authorization model for rooms.
  320. * Split out web client into a seperate repository: matrix-angular-sdk.
  321. * Change the structure of PDUs.
  322. * Fix bug where user could not join rooms via an alias containing 4-byte
  323. UTF-8 characters.
  324. * Merge concept of PDUs and Events internally.
  325. * Improve logging by adding request ids to log lines.
  326. * Implement a very basic room initial sync API.
  327. * Implement the new invite/join federation APIs.
  328. Webclient:
  329. * The webclient has been moved to a seperate repository.
  330. Changes in synapse 0.4.2 (2014-10-31)
  331. =====================================
  332. Homeserver:
  333. * Fix bugs where we did not notify users of correct presence updates.
  334. * Fix bug where we did not handle sub second event stream timeouts.
  335. Webclient:
  336. * Add ability to click on messages to see JSON.
  337. * Add ability to redact messages.
  338. * Add ability to view and edit all room state JSON.
  339. * Handle incoming redactions.
  340. * Improve feedback on errors.
  341. * Fix bugs in mobile CSS.
  342. * Fix bugs with desktop notifications.
  343. Changes in synapse 0.4.1 (2014-10-17)
  344. =====================================
  345. Webclient:
  346. * Fix bug with display of timestamps.
  347. Changes in synpase 0.4.0 (2014-10-17)
  348. =====================================
  349. This release includes changes to the federation protocol and client-server API
  350. that is not backwards compatible.
  351. The Matrix specification has been moved to a separate git repository:
  352. http://github.com/matrix-org/matrix-doc
  353. You will also need an updated syutil and config. See UPGRADES.rst.
  354. Homeserver:
  355. * Sign federation transactions to assert strong identity over federation.
  356. * Rename timestamp keys in PDUs and events from 'ts' and 'hsob_ts' to 'origin_server_ts'.
  357. Changes in synapse 0.3.4 (2014-09-25)
  358. =====================================
  359. This version adds support for using a TURN server. See docs/turn-howto.rst on
  360. how to set one up.
  361. Homeserver:
  362. * Add support for redaction of messages.
  363. * Fix bug where inviting a user on a remote home server could take up to
  364. 20-30s.
  365. * Implement a get current room state API.
  366. * Add support specifying and retrieving turn server configuration.
  367. Webclient:
  368. * Add button to send messages to users from the home page.
  369. * Add support for using TURN for VoIP calls.
  370. * Show display name change messages.
  371. * Fix bug where the client didn't get the state of a newly joined room
  372. until after it has been refreshed.
  373. * Fix bugs with tab complete.
  374. * Fix bug where holding down the down arrow caused chrome to chew 100% CPU.
  375. * Fix bug where desktop notifications occasionally used "Undefined" as the
  376. display name.
  377. * Fix more places where we sometimes saw room IDs incorrectly.
  378. * Fix bug which caused lag when entering text in the text box.
  379. Changes in synapse 0.3.3 (2014-09-22)
  380. =====================================
  381. Homeserver:
  382. * Fix bug where you continued to get events for rooms you had left.
  383. Webclient:
  384. * Add support for video calls with basic UI.
  385. * Fix bug where one to one chats were named after your display name rather
  386. than the other person's.
  387. * Fix bug which caused lag when typing in the textarea.
  388. * Refuse to run on browsers we know won't work.
  389. * Trigger pagination when joining new rooms.
  390. * Fix bug where we sometimes didn't display invitations in recents.
  391. * Automatically join room when accepting a VoIP call.
  392. * Disable outgoing and reject incoming calls on browsers we don't support
  393. VoIP in.
  394. * Don't display desktop notifications for messages in the room you are
  395. non-idle and speaking in.
  396. Changes in synapse 0.3.2 (2014-09-18)
  397. =====================================
  398. Webclient:
  399. * Fix bug where an empty "bing words" list in old accounts didn't send
  400. notifications when it should have done.
  401. Changes in synapse 0.3.1 (2014-09-18)
  402. =====================================
  403. This is a release to hotfix v0.3.0 to fix two regressions.
  404. Webclient:
  405. * Fix a regression where we sometimes displayed duplicate events.
  406. * Fix a regression where we didn't immediately remove rooms you were
  407. banned in from the recents list.
  408. Changes in synapse 0.3.0 (2014-09-18)
  409. =====================================
  410. See UPGRADE for information about changes to the client server API, including
  411. breaking backwards compatibility with VoIP calls and registration API.
  412. Homeserver:
  413. * When a user changes their displayname or avatar the server will now update
  414. all their join states to reflect this.
  415. * The server now adds "age" key to events to indicate how old they are. This
  416. is clock independent, so at no point does any server or webclient have to
  417. assume their clock is in sync with everyone else.
  418. * Fix bug where we didn't correctly pull in missing PDUs.
  419. * Fix bug where prev_content key wasn't always returned.
  420. * Add support for password resets.
  421. Webclient:
  422. * Improve page content loading.
  423. * Join/parts now trigger desktop notifications.
  424. * Always show room aliases in the UI if one is present.
  425. * No longer show user-count in the recents side panel.
  426. * Add up & down arrow support to the text box for message sending to step
  427. through your sent history.
  428. * Don't display notifications for our own messages.
  429. * Emotes are now formatted correctly in desktop notifications.
  430. * The recents list now differentiates between public & private rooms.
  431. * Fix bug where when switching between rooms the pagination flickered before
  432. the view jumped to the bottom of the screen.
  433. * Add bing word support.
  434. Registration API:
  435. * The registration API has been overhauled to function like the login API. In
  436. practice, this means registration requests must now include the following:
  437. 'type':'m.login.password'. See UPGRADE for more information on this.
  438. * The 'user_id' key has been renamed to 'user' to better match the login API.
  439. * There is an additional login type: 'm.login.email.identity'.
  440. * The command client and web client have been updated to reflect these changes.
  441. Changes in synapse 0.2.3 (2014-09-12)
  442. =====================================
  443. Homeserver:
  444. * Fix bug where we stopped sending events to remote home servers if a
  445. user from that home server left, even if there were some still in the
  446. room.
  447. * Fix bugs in the state conflict resolution where it was incorrectly
  448. rejecting events.
  449. Webclient:
  450. * Display room names and topics.
  451. * Allow setting/editing of room names and topics.
  452. * Display information about rooms on the main page.
  453. * Handle ban and kick events in real time.
  454. * VoIP UI and reliability improvements.
  455. * Add glare support for VoIP.
  456. * Improvements to initial startup speed.
  457. * Don't display duplicate join events.
  458. * Local echo of messages.
  459. * Differentiate sending and sent of local echo.
  460. * Various minor bug fixes.
  461. Changes in synapse 0.2.2 (2014-09-06)
  462. =====================================
  463. Homeserver:
  464. * When the server returns state events it now also includes the previous
  465. content.
  466. * Add support for inviting people when creating a new room.
  467. * Make the homeserver inform the room via `m.room.aliases` when a new alias
  468. is added for a room.
  469. * Validate `m.room.power_level` events.
  470. Webclient:
  471. * Add support for captchas on registration.
  472. * Handle `m.room.aliases` events.
  473. * Asynchronously send messages and show a local echo.
  474. * Inform the UI when a message failed to send.
  475. * Only autoscroll on receiving a new message if the user was already at the
  476. bottom of the screen.
  477. * Add support for ban/kick reasons.
  478. Changes in synapse 0.2.1 (2014-09-03)
  479. =====================================
  480. Homeserver:
  481. * Added support for signing up with a third party id.
  482. * Add synctl scripts.
  483. * Added rate limiting.
  484. * Add option to change the external address the content repo uses.
  485. * Presence bug fixes.
  486. Webclient:
  487. * Added support for signing up with a third party id.
  488. * Added support for banning and kicking users.
  489. * Added support for displaying and setting ops.
  490. * Added support for room names.
  491. * Fix bugs with room membership event display.
  492. Changes in synapse 0.2.0 (2014-09-02)
  493. =====================================
  494. This update changes many configuration options, updates the
  495. database schema and mandates SSL for server-server connections.
  496. Homeserver:
  497. * Require SSL for server-server connections.
  498. * Add SSL listener for client-server connections.
  499. * Add ability to use config files.
  500. * Add support for kicking/banning and power levels.
  501. * Allow setting of room names and topics on creation.
  502. * Change presence to include last seen time of the user.
  503. * Change url path prefix to /_matrix/...
  504. * Bug fixes to presence.
  505. Webclient:
  506. * Reskin the CSS for registration and login.
  507. * Various improvements to rooms CSS.
  508. * Support changes in client-server API.
  509. * Bug fixes to VOIP UI.
  510. * Various bug fixes to handling of changes to room member list.
  511. Changes in synapse 0.1.2 (2014-08-29)
  512. =====================================
  513. Webclient:
  514. * Add basic call state UI for VoIP calls.
  515. Changes in synapse 0.1.1 (2014-08-29)
  516. =====================================
  517. Homeserver:
  518. * Fix bug that caused the event stream to not notify some clients about
  519. changes.
  520. Changes in synapse 0.1.0 (2014-08-29)
  521. =====================================
  522. Presence has been reenabled in this release.
  523. Homeserver:
  524. * Update client to server API, including:
  525. - Use a more consistent url scheme.
  526. - Provide more useful information in the initial sync api.
  527. * Change the presence handling to be much more efficient.
  528. * Change the presence server to server API to not require explicit polling of
  529. all users who share a room with a user.
  530. * Fix races in the event streaming logic.
  531. Webclient:
  532. * Update to use new client to server API.
  533. * Add basic VOIP support.
  534. * Add idle timers that change your status to away.
  535. * Add recent rooms column when viewing a room.
  536. * Various network efficiency improvements.
  537. * Add basic mobile browser support.
  538. * Add a settings page.
  539. Changes in synapse 0.0.1 (2014-08-22)
  540. =====================================
  541. Presence has been disabled in this release due to a bug that caused the
  542. homeserver to spam other remote homeservers.
  543. Homeserver:
  544. * Completely change the database schema to support generic event types.
  545. * Improve presence reliability.
  546. * Improve reliability of joining remote rooms.
  547. * Fix bug where room join events were duplicated.
  548. * Improve initial sync API to return more information to the client.
  549. * Stop generating fake messages for room membership events.
  550. Webclient:
  551. * Add tab completion of names.
  552. * Add ability to upload and send images.
  553. * Add profile pages.
  554. * Improve CSS layout of room.
  555. * Disambiguate identical display names.
  556. * Don't get remote users display names and avatars individually.
  557. * Use the new initial sync API to reduce number of round trips to the homeserver.
  558. * Change url scheme to use room aliases instead of room ids where known.
  559. * Increase longpoll timeout.
  560. Changes in synapse 0.0.0 (2014-08-13)
  561. =====================================
  562. * Initial alpha release