From 130b27ec0fa9009c2613b2a719c1302db80c35b6 Mon Sep 17 00:00:00 2001 From: "ljf (zamentur)" Date: Fri, 24 Nov 2023 09:42:12 +0100 Subject: [PATCH 1/7] 27.1.4 --- scripts/upgrade.d/upgrade.last.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/upgrade.d/upgrade.last.sh b/scripts/upgrade.d/upgrade.last.sh index 09a19f6..b31e5b5 100644 --- a/scripts/upgrade.d/upgrade.last.sh +++ b/scripts/upgrade.d/upgrade.last.sh @@ -1,7 +1,7 @@ #!/bin/bash # Last available Nextcloud version -next_version="27.1.2" +next_version="27.1.4" # Nextcloud tarball checksum sha256 -nextcloud_source_sha256="0742b247aaee0b7044db0062f0a914aa77338c7a7d8fe7da0917147d76689721" +nextcloud_source_sha256="bec65f2166b82c9303baf476c1e424f71aa196dad010ffe4c0c39d03990d594c" From 42a127992be57c96652db7c785c21a4402954a5a Mon Sep 17 00:00:00 2001 From: "ljf (zamentur)" Date: Fri, 24 Nov 2023 09:49:57 +0100 Subject: [PATCH 2/7] 27.1.4 manifest --- manifest.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/manifest.json b/manifest.json index 37406e2..6e781ef 100644 --- a/manifest.json +++ b/manifest.json @@ -6,7 +6,7 @@ "en": "Online storage, file sharing platform and various other applications", "fr": "Stockage en ligne, plateforme de partage de fichiers et diverses autres applications" }, - "version": "27.1.2~ynh3", + "version": "27.1.4~ynh1", "url": "https://nextcloud.com", "upstream": { "license": "AGPL-3.0", @@ -67,4 +67,4 @@ } ] } -} \ No newline at end of file +} From 5fdccc4865ddfec97d76ccdf4eab9e876526a0ef Mon Sep 17 00:00:00 2001 From: yunohost-bot Date: Fri, 24 Nov 2023 08:50:00 +0000 Subject: [PATCH 3/7] Auto-update README --- README.md | 2 +- README_fr.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f983630..0160f1e 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,7 @@ this package: * Serve `/.well-known` paths for CalDAV and CardDAV on the domain only if it's not already served - i.e. by Baïkal -**Shipped version:** 27.1.2~ynh3 +**Shipped version:** 27.1.4~ynh1 **Demo:** https://demo.nextcloud.com/ diff --git a/README_fr.md b/README_fr.md index 6444d1a..6dd2462 100644 --- a/README_fr.md +++ b/README_fr.md @@ -29,7 +29,7 @@ En plus des fonctionnalités principales de Nextcloud, les fonctionnalités suiv * Utilise l'adresse `/.well-known` pour la synchronisation CalDAV et CardDAV du domaine si aucun autre service ne l'utilise déjà - par exemple, Baïkal -**Version incluse :** 27.1.2~ynh3 +**Version incluse :** 27.1.4~ynh1 **Démo :** https://demo.nextcloud.com/ From 76fb4fbc9e77896e90188f53f6213f879b23be2c Mon Sep 17 00:00:00 2001 From: ljf Date: Thu, 30 Nov 2023 00:26:52 +0100 Subject: [PATCH 4/7] [fix] Upgrade failing due to obsolete use of mysqlpwd --- scripts/upgrade | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/upgrade b/scripts/upgrade index bf10498..85ab559 100755 --- a/scripts/upgrade +++ b/scripts/upgrade @@ -155,7 +155,7 @@ then exec_occ -V if [ "$(exec_occ config:system:get mysql.utf8mb4)" != "true" ]; then - db_pwd=$(ynh_app_setting_get --app=$app --key=mysqlpwd) + db_pwd=$(ynh_app_setting_get --app=$app --key=db_pwd) # Change your databases character set and collation ynh_mysql_connect_as --user=$db_user --password="$db_pwd" --database=$db_name \ <<< "ALTER DATABASE $db_name CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci;" From beb3eacc9a64be29ef446469f2ffe05b8b4f06ad Mon Sep 17 00:00:00 2001 From: OniriCorpe Date: Thu, 30 Nov 2023 01:09:03 +0100 Subject: [PATCH 5/7] augment "opcache.revalidate_freq" from 1 to 60 (#541) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * [enh] revalidate_freq to 60 --------- Co-authored-by: Éric Gaspar <46165813+ericgaspar@users.noreply.github.com> Co-authored-by: ljf (zamentur) --- conf/extra_php-fpm.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf/extra_php-fpm.conf b/conf/extra_php-fpm.conf index feee90b..fd92447 100644 --- a/conf/extra_php-fpm.conf +++ b/conf/extra_php-fpm.conf @@ -14,7 +14,7 @@ php_value[opcache.interned_strings_buffer]=32 php_value[opcache.max_accelerated_files]=10000 php_value[opcache.memory_consumption]=128 php_value[opcache.save_comments]=1 -php_value[opcache.revalidate_freq]=1 +php_value[opcache.revalidate_freq]=60 ; https://docs.nextcloud.com/server/latest/admin_manual/configuration_server/caching_configuration.html#id1 php_value[apc.enabled]=1 php_value[apc.enable_cli]=1 From 8efdae92176cc29d27291db752c6c97709b5f86b Mon Sep 17 00:00:00 2001 From: "ljf (zamentur)" Date: Thu, 30 Nov 2023 11:45:53 +0100 Subject: [PATCH 6/7] [fix] overwrite.cli.url should contains path --- scripts/install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/install b/scripts/install index 2f16071..a169962 100755 --- a/scripts/install +++ b/scripts/install @@ -198,7 +198,7 @@ exec_occ config:system:get logout_url >/dev/null 2>&1 \ # CHANGE HOSTNAME FOR ACTIVITY NOTIFICATIONS #================================================= -exec_occ config:system:set overwrite.cli.url --value="https://${domain}" +exec_occ config:system:set overwrite.cli.url --value="https://${domain}${path}" #================================================= # REMOVE THE TEMPORARY ADMIN AND SET THE TRUE ONE From ac91d3a6769747fd3819484ae8c02446e5cc0a30 Mon Sep 17 00:00:00 2001 From: "ljf (zamentur)" Date: Thu, 30 Nov 2023 11:48:18 +0100 Subject: [PATCH 7/7] [fix] Upgrade the bad overwrite.cli.url with path --- scripts/upgrade | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/upgrade b/scripts/upgrade index 85ab559..aac8c8d 100755 --- a/scripts/upgrade +++ b/scripts/upgrade @@ -312,7 +312,7 @@ EOF # CHANGE HOSTNAME FOR ACTIVITY NOTIFICATIONS #================================================= - exec_occ config:system:set overwrite.cli.url --value="https://${domain}" + exec_occ config:system:set overwrite.cli.url --value="https://${domain}${path}" #================================================= # MOUNT HOME FOLDERS AS EXTERNAL STORAGE