From abde99104d1c307a8f5020683a930591325236dd Mon Sep 17 00:00:00 2001 From: Jonathan Passerat-Palmbach Date: Fri, 19 Mar 2021 15:48:35 +0000 Subject: [PATCH 01/43] fix: remove only virtual environment file in install_sources --- scripts/_common.sh | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/scripts/_common.sh b/scripts/_common.sh index 420e454..f0cb5f1 100755 --- a/scripts/_common.sh +++ b/scripts/_common.sh @@ -6,7 +6,12 @@ install_sources() { # Clean venv is it was on python2.7 or python3 with old version in case major upgrade of debian if [ ! -e $final_path/bin/python3 ] || [ ! -e $final_path/lib/python$python_version ]; then - ynh_secure_remove --file=$final_path + ynh_secure_remove --file=$final_path/bin + ynh_secure_remove --file=$final_path/lib + ynh_secure_remove --file=$final_path/lib64 + ynh_secure_remove --file=$final_path/include + ynh_secure_remove --file=$final_path/share + ynh_secure_remove --file=$final_path/pyvenv.cfg fi mkdir -p $final_path From 6af8567e2641c7edde77234978156048228e292e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Josu=C3=A9=20Tille?= Date: Tue, 30 Mar 2021 21:23:17 +0200 Subject: [PATCH 02/43] fix twisted version --- scripts/_common.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/_common.sh b/scripts/_common.sh index f0cb5f1..f760389 100755 --- a/scripts/_common.sh +++ b/scripts/_common.sh @@ -56,7 +56,7 @@ install_sources() { chown $synapse_user:root -R $final_path sudo -u $synapse_user env PATH=$PATH pip3 install --upgrade 'cryptography>=3.3' pip3 install --upgrade cffi ndg-httpsclient psycopg2 lxml jinja2 - pip3 install --upgrade 'Twisted>=20.3.0' matrix-synapse==$upstream_version matrix-synapse-ldap3 + pip3 install --upgrade 'Twisted>=20.3.0<21' matrix-synapse==$upstream_version matrix-synapse-ldap3 # This function was defined when we called "source $final_path/bin/activate". With this function we undo what "$final_path/bin/activate" does set +u; From 3524a7dcf71d27e60aca21a9739153814932bf24 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Josu=C3=A9=20Tille?= Date: Tue, 30 Mar 2021 21:53:13 +0200 Subject: [PATCH 03/43] Document Openvpn config with coturn --- README.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/README.md b/README.md index 03bd0f1..b422649 100644 --- a/README.md +++ b/README.md @@ -78,6 +78,29 @@ If you have a dynamic IP address, you also might need to update this config auto */15 * * * * root bash /opt/yunohost/__SYNAPSE_INSTANCE_NAME__/Coturn_config_rotate.sh; ``` +#### OpenVPN + +In case of you have an OpenVPN server you might want than `coturn-synapse` restart when the VPN restart. To do this create a file named `/usr/local/bin/openvpn_up_script.sh` with this content: +``` +#!/bin/bash + +( + sleep 5 + sudo systemctl restart coturn-synapse.service +) & +exit 0 +``` + +Add this line in you sudo config file `/etc/sudoers` +``` +openvpn ALL=(ALL) NOPASSWD: /bin/systemctl restart coturn-synapse.service +``` + +And add this line in your OpenVPN config file +``` +ipchange /usr/local/bin/openvpn_up_script.sh +``` + ### Important Security Note We do not recommend running Element from the same domain name as your Matrix From b59cbccb846514d13ee72ba087433bac221d46df Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Josu=C3=A9=20Tille?= Date: Wed, 31 Mar 2021 21:49:36 +0200 Subject: [PATCH 04/43] Don't override label for main permission --- scripts/install | 2 +- scripts/upgrade | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/install b/scripts/install index 9e5bb73..9a1184c 100644 --- a/scripts/install +++ b/scripts/install @@ -342,7 +342,7 @@ ynh_add_config --template="../sources/update_synapse_for_appservice.sh" --destin ynh_script_progression --message="Configuring permissions..." --weight=1 ynh_permission_url --permission=main --url=$domain/_matrix/cas_server.php/login --auth_header=true -ynh_permission_update --permission=main --label="Synapse server SSO authentication" --show_tile=false --protected=true +ynh_permission_update --permission=main --show_tile=false --protected=true ynh_permission_create --permission=server_api --url=$domain/_matrix --additional_urls=$server_name/.well-known/matrix \ --label="Server access for client apps." --show_tile=false --allowed=visitors \ diff --git a/scripts/upgrade b/scripts/upgrade index 63f92bc..174a103 100644 --- a/scripts/upgrade +++ b/scripts/upgrade @@ -405,7 +405,7 @@ ynh_script_progression --message="Configuring permissions..." --weight=1 ynh_legacy_permissions_delete_all ynh_permission_url --permission=main --url=$domain/_matrix/cas_server.php/login --auth_header=true -ynh_permission_update --permission=main --label="Synapse server SSO authentication" --show_tile=false --protected=true +ynh_permission_update --permission=main --show_tile=false --protected=true if ! ynh_permission_exists --permission=server_api; then ynh_permission_create --permission=server_api --url=$domain/_matrix --additional_urls=$server_name/.well-known/matrix \ From 7a955759d3caf25d181908168e01dda2e6c766f6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Josu=C3=A9=20Tille?= Date: Thu, 1 Apr 2021 22:01:33 +0200 Subject: [PATCH 05/43] Bypass error in linter --- scripts/_common.sh | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/scripts/_common.sh b/scripts/_common.sh index f760389..edc919b 100755 --- a/scripts/_common.sh +++ b/scripts/_common.sh @@ -49,9 +49,10 @@ install_sources() { # Install synapse in virtualenv # We set all necessary environement variable to create a python virtualenvironnement. - set +u; + u_arg='u' + set +$u_arg; source $final_path/bin/activate - set -u; + set -$u_arg; pip3 install --upgrade setuptools wheel chown $synapse_user:root -R $final_path sudo -u $synapse_user env PATH=$PATH pip3 install --upgrade 'cryptography>=3.3' @@ -59,8 +60,8 @@ install_sources() { pip3 install --upgrade 'Twisted>=20.3.0<21' matrix-synapse==$upstream_version matrix-synapse-ldap3 # This function was defined when we called "source $final_path/bin/activate". With this function we undo what "$final_path/bin/activate" does - set +u; + set +$u_arg; deactivate - set -u; + set -$u_arg; fi } From 6e025ccbdb0b703540950808a29fbbe825bb6b53 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Josu=C3=A9=20Tille?= Date: Thu, 1 Apr 2021 21:43:46 +0200 Subject: [PATCH 06/43] Upgrade synapse to 1.30.1 --- README.md | 2 +- conf/{armv7_stretch.src => armv7_bullseye.src} | 4 ++-- conf/armv7_buster.src | 4 ++-- manifest.json | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) rename conf/{armv7_stretch.src => armv7_bullseye.src} (69%) diff --git a/README.md b/README.md index b422649..d6cf5f0 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ Instant messaging server matrix network. Yunohost chatroom with matrix : [https://riot.im/app/#/room/#yunohost:matrix.org](https://riot.im/app/#/room/#yunohost:matrix.org) -**Shipped version:** 1.28.0 +**Shipped version:** 1.30.1 ## Configuration diff --git a/conf/armv7_stretch.src b/conf/armv7_bullseye.src similarity index 69% rename from conf/armv7_stretch.src rename to conf/armv7_bullseye.src index 744d6fc..2151c3d 100644 --- a/conf/armv7_stretch.src +++ b/conf/armv7_bullseye.src @@ -1,5 +1,5 @@ -SOURCE_URL=https://github.com/YunoHost-Apps/synapse_python_build/releases/download/v1.28.0/matrix-synapse_1.28.0-stretch-bin1_armv7l.tar.gz -SOURCE_SUM=03078aa4a8a88609ab71e11f8503c83f5bbee8e4211f997318d7843438ac4db5 +SOURCE_URL=https://github.com/YunoHost-Apps/synapse_python_build/releases/download/v1.30.1/matrix-synapse_1.30.1-bullseye-bin1_armv7l.tar.gz +SOURCE_SUM=fa8ef3ae61e66bf06a0a26573ef0c12d2f221d0071d43c0536e04568109eed21 # (Optional) Program to check the integrity (sha256sum, md5sum...) # default: sha256 SOURCE_SUM_PRG=sha256sum diff --git a/conf/armv7_buster.src b/conf/armv7_buster.src index 3139bdb..b831b86 100644 --- a/conf/armv7_buster.src +++ b/conf/armv7_buster.src @@ -1,5 +1,5 @@ -SOURCE_URL=https://github.com/YunoHost-Apps/synapse_python_build/releases/download/v1.28.0/matrix-synapse_1.28.0-buster-bin1_armv7l.tar.gz -SOURCE_SUM=9a3a0098953ee592f9c40fd98d1e54f0c5a369a27007667fbe4689cc0aa4bcc0 +SOURCE_URL=https://github.com/YunoHost-Apps/synapse_python_build/releases/download/v1.30.1/matrix-synapse_1.30.1-buster-bin1_armv7l.tar.gz +SOURCE_SUM=13c7c4bd818f48128862027fa36b078a90237a700873bb8d73c5b1f6646b6b6d # (Optional) Program to check the integrity (sha256sum, md5sum...) # default: sha256 SOURCE_SUM_PRG=sha256sum diff --git a/manifest.json b/manifest.json index 5f1c968..4985acd 100644 --- a/manifest.json +++ b/manifest.json @@ -6,7 +6,7 @@ "en": "Instant messaging server which uses Matrix", "fr": "Un serveur de messagerie instantané basé sur Matrix" }, - "version": "1.28.0~ynh2", + "version": "1.30.1~ynh1", "url": "http://matrix.org", "license": "Apache-2.0", "maintainer": { From a5d2bc6560ffb47dc9bd2c027e6c66efcdce8267 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Josu=C3=A9=20Tille?= Date: Mon, 5 Apr 2021 12:55:40 +0200 Subject: [PATCH 07/43] Fix issue #248 and #244 --- scripts/_common.sh | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/scripts/_common.sh b/scripts/_common.sh index edc919b..79a4564 100755 --- a/scripts/_common.sh +++ b/scripts/_common.sh @@ -40,9 +40,9 @@ install_sources() { if [ -e $final_path/.rustup ]; then sudo -u "$synapse_user" env PATH=$PATH rustup update else - sudo -u "$synapse_user" bash -c 'curl -sSf -L https://static.rust-lang.org/rustup.sh | sh -s -- -y --default-toolchain=stable' + sudo -u "$synapse_user" bash -c 'curl -sSf -L https://static.rust-lang.org/rustup.sh | sh -s -- -y --default-toolchain=stable --profile=minimal' fi - + # Install virtualenv if it don't exist test -e $final_path/bin/python3 || python3 -m venv $final_path @@ -57,7 +57,8 @@ install_sources() { chown $synapse_user:root -R $final_path sudo -u $synapse_user env PATH=$PATH pip3 install --upgrade 'cryptography>=3.3' pip3 install --upgrade cffi ndg-httpsclient psycopg2 lxml jinja2 - pip3 install --upgrade 'Twisted>=20.3.0<21' matrix-synapse==$upstream_version matrix-synapse-ldap3 + # Fix issue https://github.com/YunoHost-Apps/synapse_ynh/issues/248 + pip3 install --upgrade 'Twisted>=21' 'treq>=21.1.0' matrix-synapse==$upstream_version matrix-synapse-ldap3 # This function was defined when we called "source $final_path/bin/activate". With this function we undo what "$final_path/bin/activate" does set +$u_arg; From dccaf7f85a0c10d99b3a70233aba644254df34fc Mon Sep 17 00:00:00 2001 From: Mayeul Cantan Date: Tue, 6 Apr 2021 14:49:38 +0200 Subject: [PATCH 08/43] Add X-Forwarded-Proto header Fixes https://github.com/YunoHost-Apps/synapse_ynh/issues/249 --- conf/nginx.conf | 1 + 1 file changed, 1 insertion(+) diff --git a/conf/nginx.conf b/conf/nginx.conf index a08a7b7..9b12af0 100644 --- a/conf/nginx.conf +++ b/conf/nginx.conf @@ -1,6 +1,7 @@ location __PATH__ { proxy_pass http://localhost:__PORT__; proxy_set_header X-Forwarded-For $remote_addr; + proxy_set_header X-Forwarded-Proto $scheme; client_max_body_size 100M; From bea530efeda0f1594d3cebad620be74fce1d9e60 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Josu=C3=A9=20Tille?= Date: Wed, 7 Apr 2021 00:17:45 +0200 Subject: [PATCH 09/43] Upgrade synapse to 1.31.0 --- README.md | 2 +- conf/armv7_bullseye.src | 4 ++-- conf/armv7_buster.src | 4 ++-- manifest.json | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index d6cf5f0..be1477c 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ Instant messaging server matrix network. Yunohost chatroom with matrix : [https://riot.im/app/#/room/#yunohost:matrix.org](https://riot.im/app/#/room/#yunohost:matrix.org) -**Shipped version:** 1.30.1 +**Shipped version:** 1.31.0 ## Configuration diff --git a/conf/armv7_bullseye.src b/conf/armv7_bullseye.src index 2151c3d..89e1144 100644 --- a/conf/armv7_bullseye.src +++ b/conf/armv7_bullseye.src @@ -1,5 +1,5 @@ -SOURCE_URL=https://github.com/YunoHost-Apps/synapse_python_build/releases/download/v1.30.1/matrix-synapse_1.30.1-bullseye-bin1_armv7l.tar.gz -SOURCE_SUM=fa8ef3ae61e66bf06a0a26573ef0c12d2f221d0071d43c0536e04568109eed21 +SOURCE_URL=https://github.com/YunoHost-Apps/synapse_python_build/releases/download/v1.31.0/matrix-synapse_1.31.0-bullseye-bin1_armv7l.tar.gz +SOURCE_SUM=edfe30078bae8fbe565e6e18f6c0859c81e1828862584a5135ac57f92e1f0c91 # (Optional) Program to check the integrity (sha256sum, md5sum...) # default: sha256 SOURCE_SUM_PRG=sha256sum diff --git a/conf/armv7_buster.src b/conf/armv7_buster.src index b831b86..ed0e09a 100644 --- a/conf/armv7_buster.src +++ b/conf/armv7_buster.src @@ -1,5 +1,5 @@ -SOURCE_URL=https://github.com/YunoHost-Apps/synapse_python_build/releases/download/v1.30.1/matrix-synapse_1.30.1-buster-bin1_armv7l.tar.gz -SOURCE_SUM=13c7c4bd818f48128862027fa36b078a90237a700873bb8d73c5b1f6646b6b6d +SOURCE_URL=https://github.com/YunoHost-Apps/synapse_python_build/releases/download/v1.31.0/matrix-synapse_1.31.0-buster-bin1_armv7l.tar.gz +SOURCE_SUM=877bb0812bd133b4f4c6745b1c5dc441dcd919f65de8a53d348fd00b99e74660 # (Optional) Program to check the integrity (sha256sum, md5sum...) # default: sha256 SOURCE_SUM_PRG=sha256sum diff --git a/manifest.json b/manifest.json index 4985acd..3228ee2 100644 --- a/manifest.json +++ b/manifest.json @@ -6,7 +6,7 @@ "en": "Instant messaging server which uses Matrix", "fr": "Un serveur de messagerie instantané basé sur Matrix" }, - "version": "1.30.1~ynh1", + "version": "1.31.0~ynh1", "url": "http://matrix.org", "license": "Apache-2.0", "maintainer": { From c0f13c31fbee7ca8c6117e94a0697529e7ea8460 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Josu=C3=A9=20Tille?= Date: Wed, 7 Apr 2021 17:58:59 +0200 Subject: [PATCH 10/43] Disable multiInstance test We can't do a multi instance install on the same domaine. And the CI do this, so disable this for now. Could be enabled if a solution is available for this test --- check_process | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/check_process b/check_process index fa6484d..c14412d 100644 --- a/check_process +++ b/check_process @@ -16,7 +16,7 @@ upgrade=1 from_commit=35774cc0eabb82b03230210689fa060d5f2b0bd8 upgrade=1 from_commit=dbf0a2c9359ccd62b55132cace548b17e44af9bf backup_restore=1 - multi_instance=1 + multi_instance=0 incorrect_path=0 port_already_use=1 (8448) change_url=0 From 971275f8b113692d9c05cb2f78d876d01684b4d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Josu=C3=A9=20Tille?= Date: Wed, 21 Apr 2021 00:25:44 +0200 Subject: [PATCH 11/43] Upgrade synapse to 1.32.0 --- README.md | 2 +- conf/armv7_bullseye.src | 4 ++-- conf/armv7_buster.src | 4 ++-- manifest.json | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index be1477c..44821f3 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ Instant messaging server matrix network. Yunohost chatroom with matrix : [https://riot.im/app/#/room/#yunohost:matrix.org](https://riot.im/app/#/room/#yunohost:matrix.org) -**Shipped version:** 1.31.0 +**Shipped version:** 1.32.0 ## Configuration diff --git a/conf/armv7_bullseye.src b/conf/armv7_bullseye.src index 89e1144..6c81876 100644 --- a/conf/armv7_bullseye.src +++ b/conf/armv7_bullseye.src @@ -1,5 +1,5 @@ -SOURCE_URL=https://github.com/YunoHost-Apps/synapse_python_build/releases/download/v1.31.0/matrix-synapse_1.31.0-bullseye-bin1_armv7l.tar.gz -SOURCE_SUM=edfe30078bae8fbe565e6e18f6c0859c81e1828862584a5135ac57f92e1f0c91 +SOURCE_URL=https://github.com/YunoHost-Apps/synapse_python_build/releases/download/v1.32.0/matrix-synapse_1.32.0-bullseye-bin1_armv7l.tar.gz +SOURCE_SUM=8f378cc3c5bd84d49fc4919e2c6215ab8133a5adafb93aca64e727d36a3f6fbb # (Optional) Program to check the integrity (sha256sum, md5sum...) # default: sha256 SOURCE_SUM_PRG=sha256sum diff --git a/conf/armv7_buster.src b/conf/armv7_buster.src index ed0e09a..0c4d869 100644 --- a/conf/armv7_buster.src +++ b/conf/armv7_buster.src @@ -1,5 +1,5 @@ -SOURCE_URL=https://github.com/YunoHost-Apps/synapse_python_build/releases/download/v1.31.0/matrix-synapse_1.31.0-buster-bin1_armv7l.tar.gz -SOURCE_SUM=877bb0812bd133b4f4c6745b1c5dc441dcd919f65de8a53d348fd00b99e74660 +SOURCE_URL=https://github.com/YunoHost-Apps/synapse_python_build/releases/download/v1.32.0/matrix-synapse_1.32.0-buster-bin1_armv7l.tar.gz +SOURCE_SUM=1bbceae0bed2499383ceeb276e6f9f2dd08c53ef9d7309d56358f5f1ae3a072c # (Optional) Program to check the integrity (sha256sum, md5sum...) # default: sha256 SOURCE_SUM_PRG=sha256sum diff --git a/manifest.json b/manifest.json index 3228ee2..397631b 100644 --- a/manifest.json +++ b/manifest.json @@ -6,7 +6,7 @@ "en": "Instant messaging server which uses Matrix", "fr": "Un serveur de messagerie instantané basé sur Matrix" }, - "version": "1.31.0~ynh1", + "version": "1.32.0~ynh1", "url": "http://matrix.org", "license": "Apache-2.0", "maintainer": { From 81c809131d10cd387068efbf1fdbf3e1dde64f65 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Josu=C3=A9=20Tille?= Date: Fri, 23 Apr 2021 16:01:38 +0200 Subject: [PATCH 12/43] Fix nginx headers --- conf/nginx.conf | 1 + 1 file changed, 1 insertion(+) diff --git a/conf/nginx.conf b/conf/nginx.conf index 9b12af0..275cd1d 100644 --- a/conf/nginx.conf +++ b/conf/nginx.conf @@ -2,6 +2,7 @@ location __PATH__ { proxy_pass http://localhost:__PORT__; proxy_set_header X-Forwarded-For $remote_addr; proxy_set_header X-Forwarded-Proto $scheme; + proxy_set_header Host $host; client_max_body_size 100M; From b8f63a9371dee9bec7b6221180a5f87f1f62ec5f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Josu=C3=A9=20Tille?= Date: Thu, 22 Apr 2021 00:19:46 +0200 Subject: [PATCH 13/43] Upgrade synapse to 1.32.1 --- README.md | 2 +- conf/armv7_bullseye.src | 4 ++-- conf/armv7_buster.src | 4 ++-- manifest.json | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 44821f3..a085c80 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ Instant messaging server matrix network. Yunohost chatroom with matrix : [https://riot.im/app/#/room/#yunohost:matrix.org](https://riot.im/app/#/room/#yunohost:matrix.org) -**Shipped version:** 1.32.0 +**Shipped version:** 1.32.1 ## Configuration diff --git a/conf/armv7_bullseye.src b/conf/armv7_bullseye.src index 6c81876..6adfd1a 100644 --- a/conf/armv7_bullseye.src +++ b/conf/armv7_bullseye.src @@ -1,5 +1,5 @@ -SOURCE_URL=https://github.com/YunoHost-Apps/synapse_python_build/releases/download/v1.32.0/matrix-synapse_1.32.0-bullseye-bin1_armv7l.tar.gz -SOURCE_SUM=8f378cc3c5bd84d49fc4919e2c6215ab8133a5adafb93aca64e727d36a3f6fbb +SOURCE_URL=https://github.com/YunoHost-Apps/synapse_python_build/releases/download/v1.32.1/matrix-synapse_1.32.1-bullseye-bin1_armv7l.tar.gz +SOURCE_SUM=05a069cbe9d1e84c782cd118c3430ba30dc1038e4dff8d57e0990d39e260fc30 # (Optional) Program to check the integrity (sha256sum, md5sum...) # default: sha256 SOURCE_SUM_PRG=sha256sum diff --git a/conf/armv7_buster.src b/conf/armv7_buster.src index 0c4d869..63daa9a 100644 --- a/conf/armv7_buster.src +++ b/conf/armv7_buster.src @@ -1,5 +1,5 @@ -SOURCE_URL=https://github.com/YunoHost-Apps/synapse_python_build/releases/download/v1.32.0/matrix-synapse_1.32.0-buster-bin1_armv7l.tar.gz -SOURCE_SUM=1bbceae0bed2499383ceeb276e6f9f2dd08c53ef9d7309d56358f5f1ae3a072c +SOURCE_URL=https://github.com/YunoHost-Apps/synapse_python_build/releases/download/v1.32.1/matrix-synapse_1.32.1-buster-bin1_armv7l.tar.gz +SOURCE_SUM=c37ff205fca6fa732e2616afdf2f4fe7aadbbd0c7a33c4c2d674af188d7e0835 # (Optional) Program to check the integrity (sha256sum, md5sum...) # default: sha256 SOURCE_SUM_PRG=sha256sum diff --git a/manifest.json b/manifest.json index 397631b..c9e3f02 100644 --- a/manifest.json +++ b/manifest.json @@ -6,7 +6,7 @@ "en": "Instant messaging server which uses Matrix", "fr": "Un serveur de messagerie instantané basé sur Matrix" }, - "version": "1.32.0~ynh1", + "version": "1.32.1~ynh1", "url": "http://matrix.org", "license": "Apache-2.0", "maintainer": { From 836ba7979836c83533a3eda5997d103acf954c4b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Josu=C3=A9=20Tille?= Date: Fri, 23 Apr 2021 00:19:56 +0200 Subject: [PATCH 14/43] Upgrade synapse to 1.32.2 --- README.md | 2 +- conf/armv7_bullseye.src | 4 ++-- conf/armv7_buster.src | 4 ++-- manifest.json | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index a085c80..d696d24 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ Instant messaging server matrix network. Yunohost chatroom with matrix : [https://riot.im/app/#/room/#yunohost:matrix.org](https://riot.im/app/#/room/#yunohost:matrix.org) -**Shipped version:** 1.32.1 +**Shipped version:** 1.32.2 ## Configuration diff --git a/conf/armv7_bullseye.src b/conf/armv7_bullseye.src index 6adfd1a..2a0927f 100644 --- a/conf/armv7_bullseye.src +++ b/conf/armv7_bullseye.src @@ -1,5 +1,5 @@ -SOURCE_URL=https://github.com/YunoHost-Apps/synapse_python_build/releases/download/v1.32.1/matrix-synapse_1.32.1-bullseye-bin1_armv7l.tar.gz -SOURCE_SUM=05a069cbe9d1e84c782cd118c3430ba30dc1038e4dff8d57e0990d39e260fc30 +SOURCE_URL=https://github.com/YunoHost-Apps/synapse_python_build/releases/download/v1.32.2/matrix-synapse_1.32.2-bullseye-bin1_armv7l.tar.gz +SOURCE_SUM=ffb97a1c488a60e7106d45bfe71c7c28fd4ac9b6083798f626fca5c20cec3148 # (Optional) Program to check the integrity (sha256sum, md5sum...) # default: sha256 SOURCE_SUM_PRG=sha256sum diff --git a/conf/armv7_buster.src b/conf/armv7_buster.src index 63daa9a..5c4526e 100644 --- a/conf/armv7_buster.src +++ b/conf/armv7_buster.src @@ -1,5 +1,5 @@ -SOURCE_URL=https://github.com/YunoHost-Apps/synapse_python_build/releases/download/v1.32.1/matrix-synapse_1.32.1-buster-bin1_armv7l.tar.gz -SOURCE_SUM=c37ff205fca6fa732e2616afdf2f4fe7aadbbd0c7a33c4c2d674af188d7e0835 +SOURCE_URL=https://github.com/YunoHost-Apps/synapse_python_build/releases/download/v1.32.2/matrix-synapse_1.32.2-buster-bin1_armv7l.tar.gz +SOURCE_SUM=0343c6622f246b3a7809fefc032c2b2a8d0433020cd064ab92b1d2ed1f9a7c85 # (Optional) Program to check the integrity (sha256sum, md5sum...) # default: sha256 SOURCE_SUM_PRG=sha256sum diff --git a/manifest.json b/manifest.json index c9e3f02..a80b3f7 100644 --- a/manifest.json +++ b/manifest.json @@ -6,7 +6,7 @@ "en": "Instant messaging server which uses Matrix", "fr": "Un serveur de messagerie instantané basé sur Matrix" }, - "version": "1.32.1~ynh1", + "version": "1.32.2~ynh1", "url": "http://matrix.org", "license": "Apache-2.0", "maintainer": { From 609748c5e249428a9fe7616baf5e2eca1fd7c666 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Josu=C3=A9=20Tille?= Date: Mon, 26 Apr 2021 15:42:02 +0200 Subject: [PATCH 15/43] Fix cryptography dependances --- scripts/_common.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/_common.sh b/scripts/_common.sh index 79a4564..8e7c92f 100755 --- a/scripts/_common.sh +++ b/scripts/_common.sh @@ -55,7 +55,7 @@ install_sources() { set -$u_arg; pip3 install --upgrade setuptools wheel chown $synapse_user:root -R $final_path - sudo -u $synapse_user env PATH=$PATH pip3 install --upgrade 'cryptography>=3.3' + sudo -u $synapse_user env PATH=$PATH pip3 install --upgrade 'cryptography>=3.4.7' pip3 install --upgrade cffi ndg-httpsclient psycopg2 lxml jinja2 # Fix issue https://github.com/YunoHost-Apps/synapse_ynh/issues/248 pip3 install --upgrade 'Twisted>=21' 'treq>=21.1.0' matrix-synapse==$upstream_version matrix-synapse-ldap3 From 122203b772cb698dfd0f0765a0a6d6bf7777c986 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Josu=C3=A9=20Tille?= Date: Thu, 6 May 2021 00:23:07 +0200 Subject: [PATCH 16/43] Upgrade synapse to 1.33.0 --- README.md | 2 +- conf/armv7_bullseye.src | 4 ++-- conf/armv7_buster.src | 4 ++-- manifest.json | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index d696d24..76e90d1 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ Instant messaging server matrix network. Yunohost chatroom with matrix : [https://riot.im/app/#/room/#yunohost:matrix.org](https://riot.im/app/#/room/#yunohost:matrix.org) -**Shipped version:** 1.32.2 +**Shipped version:** 1.33.0 ## Configuration diff --git a/conf/armv7_bullseye.src b/conf/armv7_bullseye.src index 2a0927f..eb8d16a 100644 --- a/conf/armv7_bullseye.src +++ b/conf/armv7_bullseye.src @@ -1,5 +1,5 @@ -SOURCE_URL=https://github.com/YunoHost-Apps/synapse_python_build/releases/download/v1.32.2/matrix-synapse_1.32.2-bullseye-bin1_armv7l.tar.gz -SOURCE_SUM=ffb97a1c488a60e7106d45bfe71c7c28fd4ac9b6083798f626fca5c20cec3148 +SOURCE_URL=https://github.com/YunoHost-Apps/synapse_python_build/releases/download/v1.33.0/matrix-synapse_1.33.0-bullseye-bin1_armv7l.tar.gz +SOURCE_SUM=9c06450d6a7731852b76d277b0ac72a9bcc11ea0ac6975f91c9a35eca1678a34 # (Optional) Program to check the integrity (sha256sum, md5sum...) # default: sha256 SOURCE_SUM_PRG=sha256sum diff --git a/conf/armv7_buster.src b/conf/armv7_buster.src index 5c4526e..0aadeb6 100644 --- a/conf/armv7_buster.src +++ b/conf/armv7_buster.src @@ -1,5 +1,5 @@ -SOURCE_URL=https://github.com/YunoHost-Apps/synapse_python_build/releases/download/v1.32.2/matrix-synapse_1.32.2-buster-bin1_armv7l.tar.gz -SOURCE_SUM=0343c6622f246b3a7809fefc032c2b2a8d0433020cd064ab92b1d2ed1f9a7c85 +SOURCE_URL=https://github.com/YunoHost-Apps/synapse_python_build/releases/download/v1.33.0/matrix-synapse_1.33.0-buster-bin1_armv7l.tar.gz +SOURCE_SUM=ebf3613d47a513322e31512285fb86d0dec776f99bea9a87d66281862e6fb01d # (Optional) Program to check the integrity (sha256sum, md5sum...) # default: sha256 SOURCE_SUM_PRG=sha256sum diff --git a/manifest.json b/manifest.json index a80b3f7..308524d 100644 --- a/manifest.json +++ b/manifest.json @@ -6,7 +6,7 @@ "en": "Instant messaging server which uses Matrix", "fr": "Un serveur de messagerie instantané basé sur Matrix" }, - "version": "1.32.2~ynh1", + "version": "1.33.0~ynh1", "url": "http://matrix.org", "license": "Apache-2.0", "maintainer": { From 89f12fb6061ffd6527865e35ae79e1b7fbac1fb7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Josu=C3=A9=20Tille?= Date: Fri, 7 May 2021 00:27:22 +0200 Subject: [PATCH 17/43] Upgrade synapse to 1.33.1 --- README.md | 2 +- conf/armv7_bullseye.src | 4 ++-- conf/armv7_buster.src | 4 ++-- manifest.json | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 76e90d1..9cc039a 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ Instant messaging server matrix network. Yunohost chatroom with matrix : [https://riot.im/app/#/room/#yunohost:matrix.org](https://riot.im/app/#/room/#yunohost:matrix.org) -**Shipped version:** 1.33.0 +**Shipped version:** 1.33.1 ## Configuration diff --git a/conf/armv7_bullseye.src b/conf/armv7_bullseye.src index eb8d16a..4d3a6ef 100644 --- a/conf/armv7_bullseye.src +++ b/conf/armv7_bullseye.src @@ -1,5 +1,5 @@ -SOURCE_URL=https://github.com/YunoHost-Apps/synapse_python_build/releases/download/v1.33.0/matrix-synapse_1.33.0-bullseye-bin1_armv7l.tar.gz -SOURCE_SUM=9c06450d6a7731852b76d277b0ac72a9bcc11ea0ac6975f91c9a35eca1678a34 +SOURCE_URL=https://github.com/YunoHost-Apps/synapse_python_build/releases/download/v1.33.1/matrix-synapse_1.33.1-bullseye-bin1_armv7l.tar.gz +SOURCE_SUM=435a631a03ab231a4a666e306bb41266c8846b0b346aaad4ab2fd0c21b29eeb0 # (Optional) Program to check the integrity (sha256sum, md5sum...) # default: sha256 SOURCE_SUM_PRG=sha256sum diff --git a/conf/armv7_buster.src b/conf/armv7_buster.src index 0aadeb6..6a744c1 100644 --- a/conf/armv7_buster.src +++ b/conf/armv7_buster.src @@ -1,5 +1,5 @@ -SOURCE_URL=https://github.com/YunoHost-Apps/synapse_python_build/releases/download/v1.33.0/matrix-synapse_1.33.0-buster-bin1_armv7l.tar.gz -SOURCE_SUM=ebf3613d47a513322e31512285fb86d0dec776f99bea9a87d66281862e6fb01d +SOURCE_URL=https://github.com/YunoHost-Apps/synapse_python_build/releases/download/v1.33.1/matrix-synapse_1.33.1-buster-bin1_armv7l.tar.gz +SOURCE_SUM=f6f957d262e904638be0a906a448171ab427ae871b0143c081f18c79997dc549 # (Optional) Program to check the integrity (sha256sum, md5sum...) # default: sha256 SOURCE_SUM_PRG=sha256sum diff --git a/manifest.json b/manifest.json index 308524d..c2c42b4 100644 --- a/manifest.json +++ b/manifest.json @@ -6,7 +6,7 @@ "en": "Instant messaging server which uses Matrix", "fr": "Un serveur de messagerie instantané basé sur Matrix" }, - "version": "1.33.0~ynh1", + "version": "1.33.1~ynh1", "url": "http://matrix.org", "license": "Apache-2.0", "maintainer": { From 606509f134a4a515c5ae035fede03dd29331d107 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Josu=C3=A9=20Tille?= Date: Sun, 9 May 2021 15:25:02 +0200 Subject: [PATCH 18/43] Fix issue #259 --- scripts/install | 9 +++++++-- scripts/upgrade | 15 +++++++++++++-- 2 files changed, 20 insertions(+), 4 deletions(-) diff --git a/scripts/install b/scripts/install index 9a1184c..daef186 100644 --- a/scripts/install +++ b/scripts/install @@ -344,10 +344,15 @@ ynh_script_progression --message="Configuring permissions..." --weight=1 ynh_permission_url --permission=main --url=$domain/_matrix/cas_server.php/login --auth_header=true ynh_permission_update --permission=main --show_tile=false --protected=true -ynh_permission_create --permission=server_api --url=$domain/_matrix --additional_urls=$server_name/.well-known/matrix \ +ynh_permission_create --permission=server_api --url=$domain/_matrix \ --label="Server access for client apps." --show_tile=false --allowed=visitors \ --auth_header=false --protected=true - +if yunohost --output-as plain domain list | grep -q "^$server_name$"; then + ynh_permission_create --permission=server_client_infos --url=$server_name/.well-known/matrix \ + --label="Server info for clients. (well-known)" --show_tile=false --allowed=visitors \ + --auth_header=false --protected=true +fi + #================================================= # UPDATE HOOKS #================================================= diff --git a/scripts/upgrade b/scripts/upgrade index 174a103..76bc34a 100644 --- a/scripts/upgrade +++ b/scripts/upgrade @@ -408,18 +408,29 @@ ynh_permission_url --permission=main --url=$domain/_matrix/cas_server.php/login ynh_permission_update --permission=main --show_tile=false --protected=true if ! ynh_permission_exists --permission=server_api; then - ynh_permission_create --permission=server_api --url=$domain/_matrix --additional_urls=$server_name/.well-known/matrix \ + ynh_permission_create --permission=server_api --url=$domain/_matrix \ --label="Server access for client apps." --show_tile=false --allowed=visitors \ --auth_header=false --protected=true python3 remove_sso_conf_persistent.py $domain $server_name \ || ynh_print_warn --message="Your file /etc/ssowat/""conf.json.persistent doesn't respect the json syntax. The config file wasn't cleaned. Please clean it manually." else - ynh_permission_url --permission=server_api --url=$domain/_matrix --add_url=$server_name/.well-known/matrix \ + ynh_permission_url --permission=server_api --url=$domain/_matrix --remove_url=$server_name/.well-known/matrix \ --auth_header=false ynh_permission_update --permission=server_api --label="Server access for client apps." --show_tile=false \ --protected=true fi +if yunohost --output-as plain domain list | grep -q "^$server_name"'$' && ! ynh_permission_exists --permission=server_client_infos; then + ynh_permission_create --permission=server_client_infos --url=$server_name/.well-known/matrix \ + --label="Server info for clients. (well-known)" --show_tile=false --allowed=visitors \ + --auth_header=false --protected=true +else + ynh_permission_url --permission=server_client_infos --url=$server_name/.well-known/matrix \ + --auth_header=false + ynh_permission_update --permission=server_client_infos --label="Server info for clients. (well-known)" --show_tile=false \ + --protected=true +fi + #================================================= # SECURE FILES AND DIRECTORIES #================================================= From 2dee32e75f7bf640d1b67427b62a0bec83d8221b Mon Sep 17 00:00:00 2001 From: Yunohost-Bot <> Date: Thu, 13 May 2021 17:53:06 +0200 Subject: [PATCH 19/43] [autopatch] Update issue and PR templates --- .github/ISSUE_TEMPLATE.md | 55 ++++++++++++++++++++++++++++++++ .github/PULL_REQUEST_TEMPLATE.md | 16 ++++++++++ pull_request_template.md | 12 ------- 3 files changed, 71 insertions(+), 12 deletions(-) create mode 100644 .github/ISSUE_TEMPLATE.md create mode 100644 .github/PULL_REQUEST_TEMPLATE.md delete mode 100644 pull_request_template.md diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md new file mode 100644 index 0000000..2729a6b --- /dev/null +++ b/.github/ISSUE_TEMPLATE.md @@ -0,0 +1,55 @@ +--- +name: Bug report +about: When creating a bug report, please use the following template to provide all the relevant information and help debugging efficiently. + +--- + +**How to post a meaningful bug report** +1. *Read this whole template first.* +2. *Determine if you are on the right place:* + - *If you were performing an action on the app from the webadmin or the CLI (install, update, backup, restore, change_url...), you are on the right place!* + - *Otherwise, the issue may be due to the app itself. Refer to its documentation or repository for help.* + - *When in doubt, post here and we will figure it out together.* +3. *Delete the italic comments as you write over them below, and remove this guide.* +--- + +### Describe the bug + +*A clear and concise description of what the bug is.* + +### Context + +- Hardware: *VPS bought online / Old laptop or computer / Raspberry Pi at home / Internet Cube with VPN / Other ARM board / ...* +- YunoHost version: x.x.x +- I have access to my server: *Through SSH | through the webadmin | direct access via keyboard / screen | ...* +- Are you in a special context or did you perform some particular tweaking on your YunoHost instance?: *no / yes* + - If yes, please explain: +- Using, or trying to install package version/branch: +- If upgrading, current package version: *can be found in the admin, or with `yunohost app info $app_id`* + +### Steps to reproduce + +- *If you performed a command from the CLI, the command itself is enough. For example:* + ```sh + sudo yunohost app install the_app + ``` +- *If you used the webadmin, please perform the equivalent command from the CLI first.* +- *If the error occurs in your browser, explain what you did:* + 1. *Go to '...'* + 2. *Click on '...'* + 3. *Scroll down to '...'* + 4. *See error* + +### Expected behavior + +*A clear and concise description of what you expected to happen. You can remove this section if the command above is enough to understand your intent.* + +### Logs + +*When an operation fails, YunoHost provides a simple way to share the logs.* +- *In the webadmin, the error message contains a link to the relevant log page. On that page, you will be able to 'Share with Yunopaste'. If you missed it, the logs of previous operations are also available under Tools > Logs.* +- *In command line, the command to share the logs is displayed at the end of the operation and looks like `yunohost log display [log name] --share`. If you missed it, you can find the log ID of a previous operation using `yunohost log list`.* + +*After sharing the log, please copypaste directly the link provided by YunoHost (to help readability, no need to copypaste the entire content of the log here, just the link is enough...)* + +*If applicable and useful, add screenshots to help explain your problem.* diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 0000000..ef70e18 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,16 @@ +## Problem + +- *Description of why you made this PR* + +## Solution + +- *And how do you fix that problem* + +## PR Status + +- [ ] Code finished and ready to be reviewed/tested +- [ ] The fix/enhancement were manually tested (if applicable) + +## Automatic tests + +Automatic tests can be triggered on https://ci-apps-dev.yunohost.org/ *after creating the PR*, by commenting "!testme", "!gogogadgetoci" or "By the power of systemd, I invoke The Great App CI to test this Pull Request!". (N.B. : for this to work you need to be a member of the Yunohost-Apps organization) diff --git a/pull_request_template.md b/pull_request_template.md deleted file mode 100644 index 36526ee..0000000 --- a/pull_request_template.md +++ /dev/null @@ -1,12 +0,0 @@ -## Problem -- *Description of why you made this PR* - -## Solution -- *And how you fix that* - -## PR Status -- [ ] Code finished. -- [ ] Tested with Package_check. -- [ ] Fix or enhancement tested. -- [ ] Upgrade from last version tested. -- [ ] Can be reviewed and tested. From 5a8e6598bcfaf02b20acae3f75ce26e75e2bd98c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Josu=C3=A9=20Tille?= Date: Wed, 12 May 2021 00:39:58 +0200 Subject: [PATCH 20/43] Upgrade synapse to 1.33.2 --- README.md | 2 +- conf/armv7_bullseye.src | 4 ++-- conf/armv7_buster.src | 4 ++-- manifest.json | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 9cc039a..cd72857 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ Instant messaging server matrix network. Yunohost chatroom with matrix : [https://riot.im/app/#/room/#yunohost:matrix.org](https://riot.im/app/#/room/#yunohost:matrix.org) -**Shipped version:** 1.33.1 +**Shipped version:** 1.33.2 ## Configuration diff --git a/conf/armv7_bullseye.src b/conf/armv7_bullseye.src index 4d3a6ef..21857a1 100644 --- a/conf/armv7_bullseye.src +++ b/conf/armv7_bullseye.src @@ -1,5 +1,5 @@ -SOURCE_URL=https://github.com/YunoHost-Apps/synapse_python_build/releases/download/v1.33.1/matrix-synapse_1.33.1-bullseye-bin1_armv7l.tar.gz -SOURCE_SUM=435a631a03ab231a4a666e306bb41266c8846b0b346aaad4ab2fd0c21b29eeb0 +SOURCE_URL=https://github.com/YunoHost-Apps/synapse_python_build/releases/download/v1.33.2/matrix-synapse_1.33.2-bullseye-bin1_armv7l.tar.gz +SOURCE_SUM=39f2b421ccd1ccaeb5c76045c9fcd9b7099b120f8b5bd91eb9861bbd404326a9 # (Optional) Program to check the integrity (sha256sum, md5sum...) # default: sha256 SOURCE_SUM_PRG=sha256sum diff --git a/conf/armv7_buster.src b/conf/armv7_buster.src index 6a744c1..27f4960 100644 --- a/conf/armv7_buster.src +++ b/conf/armv7_buster.src @@ -1,5 +1,5 @@ -SOURCE_URL=https://github.com/YunoHost-Apps/synapse_python_build/releases/download/v1.33.1/matrix-synapse_1.33.1-buster-bin1_armv7l.tar.gz -SOURCE_SUM=f6f957d262e904638be0a906a448171ab427ae871b0143c081f18c79997dc549 +SOURCE_URL=https://github.com/YunoHost-Apps/synapse_python_build/releases/download/v1.33.2/matrix-synapse_1.33.2-buster-bin1_armv7l.tar.gz +SOURCE_SUM=ae247f4b8d6623dee2bb3a6a6883e03d82644f4dbbe7f8d9d39ea17d0a4f2cac # (Optional) Program to check the integrity (sha256sum, md5sum...) # default: sha256 SOURCE_SUM_PRG=sha256sum diff --git a/manifest.json b/manifest.json index c2c42b4..169fecb 100644 --- a/manifest.json +++ b/manifest.json @@ -6,7 +6,7 @@ "en": "Instant messaging server which uses Matrix", "fr": "Un serveur de messagerie instantané basé sur Matrix" }, - "version": "1.33.1~ynh1", + "version": "1.33.2~ynh1", "url": "http://matrix.org", "license": "Apache-2.0", "maintainer": { From a2e5ad99b5ff552f727af0b616ae35cc70bffb22 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Josu=C3=A9=20Tille?= Date: Tue, 18 May 2021 00:22:53 +0200 Subject: [PATCH 21/43] Upgrade synapse to 1.34.0 --- README.md | 2 +- conf/armv7_bullseye.src | 4 ++-- conf/armv7_buster.src | 4 ++-- manifest.json | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index cd72857..8a0f796 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ Instant messaging server matrix network. Yunohost chatroom with matrix : [https://riot.im/app/#/room/#yunohost:matrix.org](https://riot.im/app/#/room/#yunohost:matrix.org) -**Shipped version:** 1.33.2 +**Shipped version:** 1.34.0 ## Configuration diff --git a/conf/armv7_bullseye.src b/conf/armv7_bullseye.src index 21857a1..06ba785 100644 --- a/conf/armv7_bullseye.src +++ b/conf/armv7_bullseye.src @@ -1,5 +1,5 @@ -SOURCE_URL=https://github.com/YunoHost-Apps/synapse_python_build/releases/download/v1.33.2/matrix-synapse_1.33.2-bullseye-bin1_armv7l.tar.gz -SOURCE_SUM=39f2b421ccd1ccaeb5c76045c9fcd9b7099b120f8b5bd91eb9861bbd404326a9 +SOURCE_URL=https://github.com/YunoHost-Apps/synapse_python_build/releases/download/v1.34.0/matrix-synapse_1.34.0-bullseye-bin1_armv7l.tar.gz +SOURCE_SUM=776e6cc2d27f8744860237c70f37f7613a94b1c255dbdc9eeb9d79d5ecc61ace # (Optional) Program to check the integrity (sha256sum, md5sum...) # default: sha256 SOURCE_SUM_PRG=sha256sum diff --git a/conf/armv7_buster.src b/conf/armv7_buster.src index 27f4960..07344a4 100644 --- a/conf/armv7_buster.src +++ b/conf/armv7_buster.src @@ -1,5 +1,5 @@ -SOURCE_URL=https://github.com/YunoHost-Apps/synapse_python_build/releases/download/v1.33.2/matrix-synapse_1.33.2-buster-bin1_armv7l.tar.gz -SOURCE_SUM=ae247f4b8d6623dee2bb3a6a6883e03d82644f4dbbe7f8d9d39ea17d0a4f2cac +SOURCE_URL=https://github.com/YunoHost-Apps/synapse_python_build/releases/download/v1.34.0/matrix-synapse_1.34.0-buster-bin1_armv7l.tar.gz +SOURCE_SUM=b21ba7caa429291376bb80bb0ab612bede7f4f5a4bd471ff2fca249d50b3ad26 # (Optional) Program to check the integrity (sha256sum, md5sum...) # default: sha256 SOURCE_SUM_PRG=sha256sum diff --git a/manifest.json b/manifest.json index 169fecb..9b1cfe2 100644 --- a/manifest.json +++ b/manifest.json @@ -6,7 +6,7 @@ "en": "Instant messaging server which uses Matrix", "fr": "Un serveur de messagerie instantané basé sur Matrix" }, - "version": "1.33.2~ynh1", + "version": "1.34.0~ynh1", "url": "http://matrix.org", "license": "Apache-2.0", "maintainer": { From 301346ee954bca4dac0eae8144fa38a2ea5a2b76 Mon Sep 17 00:00:00 2001 From: yalh76 Date: Thu, 27 May 2021 13:51:28 +0200 Subject: [PATCH 22/43] remove rustup after build --- scripts/_common.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/scripts/_common.sh b/scripts/_common.sh index 8e7c92f..90c3b5d 100755 --- a/scripts/_common.sh +++ b/scripts/_common.sh @@ -64,5 +64,9 @@ install_sources() { set +$u_arg; deactivate set -$u_arg; + + # Remove Rust to reduce backup size + ynh_secure_remove --file=$final_path/.rustup + ynh_secure_remove --file=$final_path/.cargo fi } From e826d1a50d73b4f8d8efc60a576793110b8179ea Mon Sep 17 00:00:00 2001 From: yalh76 Date: Fri, 28 May 2021 02:02:58 +0200 Subject: [PATCH 23/43] Remove logs during upgrade backup --- scripts/backup | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/backup b/scripts/backup index 6af787c..832186f 100644 --- a/scripts/backup +++ b/scripts/backup @@ -114,7 +114,7 @@ ynh_backup --src_path="$data_path" --is_big=1 #================================================= ynh_print_info --message="Backing up synapse log..." -ynh_backup --src_path="/var/log/matrix-$app" +ynh_backup --src_path="/var/log/matrix-$app" --is_big=1 #================================================= # BACKUP HOOKS From 4090d7121efd8403c7188bc3c14503eaf7f651ee Mon Sep 17 00:00:00 2001 From: Jeremy Vagnet Date: Wed, 2 Jun 2021 19:38:53 +0200 Subject: [PATCH 24/43] server_client_infos permission should not be used if the the .well-known is hosted on a third party server --- scripts/upgrade | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/upgrade b/scripts/upgrade index 76bc34a..03b370b 100644 --- a/scripts/upgrade +++ b/scripts/upgrade @@ -424,7 +424,7 @@ if yunohost --output-as plain domain list | grep -q "^$server_name"'$' && ! ynh_ ynh_permission_create --permission=server_client_infos --url=$server_name/.well-known/matrix \ --label="Server info for clients. (well-known)" --show_tile=false --allowed=visitors \ --auth_header=false --protected=true -else +elif yunohost --output-as plain domain list | grep -q "^$server_name"'$'; then ynh_permission_url --permission=server_client_infos --url=$server_name/.well-known/matrix \ --auth_header=false ynh_permission_update --permission=server_client_infos --label="Server info for clients. (well-known)" --show_tile=false \ From e531a38ecb5ac90afa2b886921afb00409005c3c Mon Sep 17 00:00:00 2001 From: ericgaspar Date: Fri, 4 Jun 2021 21:21:42 +0200 Subject: [PATCH 25/43] Silence warnings --- scripts/install | 4 ++-- scripts/restore | 4 ++-- scripts/upgrade | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/scripts/install b/scripts/install index daef186..d6cdb88 100644 --- a/scripts/install +++ b/scripts/install @@ -301,8 +301,8 @@ ynh_script_progression --message="Configuring coturn..." --weight=1 # Get public IP and set as external IP for coturn # note : '|| true' is used to ignore the errors if we can't get the public ipv4 or ipv6 -public_ip4="$(curl ip.yunohost.org)" || true -public_ip6="$(curl ipv6.yunohost.org)" || true +public_ip4="$(curl -s ip.yunohost.org)" || true +public_ip6="$(curl -s ipv6.yunohost.org)" || true turn_external_ip="" if [ -n "$public_ip4" ] && ynh_validate_ip4 --ip_address="$public_ip4" diff --git a/scripts/restore b/scripts/restore index 21ebd6d..3762652 100644 --- a/scripts/restore +++ b/scripts/restore @@ -174,8 +174,8 @@ ynh_print_ON # Get public IP and set as external IP for coturn # note : '|| true' is used to ignore the errors if we can't get the public ipv4 or ipv6 -public_ip4="$(curl ip.yunohost.org)" || true -public_ip6="$(curl ipv6.yunohost.org)" || true +public_ip4="$(curl -s ip.yunohost.org)" || true +public_ip6="$(curl -s ipv6.yunohost.org)" || true turn_external_ip="" if [ -n "$public_ip4" ] && ynh_validate_ip4 --ip_address="$public_ip4" diff --git a/scripts/upgrade b/scripts/upgrade index 03b370b..b836c65 100644 --- a/scripts/upgrade +++ b/scripts/upgrade @@ -337,8 +337,8 @@ ynh_script_progression --message="Updating coturn config..." --weight=1 # Get public IP and set as external IP for coturn # note : '|| true' is used to ignore the errors if we can't get the public ipv4 or ipv6 -public_ip4="$(curl ip.yunohost.org)" || true -public_ip6="$(curl ipv6.yunohost.org)" || true +public_ip4="$(curl -s ip.yunohost.org)" || true +public_ip6="$(curl -s ipv6.yunohost.org)" || true turn_external_ip="" if [ -n "$public_ip4" ] && ynh_validate_ip4 --ip_address="$public_ip4" From 111438caea7a07fe1e96a17f6c245331a3f7ab3c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Josu=C3=A9=20Tille?= Date: Wed, 2 Jun 2021 01:01:43 +0200 Subject: [PATCH 26/43] Upgrade synapse to 1.35.0 --- README.md | 2 +- conf/armv7_bullseye.src | 4 ++-- conf/armv7_buster.src | 4 ++-- manifest.json | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 8a0f796..c58cdf1 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ Instant messaging server matrix network. Yunohost chatroom with matrix : [https://riot.im/app/#/room/#yunohost:matrix.org](https://riot.im/app/#/room/#yunohost:matrix.org) -**Shipped version:** 1.34.0 +**Shipped version:** 1.35.0 ## Configuration diff --git a/conf/armv7_bullseye.src b/conf/armv7_bullseye.src index 06ba785..589967e 100644 --- a/conf/armv7_bullseye.src +++ b/conf/armv7_bullseye.src @@ -1,5 +1,5 @@ -SOURCE_URL=https://github.com/YunoHost-Apps/synapse_python_build/releases/download/v1.34.0/matrix-synapse_1.34.0-bullseye-bin1_armv7l.tar.gz -SOURCE_SUM=776e6cc2d27f8744860237c70f37f7613a94b1c255dbdc9eeb9d79d5ecc61ace +SOURCE_URL=https://github.com/YunoHost-Apps/synapse_python_build/releases/download/v1.35.0/matrix-synapse_1.35.0-bullseye-bin1_armv7l.tar.gz +SOURCE_SUM=1edddf8b979756a5f6db645c1ab7a7ab7c978efc870c14a6909612eb86a2ba52 # (Optional) Program to check the integrity (sha256sum, md5sum...) # default: sha256 SOURCE_SUM_PRG=sha256sum diff --git a/conf/armv7_buster.src b/conf/armv7_buster.src index 07344a4..924bce9 100644 --- a/conf/armv7_buster.src +++ b/conf/armv7_buster.src @@ -1,5 +1,5 @@ -SOURCE_URL=https://github.com/YunoHost-Apps/synapse_python_build/releases/download/v1.34.0/matrix-synapse_1.34.0-buster-bin1_armv7l.tar.gz -SOURCE_SUM=b21ba7caa429291376bb80bb0ab612bede7f4f5a4bd471ff2fca249d50b3ad26 +SOURCE_URL=https://github.com/YunoHost-Apps/synapse_python_build/releases/download/v1.35.0/matrix-synapse_1.35.0-buster-bin1_armv7l.tar.gz +SOURCE_SUM=d32baf445791d2d66dd512ad3258d27b100887b30d9a22ea24925a70bfce5a91 # (Optional) Program to check the integrity (sha256sum, md5sum...) # default: sha256 SOURCE_SUM_PRG=sha256sum diff --git a/manifest.json b/manifest.json index 9b1cfe2..eec8598 100644 --- a/manifest.json +++ b/manifest.json @@ -6,7 +6,7 @@ "en": "Instant messaging server which uses Matrix", "fr": "Un serveur de messagerie instantané basé sur Matrix" }, - "version": "1.34.0~ynh1", + "version": "1.35.0~ynh1", "url": "http://matrix.org", "license": "Apache-2.0", "maintainer": { From 032e2183b8f4715cf661e3e9f0546b14f064d2c6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Josu=C3=A9=20Tille?= Date: Fri, 4 Jun 2021 00:22:05 +0200 Subject: [PATCH 27/43] Upgrade synapse to 1.35.1 --- README.md | 2 +- conf/armv7_bullseye.src | 4 ++-- conf/armv7_buster.src | 4 ++-- manifest.json | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index c58cdf1..216d861 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ Instant messaging server matrix network. Yunohost chatroom with matrix : [https://riot.im/app/#/room/#yunohost:matrix.org](https://riot.im/app/#/room/#yunohost:matrix.org) -**Shipped version:** 1.35.0 +**Shipped version:** 1.35.1 ## Configuration diff --git a/conf/armv7_bullseye.src b/conf/armv7_bullseye.src index 589967e..42e9cd8 100644 --- a/conf/armv7_bullseye.src +++ b/conf/armv7_bullseye.src @@ -1,5 +1,5 @@ -SOURCE_URL=https://github.com/YunoHost-Apps/synapse_python_build/releases/download/v1.35.0/matrix-synapse_1.35.0-bullseye-bin1_armv7l.tar.gz -SOURCE_SUM=1edddf8b979756a5f6db645c1ab7a7ab7c978efc870c14a6909612eb86a2ba52 +SOURCE_URL=https://github.com/YunoHost-Apps/synapse_python_build/releases/download/v1.35.1/matrix-synapse_1.35.1-bullseye-bin1_armv7l.tar.gz +SOURCE_SUM=61f47a276fa278108081bded1aa133f7b19277309c5d3eb21e99204fb32a8ea6 # (Optional) Program to check the integrity (sha256sum, md5sum...) # default: sha256 SOURCE_SUM_PRG=sha256sum diff --git a/conf/armv7_buster.src b/conf/armv7_buster.src index 924bce9..aeab4ed 100644 --- a/conf/armv7_buster.src +++ b/conf/armv7_buster.src @@ -1,5 +1,5 @@ -SOURCE_URL=https://github.com/YunoHost-Apps/synapse_python_build/releases/download/v1.35.0/matrix-synapse_1.35.0-buster-bin1_armv7l.tar.gz -SOURCE_SUM=d32baf445791d2d66dd512ad3258d27b100887b30d9a22ea24925a70bfce5a91 +SOURCE_URL=https://github.com/YunoHost-Apps/synapse_python_build/releases/download/v1.35.1/matrix-synapse_1.35.1-buster-bin1_armv7l.tar.gz +SOURCE_SUM=72df95c4934de966e0c33f8defd52425a345514b456638ac366f3c809ca07400 # (Optional) Program to check the integrity (sha256sum, md5sum...) # default: sha256 SOURCE_SUM_PRG=sha256sum diff --git a/manifest.json b/manifest.json index eec8598..026caaa 100644 --- a/manifest.json +++ b/manifest.json @@ -6,7 +6,7 @@ "en": "Instant messaging server which uses Matrix", "fr": "Un serveur de messagerie instantané basé sur Matrix" }, - "version": "1.35.0~ynh1", + "version": "1.35.1~ynh1", "url": "http://matrix.org", "license": "Apache-2.0", "maintainer": { From 285501c87fd1db040b8449379233a07c06f55a7e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Josu=C3=A9=20Tille?= Date: Wed, 16 Jun 2021 00:34:09 +0200 Subject: [PATCH 28/43] Upgrade synapse to 1.36.0 --- README.md | 2 +- conf/armv7_bullseye.src | 4 ++-- conf/armv7_buster.src | 4 ++-- manifest.json | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 216d861..05a7c03 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ Instant messaging server matrix network. Yunohost chatroom with matrix : [https://riot.im/app/#/room/#yunohost:matrix.org](https://riot.im/app/#/room/#yunohost:matrix.org) -**Shipped version:** 1.35.1 +**Shipped version:** 1.36.0 ## Configuration diff --git a/conf/armv7_bullseye.src b/conf/armv7_bullseye.src index 42e9cd8..cf43544 100644 --- a/conf/armv7_bullseye.src +++ b/conf/armv7_bullseye.src @@ -1,5 +1,5 @@ -SOURCE_URL=https://github.com/YunoHost-Apps/synapse_python_build/releases/download/v1.35.1/matrix-synapse_1.35.1-bullseye-bin1_armv7l.tar.gz -SOURCE_SUM=61f47a276fa278108081bded1aa133f7b19277309c5d3eb21e99204fb32a8ea6 +SOURCE_URL=https://github.com/YunoHost-Apps/synapse_python_build/releases/download/v1.36.0/matrix-synapse_1.36.0-bullseye-bin1_armv7l.tar.gz +SOURCE_SUM=d6bf06cc96757b550acd547eb0fc2928a63f46955ba7163e95ed576bc55cea6d # (Optional) Program to check the integrity (sha256sum, md5sum...) # default: sha256 SOURCE_SUM_PRG=sha256sum diff --git a/conf/armv7_buster.src b/conf/armv7_buster.src index aeab4ed..7af898c 100644 --- a/conf/armv7_buster.src +++ b/conf/armv7_buster.src @@ -1,5 +1,5 @@ -SOURCE_URL=https://github.com/YunoHost-Apps/synapse_python_build/releases/download/v1.35.1/matrix-synapse_1.35.1-buster-bin1_armv7l.tar.gz -SOURCE_SUM=72df95c4934de966e0c33f8defd52425a345514b456638ac366f3c809ca07400 +SOURCE_URL=https://github.com/YunoHost-Apps/synapse_python_build/releases/download/v1.36.0/matrix-synapse_1.36.0-buster-bin1_armv7l.tar.gz +SOURCE_SUM=46a4fe7e81d33c41d72d4f238320519b732190c5690b73242765bc0eeccb4de5 # (Optional) Program to check the integrity (sha256sum, md5sum...) # default: sha256 SOURCE_SUM_PRG=sha256sum diff --git a/manifest.json b/manifest.json index 026caaa..62faa4e 100644 --- a/manifest.json +++ b/manifest.json @@ -6,7 +6,7 @@ "en": "Instant messaging server which uses Matrix", "fr": "Un serveur de messagerie instantané basé sur Matrix" }, - "version": "1.35.1~ynh1", + "version": "1.36.0~ynh1", "url": "http://matrix.org", "license": "Apache-2.0", "maintainer": { From 98ddba8e05c0604f4a18281fb0f49ed424d5e765 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Josu=C3=A9=20Tille?= Date: Sat, 26 Jun 2021 12:42:14 +0200 Subject: [PATCH 29/43] Remove reference of php7.0 --- scripts/backup | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/backup b/scripts/backup index 6af787c..5798d50 100644 --- a/scripts/backup +++ b/scripts/backup @@ -27,6 +27,7 @@ app=$YNH_APP_INSTANCE_NAME domain=$(ynh_app_setting_get --app=$app --key=domain) server_name=$(ynh_app_setting_get --app=$app --key=server_name) final_path=$(ynh_app_setting_get --app=$app --key=final_path) +phpversion=$(ynh_app_setting_get --app=$app --key=phpversion) if [[ ! "$(systemctl status matrix-$app.service)" =~ "Active: inactive (dead)" ]]; then ynh_print_warn --message="It's hightly recommended to make your backup when the service is stopped. Please stop $app service with this command before to run the backup 'systemctl stop matrix-$app.service'" @@ -60,7 +61,7 @@ ynh_backup --src_path="$final_www_path" ynh_print_info --message="Backing up nginx web server configuration..." # BACKUP THE PHP-FPM CONFIGURATION -ynh_backup --src_path "/etc/php/7.0/fpm/pool.d/$app.conf" +ynh_backup --src_path "/etc/php/$phpversion/fpm/pool.d/$app.conf" ynh_backup --src_path="/etc/nginx/conf.d/$domain.d/$app.conf" if yunohost --output-as plain domain list | grep -q "^$server_name$" From 5dcf05c88b16c104cfccd6d7287558291d5978cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Josu=C3=A9=20Tille?= Date: Wed, 30 Jun 2021 00:23:01 +0200 Subject: [PATCH 30/43] Upgrade synapse to 1.37.0 --- README.md | 2 +- conf/armv7_bullseye.src | 4 ++-- conf/armv7_buster.src | 4 ++-- manifest.json | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 05a7c03..9305afe 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ Instant messaging server matrix network. Yunohost chatroom with matrix : [https://riot.im/app/#/room/#yunohost:matrix.org](https://riot.im/app/#/room/#yunohost:matrix.org) -**Shipped version:** 1.36.0 +**Shipped version:** 1.37.0 ## Configuration diff --git a/conf/armv7_bullseye.src b/conf/armv7_bullseye.src index cf43544..4316d2d 100644 --- a/conf/armv7_bullseye.src +++ b/conf/armv7_bullseye.src @@ -1,5 +1,5 @@ -SOURCE_URL=https://github.com/YunoHost-Apps/synapse_python_build/releases/download/v1.36.0/matrix-synapse_1.36.0-bullseye-bin1_armv7l.tar.gz -SOURCE_SUM=d6bf06cc96757b550acd547eb0fc2928a63f46955ba7163e95ed576bc55cea6d +SOURCE_URL=https://github.com/YunoHost-Apps/synapse_python_build/releases/download/v1.37.0/matrix-synapse_1.37.0-bullseye-bin1_armv7l.tar.gz +SOURCE_SUM=f6f54f02a40b0fa5210c058fb8d39df36703974bdeb46479ea46a95239e1760b # (Optional) Program to check the integrity (sha256sum, md5sum...) # default: sha256 SOURCE_SUM_PRG=sha256sum diff --git a/conf/armv7_buster.src b/conf/armv7_buster.src index 7af898c..bceaea5 100644 --- a/conf/armv7_buster.src +++ b/conf/armv7_buster.src @@ -1,5 +1,5 @@ -SOURCE_URL=https://github.com/YunoHost-Apps/synapse_python_build/releases/download/v1.36.0/matrix-synapse_1.36.0-buster-bin1_armv7l.tar.gz -SOURCE_SUM=46a4fe7e81d33c41d72d4f238320519b732190c5690b73242765bc0eeccb4de5 +SOURCE_URL=https://github.com/YunoHost-Apps/synapse_python_build/releases/download/v1.37.0/matrix-synapse_1.37.0-buster-bin1_armv7l.tar.gz +SOURCE_SUM=44da5e64f2fdcceb65949cc227c59a94877e4a06c420e65e56aebff255c34c2c # (Optional) Program to check the integrity (sha256sum, md5sum...) # default: sha256 SOURCE_SUM_PRG=sha256sum diff --git a/manifest.json b/manifest.json index 62faa4e..8b973cf 100644 --- a/manifest.json +++ b/manifest.json @@ -6,7 +6,7 @@ "en": "Instant messaging server which uses Matrix", "fr": "Un serveur de messagerie instantané basé sur Matrix" }, - "version": "1.36.0~ynh1", + "version": "1.37.0~ynh1", "url": "http://matrix.org", "license": "Apache-2.0", "maintainer": { From 8504fe747b451dee76711a64b8cca952ece088be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Josu=C3=A9=20Tille?= Date: Thu, 1 Jul 2021 00:22:25 +0200 Subject: [PATCH 31/43] Upgrade synapse to 1.37.1 --- README.md | 2 +- conf/armv7_bullseye.src | 4 ++-- conf/armv7_buster.src | 4 ++-- manifest.json | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 9305afe..ec35a07 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ Instant messaging server matrix network. Yunohost chatroom with matrix : [https://riot.im/app/#/room/#yunohost:matrix.org](https://riot.im/app/#/room/#yunohost:matrix.org) -**Shipped version:** 1.37.0 +**Shipped version:** 1.37.1 ## Configuration diff --git a/conf/armv7_bullseye.src b/conf/armv7_bullseye.src index 4316d2d..9073c37 100644 --- a/conf/armv7_bullseye.src +++ b/conf/armv7_bullseye.src @@ -1,5 +1,5 @@ -SOURCE_URL=https://github.com/YunoHost-Apps/synapse_python_build/releases/download/v1.37.0/matrix-synapse_1.37.0-bullseye-bin1_armv7l.tar.gz -SOURCE_SUM=f6f54f02a40b0fa5210c058fb8d39df36703974bdeb46479ea46a95239e1760b +SOURCE_URL=https://github.com/YunoHost-Apps/synapse_python_build/releases/download/v1.37.1/matrix-synapse_1.37.1-bullseye-bin1_armv7l.tar.gz +SOURCE_SUM=6173dd1c538c3e608a09b44a9946f7d66dd96f88d9c268c815263874ee4a5040 # (Optional) Program to check the integrity (sha256sum, md5sum...) # default: sha256 SOURCE_SUM_PRG=sha256sum diff --git a/conf/armv7_buster.src b/conf/armv7_buster.src index bceaea5..8fe77a8 100644 --- a/conf/armv7_buster.src +++ b/conf/armv7_buster.src @@ -1,5 +1,5 @@ -SOURCE_URL=https://github.com/YunoHost-Apps/synapse_python_build/releases/download/v1.37.0/matrix-synapse_1.37.0-buster-bin1_armv7l.tar.gz -SOURCE_SUM=44da5e64f2fdcceb65949cc227c59a94877e4a06c420e65e56aebff255c34c2c +SOURCE_URL=https://github.com/YunoHost-Apps/synapse_python_build/releases/download/v1.37.1/matrix-synapse_1.37.1-buster-bin1_armv7l.tar.gz +SOURCE_SUM=43abbd8abac8183561e92a123d07002f5776396e1088eac6d0b7185e653e21ef # (Optional) Program to check the integrity (sha256sum, md5sum...) # default: sha256 SOURCE_SUM_PRG=sha256sum diff --git a/manifest.json b/manifest.json index 8b973cf..6a920bf 100644 --- a/manifest.json +++ b/manifest.json @@ -6,7 +6,7 @@ "en": "Instant messaging server which uses Matrix", "fr": "Un serveur de messagerie instantané basé sur Matrix" }, - "version": "1.37.0~ynh1", + "version": "1.37.1~ynh1", "url": "http://matrix.org", "license": "Apache-2.0", "maintainer": { From f70bdc546c952129c4cf80f87807dc059730c26c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Josu=C3=A9=20Tille?= Date: Wed, 14 Jul 2021 00:20:17 +0200 Subject: [PATCH 32/43] Upgrade synapse to 1.38.0 --- README.md | 2 +- conf/armv7_bullseye.src | 4 ++-- conf/armv7_buster.src | 4 ++-- manifest.json | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index ec35a07..5474f92 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ Instant messaging server matrix network. Yunohost chatroom with matrix : [https://riot.im/app/#/room/#yunohost:matrix.org](https://riot.im/app/#/room/#yunohost:matrix.org) -**Shipped version:** 1.37.1 +**Shipped version:** 1.38.0 ## Configuration diff --git a/conf/armv7_bullseye.src b/conf/armv7_bullseye.src index 9073c37..57737c4 100644 --- a/conf/armv7_bullseye.src +++ b/conf/armv7_bullseye.src @@ -1,5 +1,5 @@ -SOURCE_URL=https://github.com/YunoHost-Apps/synapse_python_build/releases/download/v1.37.1/matrix-synapse_1.37.1-bullseye-bin1_armv7l.tar.gz -SOURCE_SUM=6173dd1c538c3e608a09b44a9946f7d66dd96f88d9c268c815263874ee4a5040 +SOURCE_URL=https://github.com/YunoHost-Apps/synapse_python_build/releases/download/v1.38.0/matrix-synapse_1.38.0-bullseye-bin1_armv7l.tar.gz +SOURCE_SUM=2dfb596c54ea38c9a70f5ca75d3dc868ee8458df7d967e76308cee890163f483 # (Optional) Program to check the integrity (sha256sum, md5sum...) # default: sha256 SOURCE_SUM_PRG=sha256sum diff --git a/conf/armv7_buster.src b/conf/armv7_buster.src index 8fe77a8..6045f29 100644 --- a/conf/armv7_buster.src +++ b/conf/armv7_buster.src @@ -1,5 +1,5 @@ -SOURCE_URL=https://github.com/YunoHost-Apps/synapse_python_build/releases/download/v1.37.1/matrix-synapse_1.37.1-buster-bin1_armv7l.tar.gz -SOURCE_SUM=43abbd8abac8183561e92a123d07002f5776396e1088eac6d0b7185e653e21ef +SOURCE_URL=https://github.com/YunoHost-Apps/synapse_python_build/releases/download/v1.38.0/matrix-synapse_1.38.0-buster-bin1_armv7l.tar.gz +SOURCE_SUM=78a7cc5d108da270c06d42d1ba9c7bfc5edab95e1c3118635ccae10761348c6e # (Optional) Program to check the integrity (sha256sum, md5sum...) # default: sha256 SOURCE_SUM_PRG=sha256sum diff --git a/manifest.json b/manifest.json index 6a920bf..3869657 100644 --- a/manifest.json +++ b/manifest.json @@ -6,7 +6,7 @@ "en": "Instant messaging server which uses Matrix", "fr": "Un serveur de messagerie instantané basé sur Matrix" }, - "version": "1.37.1~ynh1", + "version": "1.38.0~ynh1", "url": "http://matrix.org", "license": "Apache-2.0", "maintainer": { From 2e09c0671e48cea1a2f586f382a81ab8fb1db6ae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Josu=C3=A9=20Tille?= Date: Thu, 15 Jul 2021 22:04:50 +0200 Subject: [PATCH 33/43] Remove too old upgrade test --- check_process | 3 --- 1 file changed, 3 deletions(-) diff --git a/check_process b/check_process index c14412d..0b1a1a7 100644 --- a/check_process +++ b/check_process @@ -12,7 +12,6 @@ setup_private=0 setup_public=1 upgrade=1 - upgrade=1 from_commit=0705f4ffb4f7538a1aa33a801f95766ee23367db upgrade=1 from_commit=35774cc0eabb82b03230210689fa060d5f2b0bd8 upgrade=1 from_commit=dbf0a2c9359ccd62b55132cace548b17e44af9bf backup_restore=1 @@ -23,8 +22,6 @@ ;;; Levels Level 5=auto ;;; Upgrade options - ; commit=0705f4ffb4f7538a1aa33a801f95766ee23367db - name=Fix postgresql helper from old_version_for_CI_2 branch ; commit=35774cc0eabb82b03230210689fa060d5f2b0bd8 name=Migrate from self signed certificate to cert managed by Yunohost from old_version_for_CI_3 branch ; commit=dbf0a2c9359ccd62b55132cace548b17e44af9bf From 06ecfc28e9f3dc87ecf3b8bb9d5694e16f3eae09 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Josu=C3=A9=20Tille?= Date: Sat, 24 Jul 2021 00:21:11 +0200 Subject: [PATCH 34/43] Upgrade synapse to 1.38.1 --- README.md | 2 +- conf/armv7_bullseye.src | 4 ++-- conf/armv7_buster.src | 4 ++-- manifest.json | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 5474f92..96ddea1 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ Instant messaging server matrix network. Yunohost chatroom with matrix : [https://riot.im/app/#/room/#yunohost:matrix.org](https://riot.im/app/#/room/#yunohost:matrix.org) -**Shipped version:** 1.38.0 +**Shipped version:** 1.38.1 ## Configuration diff --git a/conf/armv7_bullseye.src b/conf/armv7_bullseye.src index 57737c4..f0caa8c 100644 --- a/conf/armv7_bullseye.src +++ b/conf/armv7_bullseye.src @@ -1,5 +1,5 @@ -SOURCE_URL=https://github.com/YunoHost-Apps/synapse_python_build/releases/download/v1.38.0/matrix-synapse_1.38.0-bullseye-bin1_armv7l.tar.gz -SOURCE_SUM=2dfb596c54ea38c9a70f5ca75d3dc868ee8458df7d967e76308cee890163f483 +SOURCE_URL=https://github.com/YunoHost-Apps/synapse_python_build/releases/download/v1.38.1/matrix-synapse_1.38.1-bullseye-bin1_armv7l.tar.gz +SOURCE_SUM=57e5ab973457763cd1037d68d21a9e9dd63a3880cb945a6340753f2374d03655 # (Optional) Program to check the integrity (sha256sum, md5sum...) # default: sha256 SOURCE_SUM_PRG=sha256sum diff --git a/conf/armv7_buster.src b/conf/armv7_buster.src index 6045f29..c666ca5 100644 --- a/conf/armv7_buster.src +++ b/conf/armv7_buster.src @@ -1,5 +1,5 @@ -SOURCE_URL=https://github.com/YunoHost-Apps/synapse_python_build/releases/download/v1.38.0/matrix-synapse_1.38.0-buster-bin1_armv7l.tar.gz -SOURCE_SUM=78a7cc5d108da270c06d42d1ba9c7bfc5edab95e1c3118635ccae10761348c6e +SOURCE_URL=https://github.com/YunoHost-Apps/synapse_python_build/releases/download/v1.38.1/matrix-synapse_1.38.1-buster-bin1_armv7l.tar.gz +SOURCE_SUM=2498a5fba10b1582fea87e6f32a58fb5855be331f5a4262e670d85a86948fc68 # (Optional) Program to check the integrity (sha256sum, md5sum...) # default: sha256 SOURCE_SUM_PRG=sha256sum diff --git a/manifest.json b/manifest.json index 3869657..785dee4 100644 --- a/manifest.json +++ b/manifest.json @@ -6,7 +6,7 @@ "en": "Instant messaging server which uses Matrix", "fr": "Un serveur de messagerie instantané basé sur Matrix" }, - "version": "1.38.0~ynh1", + "version": "1.38.1~ynh1", "url": "http://matrix.org", "license": "Apache-2.0", "maintainer": { From dfbe168ee781fcc251d1dfda39bdf483e849cf44 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Josu=C3=A9=20Tille?= Date: Sat, 31 Jul 2021 00:21:37 +0200 Subject: [PATCH 35/43] Upgrade synapse to 1.39.0 --- README.md | 2 +- conf/armv7_bullseye.src | 4 ++-- conf/armv7_buster.src | 4 ++-- manifest.json | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 96ddea1..bcabfe4 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ Instant messaging server matrix network. Yunohost chatroom with matrix : [https://riot.im/app/#/room/#yunohost:matrix.org](https://riot.im/app/#/room/#yunohost:matrix.org) -**Shipped version:** 1.38.1 +**Shipped version:** 1.39.0 ## Configuration diff --git a/conf/armv7_bullseye.src b/conf/armv7_bullseye.src index f0caa8c..da82d8d 100644 --- a/conf/armv7_bullseye.src +++ b/conf/armv7_bullseye.src @@ -1,5 +1,5 @@ -SOURCE_URL=https://github.com/YunoHost-Apps/synapse_python_build/releases/download/v1.38.1/matrix-synapse_1.38.1-bullseye-bin1_armv7l.tar.gz -SOURCE_SUM=57e5ab973457763cd1037d68d21a9e9dd63a3880cb945a6340753f2374d03655 +SOURCE_URL=https://github.com/YunoHost-Apps/synapse_python_build/releases/download/v1.39.0/matrix-synapse_1.39.0-bullseye-bin1_armv7l.tar.gz +SOURCE_SUM=5d19b54f41b237e55186afeff1dd5779b01034a6b861363139d4cf8f1f3349fd # (Optional) Program to check the integrity (sha256sum, md5sum...) # default: sha256 SOURCE_SUM_PRG=sha256sum diff --git a/conf/armv7_buster.src b/conf/armv7_buster.src index c666ca5..16523c9 100644 --- a/conf/armv7_buster.src +++ b/conf/armv7_buster.src @@ -1,5 +1,5 @@ -SOURCE_URL=https://github.com/YunoHost-Apps/synapse_python_build/releases/download/v1.38.1/matrix-synapse_1.38.1-buster-bin1_armv7l.tar.gz -SOURCE_SUM=2498a5fba10b1582fea87e6f32a58fb5855be331f5a4262e670d85a86948fc68 +SOURCE_URL=https://github.com/YunoHost-Apps/synapse_python_build/releases/download/v1.39.0/matrix-synapse_1.39.0-buster-bin1_armv7l.tar.gz +SOURCE_SUM=1e52d97cf11b20cd2774aeb4f9d3ec75315762bb84668fb8539cb6769e841d92 # (Optional) Program to check the integrity (sha256sum, md5sum...) # default: sha256 SOURCE_SUM_PRG=sha256sum diff --git a/manifest.json b/manifest.json index 785dee4..b9a06ae 100644 --- a/manifest.json +++ b/manifest.json @@ -6,7 +6,7 @@ "en": "Instant messaging server which uses Matrix", "fr": "Un serveur de messagerie instantané basé sur Matrix" }, - "version": "1.38.1~ynh1", + "version": "1.39.0~ynh1", "url": "http://matrix.org", "license": "Apache-2.0", "maintainer": { From 45d59f3eeb3c0cf9c6ad92d71789defbcb0210e0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Josu=C3=A9=20Tille?= Date: Wed, 11 Aug 2021 00:29:03 +0200 Subject: [PATCH 36/43] Upgrade synapse to 1.40.0 --- README.md | 2 +- conf/armv7_bullseye.src | 4 ++-- conf/armv7_buster.src | 4 ++-- manifest.json | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index bcabfe4..8194925 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ Instant messaging server matrix network. Yunohost chatroom with matrix : [https://riot.im/app/#/room/#yunohost:matrix.org](https://riot.im/app/#/room/#yunohost:matrix.org) -**Shipped version:** 1.39.0 +**Shipped version:** 1.40.0 ## Configuration diff --git a/conf/armv7_bullseye.src b/conf/armv7_bullseye.src index da82d8d..d720375 100644 --- a/conf/armv7_bullseye.src +++ b/conf/armv7_bullseye.src @@ -1,5 +1,5 @@ -SOURCE_URL=https://github.com/YunoHost-Apps/synapse_python_build/releases/download/v1.39.0/matrix-synapse_1.39.0-bullseye-bin1_armv7l.tar.gz -SOURCE_SUM=5d19b54f41b237e55186afeff1dd5779b01034a6b861363139d4cf8f1f3349fd +SOURCE_URL=https://github.com/YunoHost-Apps/synapse_python_build/releases/download/v1.40.0/matrix-synapse_1.40.0-bullseye-bin1_armv7l.tar.gz +SOURCE_SUM=e9270d2eb61909f6ae9636b8b455373a2453edc3c4edf30963015373bd9792b2 # (Optional) Program to check the integrity (sha256sum, md5sum...) # default: sha256 SOURCE_SUM_PRG=sha256sum diff --git a/conf/armv7_buster.src b/conf/armv7_buster.src index 16523c9..951d51a 100644 --- a/conf/armv7_buster.src +++ b/conf/armv7_buster.src @@ -1,5 +1,5 @@ -SOURCE_URL=https://github.com/YunoHost-Apps/synapse_python_build/releases/download/v1.39.0/matrix-synapse_1.39.0-buster-bin1_armv7l.tar.gz -SOURCE_SUM=1e52d97cf11b20cd2774aeb4f9d3ec75315762bb84668fb8539cb6769e841d92 +SOURCE_URL=https://github.com/YunoHost-Apps/synapse_python_build/releases/download/v1.40.0/matrix-synapse_1.40.0-buster-bin1_armv7l.tar.gz +SOURCE_SUM=c806dbf5b3a6a693ef9958d35cb9e60813385706428ca66460bcba4f236256b6 # (Optional) Program to check the integrity (sha256sum, md5sum...) # default: sha256 SOURCE_SUM_PRG=sha256sum diff --git a/manifest.json b/manifest.json index b9a06ae..d5c7a70 100644 --- a/manifest.json +++ b/manifest.json @@ -6,7 +6,7 @@ "en": "Instant messaging server which uses Matrix", "fr": "Un serveur de messagerie instantané basé sur Matrix" }, - "version": "1.39.0~ynh1", + "version": "1.40.0~ynh1", "url": "http://matrix.org", "license": "Apache-2.0", "maintainer": { From 50c04e0843f374a4b73137b789c23663f5c6dd11 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Josu=C3=A9=20Tille?= Date: Wed, 25 Aug 2021 00:19:28 +0200 Subject: [PATCH 37/43] Upgrade synapse to 1.41.0 --- README.md | 2 +- conf/armv7_bullseye.src | 4 ++-- conf/armv7_buster.src | 4 ++-- manifest.json | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 8194925..ac15140 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ Instant messaging server matrix network. Yunohost chatroom with matrix : [https://riot.im/app/#/room/#yunohost:matrix.org](https://riot.im/app/#/room/#yunohost:matrix.org) -**Shipped version:** 1.40.0 +**Shipped version:** 1.41.0 ## Configuration diff --git a/conf/armv7_bullseye.src b/conf/armv7_bullseye.src index d720375..9b8d6b5 100644 --- a/conf/armv7_bullseye.src +++ b/conf/armv7_bullseye.src @@ -1,5 +1,5 @@ -SOURCE_URL=https://github.com/YunoHost-Apps/synapse_python_build/releases/download/v1.40.0/matrix-synapse_1.40.0-bullseye-bin1_armv7l.tar.gz -SOURCE_SUM=e9270d2eb61909f6ae9636b8b455373a2453edc3c4edf30963015373bd9792b2 +SOURCE_URL=https://github.com/YunoHost-Apps/synapse_python_build/releases/download/v1.41.0/matrix-synapse_1.41.0-bullseye-bin1_armv7l.tar.gz +SOURCE_SUM=dbcc5d27da5c2d5829586e2ab472454409c9447932361387ddcef391ea90fcb6 # (Optional) Program to check the integrity (sha256sum, md5sum...) # default: sha256 SOURCE_SUM_PRG=sha256sum diff --git a/conf/armv7_buster.src b/conf/armv7_buster.src index 951d51a..aaf1694 100644 --- a/conf/armv7_buster.src +++ b/conf/armv7_buster.src @@ -1,5 +1,5 @@ -SOURCE_URL=https://github.com/YunoHost-Apps/synapse_python_build/releases/download/v1.40.0/matrix-synapse_1.40.0-buster-bin1_armv7l.tar.gz -SOURCE_SUM=c806dbf5b3a6a693ef9958d35cb9e60813385706428ca66460bcba4f236256b6 +SOURCE_URL=https://github.com/YunoHost-Apps/synapse_python_build/releases/download/v1.41.0/matrix-synapse_1.41.0-buster-bin1_armv7l.tar.gz +SOURCE_SUM=f14b715561133a50a358f344bdd3ee2ca587441652a4511b2f242327a22d6205 # (Optional) Program to check the integrity (sha256sum, md5sum...) # default: sha256 SOURCE_SUM_PRG=sha256sum diff --git a/manifest.json b/manifest.json index d5c7a70..b787913 100644 --- a/manifest.json +++ b/manifest.json @@ -6,7 +6,7 @@ "en": "Instant messaging server which uses Matrix", "fr": "Un serveur de messagerie instantané basé sur Matrix" }, - "version": "1.40.0~ynh1", + "version": "1.41.0~ynh1", "url": "http://matrix.org", "license": "Apache-2.0", "maintainer": { From 51796af2f1e488d691e640b8bffe95fc49c82853 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Josu=C3=A9=20Tille?= Date: Wed, 1 Sep 2021 00:16:52 +0200 Subject: [PATCH 38/43] Upgrade synapse to 1.41.1 --- README.md | 2 +- conf/armv7_bullseye.src | 4 ++-- conf/armv7_buster.src | 4 ++-- manifest.json | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index ac15140..71bb1db 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ Instant messaging server matrix network. Yunohost chatroom with matrix : [https://riot.im/app/#/room/#yunohost:matrix.org](https://riot.im/app/#/room/#yunohost:matrix.org) -**Shipped version:** 1.41.0 +**Shipped version:** 1.41.1 ## Configuration diff --git a/conf/armv7_bullseye.src b/conf/armv7_bullseye.src index 9b8d6b5..f9e7f04 100644 --- a/conf/armv7_bullseye.src +++ b/conf/armv7_bullseye.src @@ -1,5 +1,5 @@ -SOURCE_URL=https://github.com/YunoHost-Apps/synapse_python_build/releases/download/v1.41.0/matrix-synapse_1.41.0-bullseye-bin1_armv7l.tar.gz -SOURCE_SUM=dbcc5d27da5c2d5829586e2ab472454409c9447932361387ddcef391ea90fcb6 +SOURCE_URL=https://github.com/YunoHost-Apps/synapse_python_build/releases/download/v1.41.1/matrix-synapse_1.41.1-bullseye-bin1_armv7l.tar.gz +SOURCE_SUM=2d3cb27327c51fc42228a8dcdaca2516e502dbd34e3b150d04840245b3c20f03 # (Optional) Program to check the integrity (sha256sum, md5sum...) # default: sha256 SOURCE_SUM_PRG=sha256sum diff --git a/conf/armv7_buster.src b/conf/armv7_buster.src index aaf1694..84bad71 100644 --- a/conf/armv7_buster.src +++ b/conf/armv7_buster.src @@ -1,5 +1,5 @@ -SOURCE_URL=https://github.com/YunoHost-Apps/synapse_python_build/releases/download/v1.41.0/matrix-synapse_1.41.0-buster-bin1_armv7l.tar.gz -SOURCE_SUM=f14b715561133a50a358f344bdd3ee2ca587441652a4511b2f242327a22d6205 +SOURCE_URL=https://github.com/YunoHost-Apps/synapse_python_build/releases/download/v1.41.1/matrix-synapse_1.41.1-buster-bin1_armv7l.tar.gz +SOURCE_SUM=8d672c7ff09c8e095312f80b7a643ec6c04dfeffad2c7b01f9c797b114ed783a # (Optional) Program to check the integrity (sha256sum, md5sum...) # default: sha256 SOURCE_SUM_PRG=sha256sum diff --git a/manifest.json b/manifest.json index b787913..18ffc59 100644 --- a/manifest.json +++ b/manifest.json @@ -6,7 +6,7 @@ "en": "Instant messaging server which uses Matrix", "fr": "Un serveur de messagerie instantané basé sur Matrix" }, - "version": "1.41.0~ynh1", + "version": "1.41.1~ynh1", "url": "http://matrix.org", "license": "Apache-2.0", "maintainer": { From 743b15791bd96b88b9841efabd17037d07d4ae12 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Josu=C3=A9=20Tille?= Date: Wed, 8 Sep 2021 00:18:09 +0200 Subject: [PATCH 39/43] Upgrade synapse to 1.42.0 --- README.md | 2 +- conf/armv7_bullseye.src | 4 ++-- conf/armv7_buster.src | 4 ++-- manifest.json | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 71bb1db..14683b9 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ Instant messaging server matrix network. Yunohost chatroom with matrix : [https://riot.im/app/#/room/#yunohost:matrix.org](https://riot.im/app/#/room/#yunohost:matrix.org) -**Shipped version:** 1.41.1 +**Shipped version:** 1.42.0 ## Configuration diff --git a/conf/armv7_bullseye.src b/conf/armv7_bullseye.src index f9e7f04..b5910f8 100644 --- a/conf/armv7_bullseye.src +++ b/conf/armv7_bullseye.src @@ -1,5 +1,5 @@ -SOURCE_URL=https://github.com/YunoHost-Apps/synapse_python_build/releases/download/v1.41.1/matrix-synapse_1.41.1-bullseye-bin1_armv7l.tar.gz -SOURCE_SUM=2d3cb27327c51fc42228a8dcdaca2516e502dbd34e3b150d04840245b3c20f03 +SOURCE_URL=https://github.com/YunoHost-Apps/synapse_python_build/releases/download/v1.42.0/matrix-synapse_1.42.0-bullseye-bin1_armv7l.tar.gz +SOURCE_SUM=23069ded1a9a8032e8649732115c404d905cc3d74bed352c65b261484678fbc5 # (Optional) Program to check the integrity (sha256sum, md5sum...) # default: sha256 SOURCE_SUM_PRG=sha256sum diff --git a/conf/armv7_buster.src b/conf/armv7_buster.src index 84bad71..3cf98da 100644 --- a/conf/armv7_buster.src +++ b/conf/armv7_buster.src @@ -1,5 +1,5 @@ -SOURCE_URL=https://github.com/YunoHost-Apps/synapse_python_build/releases/download/v1.41.1/matrix-synapse_1.41.1-buster-bin1_armv7l.tar.gz -SOURCE_SUM=8d672c7ff09c8e095312f80b7a643ec6c04dfeffad2c7b01f9c797b114ed783a +SOURCE_URL=https://github.com/YunoHost-Apps/synapse_python_build/releases/download/v1.42.0/matrix-synapse_1.42.0-buster-bin1_armv7l.tar.gz +SOURCE_SUM=be6c97d736d929514702ffeee29e62cacda7d2ef01e96aef58ca700a349dabf7 # (Optional) Program to check the integrity (sha256sum, md5sum...) # default: sha256 SOURCE_SUM_PRG=sha256sum diff --git a/manifest.json b/manifest.json index 18ffc59..25bf736 100644 --- a/manifest.json +++ b/manifest.json @@ -6,7 +6,7 @@ "en": "Instant messaging server which uses Matrix", "fr": "Un serveur de messagerie instantané basé sur Matrix" }, - "version": "1.41.1~ynh1", + "version": "1.42.0~ynh1", "url": "http://matrix.org", "license": "Apache-2.0", "maintainer": { From 6336dc26485ba1087193f42df81072ea3978c7fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Josu=C3=A9=20Tille?= Date: Wed, 22 Sep 2021 00:17:09 +0200 Subject: [PATCH 40/43] Upgrade synapse to 1.43.0 --- README.md | 2 +- conf/armv7_bullseye.src | 4 ++-- conf/armv7_buster.src | 4 ++-- manifest.json | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 14683b9..1197212 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ Instant messaging server matrix network. Yunohost chatroom with matrix : [https://riot.im/app/#/room/#yunohost:matrix.org](https://riot.im/app/#/room/#yunohost:matrix.org) -**Shipped version:** 1.42.0 +**Shipped version:** 1.43.0 ## Configuration diff --git a/conf/armv7_bullseye.src b/conf/armv7_bullseye.src index b5910f8..7e4ee3c 100644 --- a/conf/armv7_bullseye.src +++ b/conf/armv7_bullseye.src @@ -1,5 +1,5 @@ -SOURCE_URL=https://github.com/YunoHost-Apps/synapse_python_build/releases/download/v1.42.0/matrix-synapse_1.42.0-bullseye-bin1_armv7l.tar.gz -SOURCE_SUM=23069ded1a9a8032e8649732115c404d905cc3d74bed352c65b261484678fbc5 +SOURCE_URL=https://github.com/YunoHost-Apps/synapse_python_build/releases/download/v1.43.0/matrix-synapse_1.43.0-bullseye-bin1_armv7l.tar.gz +SOURCE_SUM=264c52497656c1f4b668904f7fb95b6fd8c09704fb07a22505064f4d03ee2e72 # (Optional) Program to check the integrity (sha256sum, md5sum...) # default: sha256 SOURCE_SUM_PRG=sha256sum diff --git a/conf/armv7_buster.src b/conf/armv7_buster.src index 3cf98da..26ec75c 100644 --- a/conf/armv7_buster.src +++ b/conf/armv7_buster.src @@ -1,5 +1,5 @@ -SOURCE_URL=https://github.com/YunoHost-Apps/synapse_python_build/releases/download/v1.42.0/matrix-synapse_1.42.0-buster-bin1_armv7l.tar.gz -SOURCE_SUM=be6c97d736d929514702ffeee29e62cacda7d2ef01e96aef58ca700a349dabf7 +SOURCE_URL=https://github.com/YunoHost-Apps/synapse_python_build/releases/download/v1.43.0/matrix-synapse_1.43.0-buster-bin1_armv7l.tar.gz +SOURCE_SUM=b93d71a795c9947afc896dffb414e2e2b60cd6037e3c2d61dd58e2235c27fdf7 # (Optional) Program to check the integrity (sha256sum, md5sum...) # default: sha256 SOURCE_SUM_PRG=sha256sum diff --git a/manifest.json b/manifest.json index 25bf736..b927285 100644 --- a/manifest.json +++ b/manifest.json @@ -6,7 +6,7 @@ "en": "Instant messaging server which uses Matrix", "fr": "Un serveur de messagerie instantané basé sur Matrix" }, - "version": "1.42.0~ynh1", + "version": "1.43.0~ynh1", "url": "http://matrix.org", "license": "Apache-2.0", "maintainer": { From e93a82ed893243852715cb5025c5aa87353bcdd3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Josu=C3=A9=20Tille?= Date: Thu, 7 Oct 2021 00:30:00 +0200 Subject: [PATCH 41/43] Upgrade synapse to 1.44.0 --- README.md | 2 +- conf/armv7_bullseye.src | 4 ++-- conf/armv7_buster.src | 4 ++-- manifest.json | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 1197212..0237a73 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ Instant messaging server matrix network. Yunohost chatroom with matrix : [https://riot.im/app/#/room/#yunohost:matrix.org](https://riot.im/app/#/room/#yunohost:matrix.org) -**Shipped version:** 1.43.0 +**Shipped version:** 1.44.0 ## Configuration diff --git a/conf/armv7_bullseye.src b/conf/armv7_bullseye.src index 7e4ee3c..22343aa 100644 --- a/conf/armv7_bullseye.src +++ b/conf/armv7_bullseye.src @@ -1,5 +1,5 @@ -SOURCE_URL=https://github.com/YunoHost-Apps/synapse_python_build/releases/download/v1.43.0/matrix-synapse_1.43.0-bullseye-bin1_armv7l.tar.gz -SOURCE_SUM=264c52497656c1f4b668904f7fb95b6fd8c09704fb07a22505064f4d03ee2e72 +SOURCE_URL=https://github.com/YunoHost-Apps/synapse_python_build/releases/download/v1.44.0/matrix-synapse_1.44.0-bullseye-bin1_armv7l.tar.gz +SOURCE_SUM=455ffa70e29166fd78c4ba6b3c3fc535c0998bcde01ce24bd4a01a0df19b9365 # (Optional) Program to check the integrity (sha256sum, md5sum...) # default: sha256 SOURCE_SUM_PRG=sha256sum diff --git a/conf/armv7_buster.src b/conf/armv7_buster.src index 26ec75c..94b3f00 100644 --- a/conf/armv7_buster.src +++ b/conf/armv7_buster.src @@ -1,5 +1,5 @@ -SOURCE_URL=https://github.com/YunoHost-Apps/synapse_python_build/releases/download/v1.43.0/matrix-synapse_1.43.0-buster-bin1_armv7l.tar.gz -SOURCE_SUM=b93d71a795c9947afc896dffb414e2e2b60cd6037e3c2d61dd58e2235c27fdf7 +SOURCE_URL=https://github.com/YunoHost-Apps/synapse_python_build/releases/download/v1.44.0/matrix-synapse_1.44.0-buster-bin1_armv7l.tar.gz +SOURCE_SUM=10c6664770e6584d936198d09cbd7d81c7be958f85e208797dd35b2cd6cc1a51 # (Optional) Program to check the integrity (sha256sum, md5sum...) # default: sha256 SOURCE_SUM_PRG=sha256sum diff --git a/manifest.json b/manifest.json index b927285..7e07c58 100644 --- a/manifest.json +++ b/manifest.json @@ -6,7 +6,7 @@ "en": "Instant messaging server which uses Matrix", "fr": "Un serveur de messagerie instantané basé sur Matrix" }, - "version": "1.43.0~ynh1", + "version": "1.44.0~ynh1", "url": "http://matrix.org", "license": "Apache-2.0", "maintainer": { From cc9ea538dfac352b9872e6aa1d5ce8fd50bbe9f0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Josu=C3=A9=20Tille?= Date: Wed, 20 Oct 2021 00:33:45 +0200 Subject: [PATCH 42/43] Upgrade synapse to 1.45.0 --- README.md | 2 +- conf/armv7_bullseye.src | 4 ++-- conf/armv7_buster.src | 4 ++-- manifest.json | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 0237a73..ad19168 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ Instant messaging server matrix network. Yunohost chatroom with matrix : [https://riot.im/app/#/room/#yunohost:matrix.org](https://riot.im/app/#/room/#yunohost:matrix.org) -**Shipped version:** 1.44.0 +**Shipped version:** 1.45.0 ## Configuration diff --git a/conf/armv7_bullseye.src b/conf/armv7_bullseye.src index 22343aa..15b7e65 100644 --- a/conf/armv7_bullseye.src +++ b/conf/armv7_bullseye.src @@ -1,5 +1,5 @@ -SOURCE_URL=https://github.com/YunoHost-Apps/synapse_python_build/releases/download/v1.44.0/matrix-synapse_1.44.0-bullseye-bin1_armv7l.tar.gz -SOURCE_SUM=455ffa70e29166fd78c4ba6b3c3fc535c0998bcde01ce24bd4a01a0df19b9365 +SOURCE_URL=https://github.com/YunoHost-Apps/synapse_python_build/releases/download/v1.45.0/matrix-synapse_1.45.0-bullseye-bin1_armv7l.tar.gz +SOURCE_SUM=1233cd0f1dd0b0cd1ef7fd5eca8374ce577263321de4931ced78949dfa01edc1 # (Optional) Program to check the integrity (sha256sum, md5sum...) # default: sha256 SOURCE_SUM_PRG=sha256sum diff --git a/conf/armv7_buster.src b/conf/armv7_buster.src index 94b3f00..340bc34 100644 --- a/conf/armv7_buster.src +++ b/conf/armv7_buster.src @@ -1,5 +1,5 @@ -SOURCE_URL=https://github.com/YunoHost-Apps/synapse_python_build/releases/download/v1.44.0/matrix-synapse_1.44.0-buster-bin1_armv7l.tar.gz -SOURCE_SUM=10c6664770e6584d936198d09cbd7d81c7be958f85e208797dd35b2cd6cc1a51 +SOURCE_URL=https://github.com/YunoHost-Apps/synapse_python_build/releases/download/v1.45.0/matrix-synapse_1.45.0-buster-bin1_armv7l.tar.gz +SOURCE_SUM=260fe3d00374a7e2a7a04a72d869260897955f74f31a7d8c5f4c795e6e2d2ae9 # (Optional) Program to check the integrity (sha256sum, md5sum...) # default: sha256 SOURCE_SUM_PRG=sha256sum diff --git a/manifest.json b/manifest.json index 7e07c58..856ad06 100644 --- a/manifest.json +++ b/manifest.json @@ -6,7 +6,7 @@ "en": "Instant messaging server which uses Matrix", "fr": "Un serveur de messagerie instantané basé sur Matrix" }, - "version": "1.44.0~ynh1", + "version": "1.45.0~ynh1", "url": "http://matrix.org", "license": "Apache-2.0", "maintainer": { From 6665b4d331a29f9d0789d2155900c643856fcf07 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Josu=C3=A9=20Tille?= Date: Thu, 21 Oct 2021 00:30:51 +0200 Subject: [PATCH 43/43] Upgrade synapse to 1.45.1 --- README.md | 2 +- conf/armv7_bullseye.src | 4 ++-- conf/armv7_buster.src | 4 ++-- manifest.json | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index ad19168..cef704e 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ Instant messaging server matrix network. Yunohost chatroom with matrix : [https://riot.im/app/#/room/#yunohost:matrix.org](https://riot.im/app/#/room/#yunohost:matrix.org) -**Shipped version:** 1.45.0 +**Shipped version:** 1.45.1 ## Configuration diff --git a/conf/armv7_bullseye.src b/conf/armv7_bullseye.src index 15b7e65..ff79009 100644 --- a/conf/armv7_bullseye.src +++ b/conf/armv7_bullseye.src @@ -1,5 +1,5 @@ -SOURCE_URL=https://github.com/YunoHost-Apps/synapse_python_build/releases/download/v1.45.0/matrix-synapse_1.45.0-bullseye-bin1_armv7l.tar.gz -SOURCE_SUM=1233cd0f1dd0b0cd1ef7fd5eca8374ce577263321de4931ced78949dfa01edc1 +SOURCE_URL=https://github.com/YunoHost-Apps/synapse_python_build/releases/download/v1.45.1/matrix-synapse_1.45.1-bullseye-bin1_armv7l.tar.gz +SOURCE_SUM=ba45673989c241874e3329824c47828385bdf6f7144d00452bdfcfbea9865d10 # (Optional) Program to check the integrity (sha256sum, md5sum...) # default: sha256 SOURCE_SUM_PRG=sha256sum diff --git a/conf/armv7_buster.src b/conf/armv7_buster.src index 340bc34..49bc679 100644 --- a/conf/armv7_buster.src +++ b/conf/armv7_buster.src @@ -1,5 +1,5 @@ -SOURCE_URL=https://github.com/YunoHost-Apps/synapse_python_build/releases/download/v1.45.0/matrix-synapse_1.45.0-buster-bin1_armv7l.tar.gz -SOURCE_SUM=260fe3d00374a7e2a7a04a72d869260897955f74f31a7d8c5f4c795e6e2d2ae9 +SOURCE_URL=https://github.com/YunoHost-Apps/synapse_python_build/releases/download/v1.45.1/matrix-synapse_1.45.1-buster-bin1_armv7l.tar.gz +SOURCE_SUM=626a5d7c15ee3f64f5b97480b3e8396bfe6cb39e253a625456945f5335512f95 # (Optional) Program to check the integrity (sha256sum, md5sum...) # default: sha256 SOURCE_SUM_PRG=sha256sum diff --git a/manifest.json b/manifest.json index 856ad06..a7751b9 100644 --- a/manifest.json +++ b/manifest.json @@ -6,7 +6,7 @@ "en": "Instant messaging server which uses Matrix", "fr": "Un serveur de messagerie instantané basé sur Matrix" }, - "version": "1.45.0~ynh1", + "version": "1.45.1~ynh1", "url": "http://matrix.org", "license": "Apache-2.0", "maintainer": {