Renovate Bot
e9b064ef2c
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [ghcr.io/element-hq/synapse](https://matrix.org/docs/projects/server/synapse) ([source](https://github.com/element-hq/synapse)) | minor | `v1.100.0` -> `v1.101.0` | --- ### Release Notes <details> <summary>element-hq/synapse (ghcr.io/element-hq/synapse)</summary> ### [`v1.101.0`](https://github.com/element-hq/synapse/releases/tag/v1.101.0) [Compare Source](https://github.com/element-hq/synapse/compare/v1.100.0...v1.101.0) ### Synapse 1.101.0 (2024-02-13) ##### Bugfixes - Fix performance regression when fetching auth chains from the DB. Introduced in v1.100.0. ([#​16893](https://github.com/element-hq/synapse/issues/16893)) ### Synapse 1.101.0rc1 (2024-02-06) ##### Improved Documentation - Fix broken links in the documentation. ([#​16853](https://github.com/element-hq/synapse/issues/16853)) - Update MacOS installation instructions to mention that libicu is optional. ([#​16854](https://github.com/element-hq/synapse/issues/16854)) - The version picker now correctly lists versions after `v1.98.0`. ([#​16880](https://github.com/element-hq/synapse/issues/16880)) ##### Internal Changes - Add support for stabilised [MSC3981](https://github.com/matrix-org/matrix-spec-proposals/pull/3981) that adds a `recurse` parameter on the `/relations` API. ([#​16842](https://github.com/element-hq/synapse/issues/16842)) ##### Updates to locked dependencies - Bump dorny/paths-filter from 2 to 3. ([#​16869](https://github.com/element-hq/synapse/issues/16869)) - Bump gitpython from 3.1.40 to 3.1.41. ([#​16850](https://github.com/element-hq/synapse/issues/16850)) - Bump hiredis from 2.2.3 to 2.3.2. ([#​16862](https://github.com/element-hq/synapse/issues/16862)) - Bump jsonschema from 4.20.0 to 4.21.1. ([#​16887](https://github.com/element-hq/synapse/issues/16887)) - Bump lxml-stubs from 0.4.0 to 0.5.1. ([#​16885](https://github.com/element-hq/synapse/issues/16885)) - Bump mypy-zope from 1.0.1 to 1.0.3. ([#​16865](https://github.com/element-hq/synapse/issues/16865)) - Bump phonenumbers from 8.13.26 to 8.13.29. ([#​16868](https://github.com/element-hq/synapse/issues/16868)) - Bump pydantic from 2.5.3 to 2.6.0. ([#​16888](https://github.com/element-hq/synapse/issues/16888)) - Bump sentry-sdk from 1.39.1 to 1.40.0. ([#​16889](https://github.com/element-hq/synapse/issues/16889)) - Bump serde from 1.0.195 to 1.0.196. ([#​16867](https://github.com/element-hq/synapse/issues/16867)) - Bump serde_json from 1.0.111 to 1.0.113. ([#​16866](https://github.com/element-hq/synapse/issues/16866)) - Bump sigstore/cosign-installer from 3.3.0 to 3.4.0. ([#​16890](https://github.com/element-hq/synapse/issues/16890)) - Bump types-pillow from 10.1.0.2 to 10.2.0.20240125. ([#​16864](https://github.com/element-hq/synapse/issues/16864)) - Bump types-requests from 2.31.0.10 to 2.31.0.20240125. ([#​16886](https://github.com/element-hq/synapse/issues/16886)) - Bump types-setuptools from 69.0.0.0 to 69.0.0.20240125. ([#​16863](https://github.com/element-hq/synapse/issues/16863)) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4xODIuMCIsInVwZGF0ZWRJblZlciI6IjM3LjE4Mi4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9--> Reviewed-on: carsten/container-server#23 Co-authored-by: Renovate Bot <renovate@git.csprung.de> Co-committed-by: Renovate Bot <renovate@git.csprung.de>
47 lines
1.3 KiB
YAML
47 lines
1.3 KiB
YAML
version: '3.7'
|
|
|
|
# https://github.com/element-hq/synapse/pkgs/container/synapse
|
|
# https://github.com/element-hq/synapse/tree/master/docs
|
|
# https://github.com/element-hq/synapse/tree/master/contrib/docker
|
|
# https://github.com/element-hq/synapse/blob/master/docs/reverse_proxy.md
|
|
# https://github.com/element-hq/synapse/blob/master/docs/federate.md
|
|
# https://github.com/element-hq/synapse/blob/master/docs/postgres.md
|
|
# https://github.com/element-hq/synapse/blob/master/debian/register_new_matrix_user.ronn
|
|
|
|
networks:
|
|
matrix:
|
|
|
|
services:
|
|
matrix:
|
|
image: ghcr.io/element-hq/synapse:v1.101.0
|
|
container_name: matrix
|
|
restart: "${RESTART:-no}"
|
|
hostname: matrix
|
|
domainname: ${BASE_DOMAIN}
|
|
environment:
|
|
- SYNAPSE_CONFIG_DIR=/config
|
|
- TZ=DE
|
|
- UID=0
|
|
- GID=0
|
|
volumes:
|
|
- ./matrix/config:/config:ro
|
|
- ${BASE_DIR:-/srv}/matrix/data:/data
|
|
depends_on:
|
|
- pg-matrix
|
|
networks:
|
|
- proxy
|
|
- matrix
|
|
|
|
pg-matrix:
|
|
image: postgres:16-alpine
|
|
container_name: pg-matrix
|
|
restart: "${RESTART:-no}"
|
|
environment:
|
|
- POSTGRES_DB=matrix
|
|
- POSTGRES_USER=matrix
|
|
- POSTGRES_PASSWORD=${MATRIX_PG_PWD:-matrix}
|
|
- POSTGRES_INITDB_ARGS=--encoding=UTF-8 --lc-collate=C --lc-ctype=C
|
|
volumes:
|
|
- ${BASE_DIR:-/srv}/matrix/psql:/var/lib/postgresql/data
|
|
networks:
|
|
- matrix
|