[10:13:08]
<Thomas> Something like https://github.com/YunoHost-Apps/overleaf_ynh/blob/22b8034de67d125bb94dbf6ef1ccb51dcf80a997/scripts/remove#L77?
[10:13:38]
<rodinux> my problem is the first line for `match` is problematic because of the variable `$log`
[10:13:54]
<rodinux> this command sed works `sed -i 's|$this->log = '\'''\'';|/\* $this->log = '\'''\''; \*/|g' /var/www/paheko/include/lib/KD2/SMTP.php
`
[10:14:12]
<rodinux> but seems not working with `ynh_replace`
[10:14:26]
<rodinux> another solution should be a copy of the file to comment the line in the folder `config/` and use `ynh_config_add`... does this will replace an existing file like `cp` ?
[10:14:54]
<orhtej2> > <@rodinux:matrix.org> another solution should be a copy of the file to comment the line in the folder `config/` and use `ynh_config_add`... does this will replace an existing file like `cp` ?
Yes it does replace
[10:15:07]
<orhtej2> Why don't you put placeholder variable and populate it with commented out value?
[10:15:22]
<rodinux> not sure I understand... There is a bug in paheko in the upstream which affects a lot of instances, the solution seems comment the line 190 of the file `SMTP.php`...
[10:15:48]
<otm33> @rodinux Something like this?
https://github.com/YunoHost-Apps/etherpad_mypads_ynh/blob/10bea2d8da2772ec560e43a76e66c68aa3d2b7be/scripts/install#L42
[10:15:59]
<orhtej2> > <@otm33:matrix.org> Something like this?
> https://github.com/YunoHost-Apps/etherpad_mypads_ynh/blob/10bea2d8da2772ec560e43a76e66c68aa3d2b7be/scripts/install#L42
That's the one I was thinking about
[11:25:33]
<rodinux> As I try chnage the file I have something like `Error: Apparently the log is telling that 'some file got manually modified' ... which should not happen, considering that no human modified the file ... ! This is usually symptomatic of something that modified a conf file after installing it with ynh_add_config. Maybe usigin ynh_store_file_checksum can help, or maybe the issue is more subtle!`... So I need use a `ynh_store_file_checksum` before or after changing this file ??
[11:27:51]
<rodinux> or use `ynh_backup_if_checksum_is_different` ??
[11:29:44]
<rodinux> could it be something like
```
ynh_store_file_checksum "$install_dir/include/lib/KD2/SMTP.php"
ynh_config_add --template="SMTP.php" --destination="$install_dir/include/lib/KD2/SMTP.php"
ynh_backup_if_checksum_is_different "$install_dir/include/lib/KD2/SMTP.php"
[11:31:27]
<orhtej2> > <@rodinux:matrix.org> could it be something like
> ```
> ynh_store_file_checksum "$install_dir/include/lib/KD2/SMTP.php"
> ynh_config_add --template="SMTP.php" --destination="$install_dir/include/lib/KD2/SMTP.php"
> ynh_backup_if_checksum_is_different "$install_dir/include/lib/KD2/SMTP.php"
This is part of upstream codebase? Add a patch
[11:33:42]
<Yunohost Git/Infra notifications> [syncthing_ynh] som89 edited [pull request #255](https://github.com/YunoHost-Apps/syncthing_ynh/pull/255): Fix upgrade with multiple installations of the application
[11:38:24]
<rodinux> what do you mean ?
[11:38:58]
<Yunohost Git/Infra notifications> [syncthing_ynh] som89 edited [pull request #255](https://github.com/YunoHost-Apps/syncthing_ynh/pull/255): Fix upgrading with multiple installations of the application
[11:39:14]
<orhtej2> > <@rodinux:matrix.org> what do you mean ?
If this is a part of source asset just add a patch
[11:39:48]
<orhtej2> Like so: https://github.com/YunoHost-Apps/nextcloud_ynh/tree/master/patches/main
[11:41:15]
<rodinux> I have some discussions on mailing list about this bug, it seems a real bug in the paheko instances, also with dockerfiles, and in prod... just commenting the line works for now... but it's temporally for this version, surely soon a fix with a new release could arrive... But this fix is a good idea since mails are blocked...
[11:42:33]
<rodinux> Ok so I make a folder patches and add a file with the diffs ?
[11:43:23]
<rodinux> or is another way ??
[11:44:15]
<rodinux> I don't really understand how do that... how can you do a git diff ?? between which files ??
[11:46:56]
<Yunohost Git/Infra notifications> App misskey goes down from level 7 to 6 in job [#33086](https://ci-apps.yunohost.org/ci/job/33086)
[11:56:07]
<Yunohost Git/Infra notifications> Job [#33085](https://ci-apps.yunohost.org/ci/job/33085) for gotosocial failed miserably :(
[12:10:00]
<orhtej2> > <@rodinux:matrix.org> Ok so I make a folder patches and add a file with the diffs ?
I think so, yes
[12:10:00]
<otm33> SMTP.php I guess? More or less : make a copy of the file, apply the change to it, then run `diff -u orig_file mod_file > file.patch`. orhtej2 : you made a tutorial about patching afair, right ?
[12:10:09]
<rodinux> Humm.. Ok I need time to learn this
[12:10:09]
<orhtej2> just start from scratch, no preexisting patch
[12:10:09]
<orhtej2> > <@otm33:matrix.org> SMTP.php I guess? More or less : make a copy of the file, apply the change to it, then run `diff -u orig_file mod_file > file.patch`. orhtej2 : you made a tutorial about patching afair, right ?
Sort of: https://gist.github.com/orhtej2/1cc46337391f9618618d3823880441c3
[12:20:21]
<Yunohost Git/Infra notifications> [cryptpad_ynh] Josue-T [commented](https://github.com/YunoHost-Apps/cryptpad_ynh/pull/266#issuecomment-4563305651) on [issue #266](https://github.com/YunoHost-Apps/cryptpad_ynh/pull/266) Refactor app with config panel to make admin user key more easy to ma…: @tituspijean could you try with the last regex if it look good for you ?
[12:20:22]
<rodinux> I need do this in the folder of the app ? isn't it ?
[12:20:23]
<rodinux> ```
/git/github/Yunohost/paheko_ynh/workdir/paheko-1.3.20$ git init
astuce : Utilisation de 'master' comme nom de la branche initiale. Le nom de la branche
astuce : par défaut peut changer. Pour configurer le nom de la branche initiale
astuce : pour tous les nouveaux dépôts, et supprimer cet avertissement, lancez :
astuce :
astuce : git config --global init.defaultBranch <nom>
astuce :
astuce : Les noms les plus utilisés à la place de 'master' sont 'main', 'trunk' et
astuce : 'development'. La branche nouvellement créée peut être rénommée avec :
astuce :
astuce : git branch -m <nom>
Dépôt Git vide initialisé dans /home/rodi/git/github/Yunohost/paheko_ynh/workdir/paheko-1.3.20/.git/
[12:31:16]
<orhtej2> > <@rodinux:matrix.org> I need do this in the folder of the app ? isn't it ?
No, you need an empty folder
[12:31:17]
<rodinux> Or I do a mistake... the workdir is an empty folder outside the project ??
[12:37:10]
<orhtej2> this has nothing to do with ynh apo
[12:37:10]
<orhtej2> unpack the sources asset there
[12:37:10]
<orhtej2> app*
[12:37:11]
<orhtej2> This asset: https://github.com/YunoHost-Apps/paheko_ynh/blob/760683904e1b0455bad4a7f20de2c2be069d1365/manifest.toml#L67
[12:37:12]
<rodinux> Ok, then the step `Grab the patch you want to upgrade (Github->navigate to asset->'Raw')` is a file I need create in the project ?
[12:39:54]
<rodinux> I have done these folders in the project `patches/1.3.20/`
[12:41:20]
<rodinux> in the last folder I could put my file SMTP.php with the corrections ?
[12:45:33]
<Yunohost Git/Infra notifications> [syncthing_ynh] Thovi98 approved [pull request #255](https://github.com/YunoHost-Apps/syncthing_ynh/pull/255#pullrequestreview-4381035729) Fix upgrading with multiple installations of the application: Thanks a lot
[12:45:58]
<Yunohost Git/Infra notifications> [syncthing_ynh] Thovi98 merged [pull request #255](https://github.com/YunoHost-Apps/syncthing_ynh/pull/255): Fix upgrading with multiple installations of the application
[12:46:19]
<rodinux> but I have to name it ?? I chhose a name for the patch ??
[12:46:20]
<Yunohost Git/Infra notifications> [syncthing_ynh] Thovi98 opened [pull request #256](https://github.com/YunoHost-Apps/syncthing_ynh/pull/256): Testing
[12:46:35]
<Yunohost Git/Infra notifications> [syncthing_ynh] Thovi98 [commented](https://github.com/YunoHost-Apps/syncthing_ynh/pull/256#issuecomment-4564100609) on [issue #256](https://github.com/YunoHost-Apps/syncthing_ynh/pull/256) Testing: bump
[12:47:12]
<Yunohost Git/Infra notifications> [syncthing_ynh] Thovi98 [commented](https://github.com/YunoHost-Apps/syncthing_ynh/pull/256#issuecomment-4564105384) on [issue #256](https://github.com/YunoHost-Apps/syncthing_ynh/pull/256) Testing: changelog Little package update which fixes a bug on upgrade for multi instances
[12:50:20]
<Yunohost Git/Infra notifications> [syncthing_ynh] Thovi98 pushed to Thovi98-patch-1: Rename 2.1.0~ynh1.md to 2.1.0~ynh2.md ([0108a57f](https://github.com/YunoHost-Apps/syncthing_ynh/commit/0108a57f690f1b99eed6b5aaed91a4848466c990))
[12:51:32]
<Yunohost Git/Infra notifications> [syncthing_ynh] Thovi98 pushed to Thovi98-patch-1: bump package ([6879c228](https://github.com/YunoHost-Apps/syncthing_ynh/commit/6879c2282b772e88329a85a67c410bec51fc2f72))
[12:51:37]
<Yunohost Git/Infra notifications> [syncthing_ynh] Thovi98 opened [pull request #257](https://github.com/YunoHost-Apps/syncthing_ynh/pull/257): new branch because testing is protected...
[12:52:04]
<Yunohost Git/Infra notifications> [syncthing_ynh] Thovi98 merged [pull request #257](https://github.com/YunoHost-Apps/syncthing_ynh/pull/257): new branch because testing is protected...
[12:52:05]
<Yunohost Git/Infra notifications> [syncthing_ynh] Thovi98 deleted branch Thovi98-patch-1
[12:52:25]
<Yunohost Git/Infra notifications> [syncthing_ynh] Thovi98 merged [pull request #256](https://github.com/YunoHost-Apps/syncthing_ynh/pull/256): Testing
[12:52:28]
<Yunohost Git/Infra notifications> [syncthing_ynh] Thovi98 closed [issue #254](https://github.com/YunoHost-Apps/syncthing_ynh/issues/254): Upgrading to 2.1.0 does not work if installed with a different name (e.g. multiple versions of the application)
[13:00:45]
<orhtej2> > <@rodinux:matrix.org> in the last folder I could put my file SMTP.php with the corrections ?
Yes
[13:00:46]
<orhtej2> and generate new diff
[13:01:20]
<rodinux> How do I generate a diff... first I have to go in the workdir abd do a `wget https://raw.githubusercontent.com/YunoHost-Apps/paheko_ynh/refs/heads/1.3.20/patches/1.3.20/SMTP.php -O patch.patch` or do I must rename this file ??
[13:04:36]
<orhtej2> > <@rodinux:matrix.org> How do I generate a diff... first I have to go in the workdir abd do a `wget https://github.com/YunoHost-Apps/paheko_ynh/blob/1.3.20/patches/1.3.20/SMTP.php -O patch.patch` or do I must rename this file ??
Get this file in place
[13:04:37]
<orhtej2> overwrite the contents
[13:04:38]
<rodinux> this file is the one with a correction... It must be first the same as the oroginal ??
[13:05:13]
<rodinux> and then only I must overwrite it ??
[13:13:53]
<rodinux> Or you mean I need be placed in the source project go on the path of the file needed to be changed and try the command to overwrite the source file ??
[13:16:50]
<orhtej2> and `git diff`
[13:16:54]
<orhtej2> should show only a handful of changes
[13:16:56]
<rodinux> Is it this ? I go in the path of the source project in the path `cd include/lib/KD2/` and try overwrite the file with `wget https://raw.githubusercontent.com/YunoHost-Apps/paheko_ynh/refs/heads/1.3.20/patches/1.3.20/SMTP.php` ??
[13:21:09]
<rodinux> Well doing this have added a file `include/lib/KD2/SMTP.php.1` but not overwrite the file ??
[13:34:45]
<rodinux> ```
wget https://raw.githubusercontent.com/YunoHost-Apps/paheko_ynh/refs/heads/1.3.20/patches/1.3.20/SMTP.php -O SMTP.php
--2026-05-28 15:26:25-- https://raw.githubusercontent.com/YunoHost-Apps/paheko_ynh/refs/heads/1.3.20/patches/1.3.20/SMTP.php
Résolution de raw.githubusercontent.com (raw.githubusercontent.com)… 2606:50c0:8000::154, 2606:50c0:8003::154, 2606:50c0:8001::154, ...
Connexion à raw.githubusercontent.com (raw.githubusercontent.com)|2606:50c0:8000::154|:443… connecté.
requête HTTP transmise, en attente de la réponse… 200 OK
Taille : 13519 (13K) [text/plain]
Sauvegarde en : « SMTP.php »
SMTP.php 100%[============================================================================================>] 13,20K --.-KB/s ds 0s
2026-05-28 15:26:25 (54,5 MB/s) — « SMTP.php » sauvegardé [13519/13519]
[13:34:47]
<rodinux> Ah it works like this
[13:34:49]
<rodinux> ```
~/git/github/Yunohost/workdir/paheko-1.3.20$ git diff
diff --git a/include/lib/KD2/SMTP.php b/include/lib/KD2/SMTP.php
index fec5b92..723a3fc 100644
--- a/include/lib/KD2/SMTP.php
+++ b/include/lib/KD2/SMTP.php
@@ -187,7 +187,7 @@ class SMTP
public function connect(): void
{
- $this->log = '';
+ /* $this->log = ''; */
$this->conn = stream_socket_client($this->server . ':' . $this->port, $errno, $errstr, $this->timeout);
stream_set_timeout($this->conn, $this->timeout);
@@ -511,4 +511,4 @@ class SMTP
{
$this->log_pointer = $pointer;
}
-}
+}
\ No newline at end of file
[13:45:34]
<rodinux> ok but I am wrong because is not named as a patch ??
[13:45:36]
<rodinux> ```
~/git/github/Yunohost/workdir/paheko-1.3.20$ git apply SMTP.php --reject
erreur : ouverture impossible du patch 'SMTP.php' :Aucun fichier ou dossier de ce nom
[13:45:38]
<orhtej2> Its ok
[13:45:41]
<rodinux> so I do `git add .` and `git commit -m "patch smtp"` and then ??
[13:45:41]
<orhtej2> commit the change then run format-patch from linked docs
[13:45:42]
<rodinux> well a `git add include/lib/KD2/SMTP.php`
[13:45:44]
<rodinux> and after a commit `git format-patch HEAD~1` ?
[13:46:31]
<rodinux> ```
~/git/github/Yunohost/workdir/paheko-1.3.20$ git format-patch HEAD~1
0001-Updated-patch.patch
[13:46:33]
<rodinux> yes
```
cat 0001-Updated-patch.patch
From 01fff75e653069f2424697392d85f23545f4226e Mon Sep 17 00:00:00 2001
From: Rodolphe Robles <rodinux07@rodinux.fr>
Date: Thu, 28 May 2026 15:37:39 +0200
Subject: [PATCH] Updated patch
---
include/lib/KD2/SMTP.php | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/include/lib/KD2/SMTP.php b/include/lib/KD2/SMTP.php
index fec5b92..723a3fc 100644
--- a/include/lib/KD2/SMTP.php
+++ b/include/lib/KD2/SMTP.php
@@ -187,7 +187,7 @@ class SMTP
public function connect(): void
{
- $this->log = '';
+ /* $this->log = ''; */
$this->conn = stream_socket_client($this->server . ':' . $this->port, $errno, $errstr, $this->timeout);
stream_set_timeout($this->conn, $this->timeout);
@@ -511,4 +511,4 @@ class SMTP
{
$this->log_pointer = $pointer;
}
-}
+}
\ No newline at end of file
--
2.47.3
[13:46:35]
<rodinux> Now I don't really understand how I put this file in the paheko package ??
[13:46:39]
<rodinux> I put this file `0001-Updated-patch.patch` on the yunohost package inside the folder `patches/1.3.20/` ?? this will apply the chnages ??
[14:06:25]
<rodinux> I have try just cp -a the file in the folder `patches/1.3.20/` after a local test it did not works... 😪
[14:13:04]
<rodinux> does I need do something else ??
[14:13:08]
<rodinux> Or is it my my file I need rework (about trailing space ??
[14:51:59]
<rodinux> Or I need clean the file to have only this ?
```
diff --git a/include/lib/KD2/SMTP.php b/include/lib/KD2/SMTP.php
index fec5b92..723a3fc 100644
--- a/include/lib/KD2/SMTP.php
+++ b/include/lib/KD2/SMTP.php
@@ -187,7 +187,7 @@ class SMTP
public function connect(): void
{
- $this->log = '';
+ /* $this->log = ''; */
$this->conn = stream_socket_client($this->server . ':' . $this->port, $errno, $errstr, $this->timeout);
stream_set_timeout($this->conn, $this->timeout);
@@ -511,4 +511,4 @@ class SMTP
{
$this->log_pointer = $pointer;
}
-}
+}
[14:55:14]
<m606> Yes that would be nice to have a bit of a tutorial about this in Yunohost doc, like a dedicated page in the "Advanced" section.
But patches are applied by `ynh_setup_source` after downloading upstream assets. As indicated in the helper's doc, patch files should be saved to `patches/${src_id}/*.patch` in your app package repo, where `src_id` corresponds to the ID of the source declared in the manifest.
[14:55:18]
<orhtej2> > <@rodinux:matrix.org> I put this file `0001-Updated-patch.patch` on the yunohost package inside the folder `patches/1.3.20/` ?? this will apply the chnages ??
Patches/main
[14:55:20]
<m606> in your case something like `patches/main/0001-Updated-patch.patch` (though I would recommend to give it a more descriptive name)
[14:55:22]
<Yunohost Git/Infra notifications> [piped_ynh] orhtej2 closed [issue #286](https://github.com/YunoHost-Apps/piped_ynh/issues/286): Install Broken
[14:55:23]
<Yunohost Git/Infra notifications> [piped_ynh] orhtej2 [commented](https://github.com/YunoHost-Apps/piped_ynh/issues/286#issuecomment-4565083298) on [issue #286](https://github.com/YunoHost-Apps/piped_ynh/issues/286) Install Broken: Back to lvl8 on main CI, closing (feel free to reopen if the issue is not fixed)
[14:55:24]
<rodinux> Ok... does I need clean the file or let it as it was ??
[14:55:25]
<Yunohost Git/Infra notifications> [piped_ynh] orhtej2 closed [pull request #285](https://github.com/YunoHost-Apps/piped_ynh/pull/285): Upgrade sources
[14:59:42]
<Yunohost Git/Infra notifications> [piped_ynh] orhtej2 deleted branch orhtej2-patch-1
[14:59:42]
<Yunohost Git/Infra notifications> [piped_ynh] orhtej2 deleted branch ci-auto-update-sources-5e887083
[14:59:43]
<Yunohost Git/Infra notifications> [piped_ynh] orhtej2 deleted branch update
[14:59:43]
<Yunohost Git/Infra notifications> [piped_ynh] orhtej2 deleted branch ci-auto-update-sources-95612554
[14:59:43]
<Yunohost Git/Infra notifications> [piped_ynh] orhtej2 deleted branch ci-auto-update-2026.04.06
[14:59:44]
<Yunohost Git/Infra notifications> [piped_ynh] orhtej2 deleted branch ci-auto-update-2025.12.13
[15:05:03]
<m606> i don't know, if I were you I would first give it a try with the cleaned file
[15:05:07]
<orhtej2> > <@m606:matrix.org> i don't know, if I were you I would first give it a try with the cleaned file
Put patch, delete your full file, drop all the logic that eas applying your fix
[15:26:25]
<m606> and I don't expect the log part (FROM, SUBJECT headers, etc.) in the generated patch file to be mandatory (but idk)
[15:26:27]
<m606> i understood he meant the patch file itself when referring to "cleaning the file"
[15:26:30]
<rodinux> just this ??
```
diff --git a/include/lib/KD2/SMTP.php b/include/lib/KD2/SMTP.php
index fec5b92..723a3fc 100644
--- a/include/lib/KD2/SMTP.php
+++ b/include/lib/KD2/SMTP.php
@@ -187,7 +187,7 @@ class SMTP
public function connect(): void
{
- $this->log = '';
+ /* $this->log = ''; */
$this->conn = stream_socket_client($this->server . ':' . $this->port, $errno, $errstr, $this->timeout);
stream_set_timeout($this->conn, $this->timeout);
[15:26:33]
<rodinux> 🎉🎉
[15:26:35]
<rodinux> it works like this
[15:26:38]
<rodinux> thanks !
[15:26:43]
<m606> but from the apps repo I see any of the options would have worked: https://github.com/search?q=org%3AYunoHost-Apps+path%3A.patch&type=code
[15:26:44]
<rodinux> I mean I have tested locally upgrade from the branch...
[15:26:44]
<m606> (you should be logged into github to see that)
[15:26:49]
<rodinux> it have changed my file as wanted with the path
[15:27:21]
<Yunohost Git/Infra notifications> Job [#33037](https://ci-apps.yunohost.org/ci/job/33037) for abantecart failed miserably :(
[15:45:22]
<Yunohost Git/Infra notifications> Job [#33037](https://ci-apps.yunohost.org/ci/job/33037) for abantecart failed miserably :(
[16:15:03]
<Yunohost Git/Infra notifications> Job [#32846](https://ci-apps.yunohost.org/ci/job/32846) for dodoc failed miserably :(
[21:08:31]
<Yunohost Git/Infra notifications> App lasuite-docs goes down from level 7 to 1 in job [#32937](https://ci-apps.yunohost.org/ci/job/32937)
[21:12:24]
<Yunohost Git/Infra notifications> App hotglue goes down from level 4 to 1 in job [#33135](https://ci-apps.yunohost.org/ci/job/33135)
[22:28:52]
<Yunohost Git/Infra notifications> [nextcloud_ynh] ericgaspar pushed to postgresql_reboot: Update manifest.toml ([6d1f8b4a](https://github.com/YunoHost-Apps/nextcloud_ynh/commit/6d1f8b4a50af01ce7c5f135469911f39aec9eb2c))
[22:28:52]
<Yunohost Git/Infra notifications> [nextcloud_ynh] Gredin67 [commented](https://github.com/YunoHost-Apps/nextcloud_ynh/pull/819#issuecomment-4568525327) on [issue #819](https://github.com/YunoHost-Apps/nextcloud_ynh/pull/819) v30 oldstable: @rodinux @zamentur or maybe upgrade this branch to v32 ?
[22:28:52]
<Yunohost Git/Infra notifications> [nextcloud_ynh] ericgaspar pushed to postgresql_reboot: Update manifest.toml ([0b4bd99f](https://github.com/YunoHost-Apps/nextcloud_ynh/commit/0b4bd99ffe91ac6e4d7f24065e81fe8dcb8ceea9))
[22:28:52]
<Yunohost Git/Infra notifications> [nextcloud_ynh] ericgaspar pushed to postgresql_reboot: Testing (#879) * Update ADMIN.md: update advice to open shell + add a note on how to promote a user to admin * Update ... ([07a7581d](https://github.com/YunoHost-Apps/nextcloud_ynh/commit/07a7581d3adca63f8cffca3ef0fde5514e3987be))
[22:28:52]
<Yunohost Git/Infra notifications> [nextcloud_ynh] Gredin67 [commented](https://github.com/YunoHost-Apps/nextcloud_ynh/pull/869#issuecomment-4568518078) on [issue #869](https://github.com/YunoHost-Apps/nextcloud_ynh/pull/869) V31: does it make sense to upgrade this branch to v32 ? https://github.com/YunoHost-Apps/nextcloud_ynh/pull/873 ? @rodinux @z...
[22:28:53]
<Yunohost Git/Infra notifications> App hotglue stays at level 4 in job [#33136](https://ci-apps.yunohost.org/ci/job/33136)
[22:28:53]
<Yunohost Git/Infra notifications> [nextcloud_ynh] ericgaspar pushed to postgresql_reboot: Merge branch master into testing ([5123ef6c](https://github.com/YunoHost-Apps/nextcloud_ynh/commit/5123ef6c27d2182b0980de76ecee872ec70e334c))
[22:28:53]
<Yunohost Git/Infra notifications> [nextcloud_ynh] ericgaspar pushed to postgresql_reboot: Auto-update READMEs ([d9b64477](https://github.com/YunoHost-Apps/nextcloud_ynh/commit/d9b644774216ab08074f66b50e099ef8e80ff8c9))
[22:28:53]
<Yunohost Git/Infra notifications> [nextcloud_ynh] ericgaspar pushed to postgresql_reboot: Merge branch testing into postgresql_reboot ([41ae914a](https://github.com/YunoHost-Apps/nextcloud_ynh/commit/41ae914ae05e27d2e89d3bf601e785d14d358e7d))
[22:53:57]
<Yunohost Git/Infra notifications> Autoupdater just ran, here are the results:
- 78 pending update PRs
- 20 new apps PRs: audiobookshelf, bonfire, discourse, fiduswriter, grist, indico, jackett, liberaforms, localai, mautic, meilisearch, n8n, prometheus, syncserver-rs, tooljet, vvveb, wanderer, wiki-go, woodpecker, zerotier
- 6 failed apps updates: calcom, fossbilling, loki, passed, projectsend, shaarli
See the full log here: https://paste.yunohost.org/raw/yesasuruxu
Autoupdate dashboard: https://apps.yunohost.org/dash?filter=autoupdate
[23:34:02]
<Yunohost Git/Infra notifications> [nextcloud_ynh] rodinux [commented](https://github.com/YunoHost-Apps/nextcloud_ynh/pull/819#issuecomment-4569178446) on [issue #819](https://github.com/YunoHost-Apps/nextcloud_ynh/pull/819) v30 oldstable: > @rodinux @zamentur or maybe upgrade this branch to v32 ? it exist here https://github.com/YunoHost-Apps/nextcloud_yn...
[23:40:37]
<Yunohost Git/Infra notifications> [nextcloud_ynh] rodinux pushed to v32: release 32.0.9 ([3573b405](https://github.com/YunoHost-Apps/nextcloud_ynh/commit/3573b4056289839c7ba6ab8093a5bb8e56dbfde3))