Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Releases: matrix-org/synapse

v0.12.0-rc3

23 Dec 16:26
v0.12.0-rc3
Compare
Choose a tag to compare
v0.12.0-rc3 Pre-release
Pre-release

Changes in synapse v0.12.0-rc3 (2015-12-23)

  • Allow guest accounts access to /sync (PR #455)
  • Allow filters to include/exclude rooms at the room level
    rather than just from the components of the sync for each
    room. (PR #454)
  • Include urls for room avatars in the response to /publicRooms (PR #453)
  • Don't set a identicon as the avatar for a user when they register (PR #450)
  • Add a display_name to third-party invites (PR #449)
  • Send more information to the identity server for third-party invites so that
    it can send richer messages to the invitee (PR #446)
  • Cache the responses to /intialSync for 5 minutes. If a client
    retries a request to /initialSync before the a response was computed
    to the first request then the same response is used for both requests
    (PR #457)
  • Fix a bug where synapse would always request the signing keys of
    remote servers even when the key was cached locally (PR #452)
  • Fix 500 when pagination search results (PR #447)
  • Fix a bug where synapse was leaking raw email address in third-party invites
    (PR #448)

v0.12.0-rc2

14 Dec 16:32
v0.12.0-rc2
Compare
Choose a tag to compare
v0.12.0-rc2 Pre-release
Pre-release

Changes in synapse v0.12.0-rc2 (2015-12-14)

  • Add caches for whether rooms have been forgotten by a user (PR #434)
  • Remove instructions to use --process-dependency-link since all of the
    dependencies of synapse are on PyPI (PR #436)
  • Parallelise the processing of /sync requests (PR #437)
  • Fix race updating presence in /events (PR #444)
  • Fix bug back-populating search results (PR #441)
  • Fix bug calculating state in /sync requests (PR #442)

v0.12.0-rc1

10 Dec 15:50
v0.12.0-rc1
Compare
Choose a tag to compare
v0.12.0-rc1 Pre-release
Pre-release

Changes in synapse v0.12.0-rc1 (2015-12-10)

  • Host the client APIs released as r0 by
    https://matrix.org/docs/spec/r0.0.0/client_server.html
    on paths prefixed by /_matrix/client/r0. (PR #430, PR #415, PR #400)
  • Updates the client APIs to match r0 of the matrix specification.
    • All APIs return events in the new event format, old APIs also include
      the fields needed to parse the event using the old format for
      compatibility. (PR #402)
    • Search results are now given as a JSON array rather than
      a JSON object (PR #405)
    • Miscellaneous changes to search (PR #403, PR #406, PR #412)
    • Filter JSON objects may now be passed as query parameters to /sync
      (PR #431)
    • Fix implementation of /admin/whois (PR #418)
    • Only include the rooms that user has left in /sync if the client
      requests them in the filter (PR #423)
    • Don't push for m.room.message by default (PR #411)
    • Add API for setting per account user data (PR #392)
    • Allow users to forget rooms (PR #385)
  • Performance improvements and monitoring:
    • Add per-request counters for CPU time spent on the main python thread.
      (PR #421, PR #420)
    • Add per-request counters for time spent in the database (PR #429)
    • Make state updates in the C+S API idempotent (PR #416)
    • Only fire user_joined_room if the user has actually joined. (PR #410)
    • Reuse a single http client, rather than creating new ones (PR #413)

v0.11.1

20 Nov 17:47
v0.11.1
Compare
Choose a tag to compare

Changes in synapse v0.11.1 (2015-11-20)

  • Add extra options to search API (PR #394)
  • Fix bug where we did not correctly cap federation retry timers. This meant it
    could take several hours for servers to start talking to ressurected servers,
    even when they were receiving traffic from them (PR #393)
  • Don't advertise login token flow unless CAS is enabled. This caused issues
    where some clients would always use the fallback API if they did not
    recognize all login flows (PR #391)
  • Change /v2 sync API to rename private_user_data to account_data
    (PR #386)
  • Change /v2 sync API to remove the event_map and rename keys in rooms
    object (PR #389)

Changes in synapse v0.11.0-r2 (2015-11-19)

19 Nov 20:29
v0.11.0-r2
Compare
Choose a tag to compare

Changes in synapse v0.11.0-r2 (2015-11-19)

  • Fix bug in database port script (PR #387)

v0.11.0-r1

18 Nov 14:20
v0.11.0-r1
Compare
Choose a tag to compare

Changes in synapse v0.11.0-r1 (2015-11-18)

  • Retry and fail federation requests more aggressively for requests that block
    client side requests (PR #384)

v0.11.0

17 Nov 15:47
v0.11.0
Compare
Choose a tag to compare

Changes in synapse v0.11.0 (2015-11-17)

  • Change CAS login API (PR #349)

Changes in synapse v0.11.0-rc2 (2015-11-13)

  • Various changes to /sync API response format (PR #373)
  • Fix regression when setting display name in newly joined room over
    federation (PR #368)
  • Fix problem where /search was slow when using SQLite (PR #366)

Changes in synapse v0.11.0-rc1 (2015-11-11)

  • Add Search API (PR #307, #324, #327, #336, #350, #359)
  • Add 'archived' state to v2 /sync API (PR #316)
  • Add ability to reject invites (PR #317)
  • Add config option to disable password login (PR #322)
  • Add the login fallback API (PR #330)
  • Add room context API (PR #334)
  • Add room tagging support (PR #335)
  • Update v2 /sync API to match spec (PR #305, #316, #321, #332, #337, #341)
  • Change retry schedule for application services (PR #320)
  • Change retry schedule for remote servers (PR #340)
  • Fix bug where we hosted static content in the incorrect place (PR #329)
  • Fix bug where we didn't increment retry interval for remote servers (PR #343)

Changes in synapse v0.10.1-rc1 (2015-10-15)

  • Add support for CAS, thanks to Steven Hammerton (PR #295, #296)
  • Add support for using macaroons for access_token (PR #256, #229)
  • Add support for m.room.canonical_alias (PR #287)
  • Add support for viewing the history of rooms that they have left. (PR #276,
    #294)
  • Add support for refresh tokens (PR #240)
  • Add flag on creation which disables federation of the room (PR #279)
  • Add some room state to invites. (PR #275)
  • Atomically persist events when joining a room over federation (PR #283)
  • Change default history visibility for private rooms (PR #271)
  • Allow users to redact their own sent events (PR #262)
  • Use tox for tests (PR #247)
  • Split up syutil into separate libraries (PR #243)

v0.11.0-rc2

13 Nov 11:44
v0.11.0-rc2
Compare
Choose a tag to compare
v0.11.0-rc2 Pre-release
Pre-release

Changes in synapse v0.11.0-rc2 (2015-11-13)

  • Various changes to /sync API response format (PR #373)
  • Fix regression when setting display name in newly joined room over
    federation (PR #368)
  • Fix problem where /search was slow when using SQLite (PR #366)

v0.11.0-rc1

11 Nov 18:29
v0.11.0-rc1
Compare
Choose a tag to compare
v0.11.0-rc1 Pre-release
Pre-release

Changes in synapse v0.11.0-rc1 (2015-11-11)

  • Add Search API (PR #307, #324, #327, #336, #350, #359)
  • Add 'archived' state to v2 /sync API (PR #316)
  • Add ability to reject invites (PR #317)
  • Add config option to disable password login (PR #322)
  • Add the login fallback API (PR #330)
  • Add room context API (PR #334)
  • Add room tagging support (PR #335)
  • Update v2 /sync API to match spec (PR #305, #316, #321, #332, #337, #341)
  • Change retry schedule for application services (PR #320)
  • Change retry schedule for remote servers (PR #340)
  • Fix bug where we hosted static content in the incorrect place (PR #329)
  • Fix bug where we didn't increment retry interval for remote servers (PR #343)

v0.10.1-rc1

16 Oct 12:41
v0.10.1-rc1
Compare
Choose a tag to compare
v0.10.1-rc1 Pre-release
Pre-release

Changes in synapse v0.10.1-rc1 (2015-10-15)

  • Add support for CAS, thanks to Steven Hammerton (PR #295, #296)
  • Add support for using macaroons for access_token (PR #256, #229)
  • Add support for m.room.canonical_alias (PR #287)
  • Add support for viewing the history of rooms that they have left. (PR #276,
    #294)
  • Add support for refresh tokens (PR #240)
  • Add flag on creation which disables federation of the room (PR #279)
  • Add some room state to invites. (PR #275)
  • Atomically persist events when joining a room over federation (PR #283)
  • Change default history visibility for private rooms (PR #271)
  • Allow users to redact their own sent events (PR #262)
  • Use tox for tests (PR #247)
  • Split up syutil into separate libraries (PR #243)