Go to file
2023-01-19 15:43:54 +02:00
.ci Handle 'go get' deprecation (#14611) 2022-12-05 10:29:55 +00:00
.github Skip testing pypy-3.7-linux wheels as we don't have openssl 3.x on manylinux2014 (#14802) 2023-01-09 17:51:37 +00:00
changelog.d 1.75.0rc2 2023-01-12 10:30:54 -08:00
contrib Fix the *MAU Limits* section of the Grafana dashboard relying on a specific job name for the workers of a Synapse deployment. (#14644) 2022-12-13 14:19:43 +00:00
debian 1.75.0 2023-01-17 11:36:22 +00:00
demo demo: check if we are in a virtualenv before overriding PYTHONPATH (#12916) 2022-05-30 15:41:24 +00:00
docker Switch to our fork of dh-virtualenv for compatibility with Python 3.11 (#14774) 2023-01-04 16:26:29 +00:00
docs Add missing worker settings to shared configuration (#14748) 2023-01-09 18:35:19 +00:00
rust Fix Rust lint CI (#14602) 2022-12-02 18:04:28 +00:00
scripts-dev Add experimental support for MSC3391: deleting account data (#14714) 2023-01-01 03:40:46 +00:00
stubs Switch to ruff instead of flake8. (#14633) 2022-12-21 13:05:21 -05:00
synapse Merge remote-tracking branch 'upstream/release-v1.75' 2023-01-19 15:42:39 +02:00
synmark
tests Unescape HTML entities in oEmbed titles. (#14781) 2023-01-09 14:22:02 +00:00
.codecov.yml
.coveragerc
.dockerignore Merge remote-tracking branch 'upstream/release-v1.69' 2022-10-12 15:33:18 +03:00
.editorconfig Apply correct editorconfig to .pyi files (#14526) 2022-11-22 18:33:28 +00:00
.git-blame-ignore-revs Prevent #3679 from appearing in blame results (#13311) 2022-07-18 14:02:32 +00:00
.gitignore Add the .direnv/ directory to .gitignore (#14707) 2022-12-19 16:44:09 +00:00
.gitlab-ci.yml Remove unneccessary caching 2022-04-26 20:00:38 +03:00
.rustfmt.toml Port the push rule classes to Rust. (#13768) 2022-09-20 12:10:31 +01:00
AUTHORS.rst
book.toml
build_rust.py Always build Rust extension in release mode (#14009) 2022-10-03 11:20:18 +01:00
Cargo.lock Bump serde from 1.0.151 to 1.0.152 (#14758) 2023-01-05 09:49:35 +00:00
Cargo.toml Add a stub Rust crate (#12595) 2022-09-06 19:01:37 +01:00
CHANGES.md 1.75.0 2023-01-17 11:36:22 +00:00
CONTRIBUTING.md
Dockerfile Bump Docker image to Python 3.11 2022-11-16 17:17:25 +02:00
INSTALL.md
LICENSE
mypy.ini Add missing type hints to tests. (#14687) 2022-12-28 08:29:35 -05:00
poetry.lock Bump importlib-metadata from 4.2.0 to 6.0.0 (#14795) 2023-01-09 10:08:50 +00:00
pylint.cfg
pyproject.toml 1.75.0 2023-01-17 11:36:22 +00:00
README.md Update README.md 2023-01-19 15:43:54 +02:00
README.rst fix grammar 2022-09-03 11:08:28 +01:00
requirements.txt Merge remote-tracking branch 'upstream/release-v1.75' 2023-01-19 15:42:39 +02:00
sytest-blacklist Back out implementation of MSC2314 (#12474) 2022-04-19 11:17:29 +00:00
tox.ini Run lints under poetry in CI; remove lint tox jobs (#12434) 2022-04-12 17:35:48 +01: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.75.0. If you don't want RCs, use the specific release tags.

†If there are merge conflicts, the update may be delayed for up to a few days after the full release.

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. Upstreamed after over 2 years 🎉
  • Local event creation concurrency is disabled to avoid unnecessary state resolution.
  • Register admin API can register invalid user IDs.
  • Docker image with jemalloc enabled by default.
  • 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