Go to file
2022-02-08 13:51:20 +02:00
.ci Drop support for and remove references to EOL Python 3.6 (#11683) 2022-01-21 14:23:26 -08:00
.github CI: run Complement on the VM, not inside Docker (#11811) 2022-01-25 15:05:22 +00:00
changelog.d 1.52.0rc1 2022-02-01 11:04:17 +00:00
contrib Improve reactor_tick_time metric (#11724) 2022-01-17 12:14:40 +00:00
debian 1.52.0 2022-02-08 11:35:05 +00:00
demo Fix typo in demo docs: differnt (#11735) 2022-01-13 13:10:42 +00:00
docker Drop support for and remove references to EOL Python 3.6 (#11683) 2022-01-21 14:23:26 -08:00
docs Add words about the Twisted security fix 2022-02-08 11:47:35 +00:00
scripts Add index to local_group_updates.stream_id (#11231) 2021-11-02 15:46:48 +00:00
scripts-dev Allow overriding the complement ref. (#11766) 2022-01-20 13:04:58 +00:00
snap
stubs Add missing type hints to synapse.logging.context (#11556) 2021-12-14 17:35:28 +00:00
synapse Merge remote-tracking branch 'upstream/release-v1.52' 2022-02-08 13:51:20 +02:00
synmark
tests Add type hints to tests/rest/admin (#11851) 2022-01-31 14:20:05 -05:00
.codecov.yml
.coveragerc
.dockerignore
.editorconfig
.git-blame-ignore-revs
.gitignore Allow overriding the complement ref. (#11766) 2022-01-20 13:04:58 +00:00
.gitlab-ci.yml
AUTHORS.rst
book.toml
CHANGES.md Add words about the Twisted security fix 2022-02-08 11:47:35 +00:00
CONTRIBUTING.md
Dockerfile Merge remote-tracking branch 'upstream/release-v1.52' 2022-02-01 14:22:34 +02:00
INSTALL.md
LICENSE
MANIFEST.in Mark Module API error imports as re-exported and mark Synapse as containing type annotations (#11054) 2021-10-13 08:42:41 +01:00
mypy.ini Add type hints to tests/rest/admin (#11851) 2022-01-31 14:20:05 -05:00
pylint.cfg
pyproject.toml Update to the current version of Black and run it on Synapse codebase (#11596) 2021-12-23 20:22:15 -08:00
README.md Replace also_allow_user with a global config option 2021-10-30 14:06:15 +03:00
README.rst
setup.cfg
setup.py Drop support for and remove references to EOL Python 3.6 (#11683) 2022-01-21 14:23:26 -08:00
synctl Avoid waiting for zombie processes in synctl stop (#11490) 2021-12-02 16:07:06 +00:00
sytest-blacklist Blacklist new sytest validation test (#11270) 2021-11-08 10:37:43 +00:00
tox.ini Drop support for and remove references to EOL Python 3.6 (#11683) 2022-01-21 14:23:26 -08:00
UPGRADE.rst

Maunium Synapse

This is a fork of Synapse to remove dumb limits and fix bugs that the upstream devs don't want to fix.

The only official distribution is the docker image in the GitLab container registry, but you can also install from source (upstream instructions).

The master branch and :latest docker tag are upgraded to each upstream release candidate very soon after release (usually within 10 minutes). There are also docker tags for each release, e.g. :1.23.0. If you don't want RCs, use the specific release tags.

List of changes

  • Default power level for room creator is 9001 instead of 100.
  • Room creator can specify a custom room ID with the room_id param in the request body. If the room ID is already in use, it will return M_CONFLICT.
  • URL previewer user agent includes Bot so Twitter previews work properly.
  • Local event creation concurrency is disabled to avoid unnecessary state resolution.
  • Register admin API can register invalid user IDs.
  • Docker image with jemalloc.
  • Config option to allow specific users to send events without unnecessary validation.
  • Config option to allow specific users to receive events that are usually filtered away (e.g. org.matrix.dummy_event and m.room.aliases).
  • Config option to allow specific users to use timestamp massaging without being appservice users.
  • Config option to allow appservices to use MSC2716 batch sending as any local user.
  • Removed bad pusher URL validation.
  • webp images are thumbnailed to webp instead of jpeg to avoid losing transparency.
  • Media repo Cache-Control header says immutable and 1 year for all media that exists, as media IDs in Matrix are immutable.
  • Allowed sending custom data with read receipts.

Configuration

Generating a new config will include the meow section, but this is here for reference for existing configs.

meow:
   # List of users who aren't subject to unnecessary validation in the C-S API.
   validation_override:
   - "@you:example.com"
   # List of users who will get org.matrix.dummy_event and m.room.aliases events down /sync
   filter_override:
   - "@you:example.com"
   # Whether or not the admin API should be able to register invalid user IDs.
   admin_api_register_invalid: true
   # List of users who can use timestamp massaging without being appservices
   timestamp_override:
   - "@you:example.com"
   # Whether appservices should be allowed to use MSC2716 batch sending as any local user.
   appservice_batch_send_any: false