From 6044a28fa328bcf389da6b647dd1012de3cae887 Mon Sep 17 00:00:00 2001
From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com>
Date: Thu, 11 Jun 2026 02:46:09 +0000
Subject: [PATCH 1/4] chore(deps): update nextcloud docker tag to v34
---
.github/workflows/test.yml | 2 +-
appinfo/info.xml | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 8eb33f1..d1e696c 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -40,7 +40,7 @@ jobs:
nextcloud:
- "31"
- "32"
- - "33"
+ - "34"
services:
db:
image: ${{ matrix.db.image }}
diff --git a/appinfo/info.xml b/appinfo/info.xml
index f6fdb59..75a2e4b 100644
--- a/appinfo/info.xml
+++ b/appinfo/info.xml
@@ -32,7 +32,7 @@ Currently can not index office document formats, but does work with PDFs (if the
https://github.com/jplitza/fulltextsearch_sql/issues
https://github.com/jplitza/fulltextsearch_sql.git
-
+
mysql
pgsql
From 56e174dfd62f76c3c0680b79826182cff9a10376 Mon Sep 17 00:00:00 2001
From: Jan-Philipp Litza
Date: Sun, 14 Jun 2026 17:20:26 +0200
Subject: [PATCH 2/4] chore(ci): force-enable other apps
---
.github/workflows/test.yml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index d1e696c..8c09b2a 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -91,7 +91,7 @@ jobs:
--database-name=${{ matrix.db.database }}
- name: Enable fulltextsearch app
- run: php occ -n app:enable fulltextsearch
+ run: php occ -n app:enable -f fulltextsearch
- name: Enable fulltextsearch_sql app
run: php occ -n app:enable fulltextsearch_sql
@@ -115,7 +115,7 @@ jobs:
run: php occ -n fulltextsearch:test --platform_delay 1
- name: Enable files_fulltextsearch provider
- run: php occ app:enable files_fulltextsearch
+ run: php occ app:enable -f files_fulltextsearch
- name: Identify test PDF document
run: >
From 740e577f8ba68bcc68c8e3047bafe3ec04de2941 Mon Sep 17 00:00:00 2001
From: Jan-Philipp Litza
Date: Sun, 14 Jun 2026 17:21:32 +0200
Subject: [PATCH 3/4] chore(ci): pass through whole search CLI output
---
.github/workflows/test.yml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 8c09b2a..9c82a21 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -126,7 +126,7 @@ jobs:
- name: Search for test PDF document
run: >
- php occ fulltextsearch:search admin Nextcloud | grep -e "^ - $TEST_DOC score:" -e "^ *\* id: $TEST_DOC"
+ php occ fulltextsearch:search admin Nextcloud | tee /dev/stderr | grep -q -e "^ - $TEST_DOC score:" -e "^ *\* id: $TEST_DOC"
- name: Create test ISO-8859-1 document
run: echo -e "F\xFCr Testzwecke" | php occ files:put - /admin/files/iso-8859-1.txt
@@ -140,4 +140,4 @@ jobs:
- name: Search for test ISO-8859-1 document
run: >
- php occ fulltextsearch:search admin testzwecke | grep -e "^ - $TEST_DOC score:" -e "^ *\* id: $TEST_DOC"
\ No newline at end of file
+ php occ fulltextsearch:search admin testzwecke | tee /dev/stderr | grep -q -e "^ - $TEST_DOC score:" -e "^ *\* id: $TEST_DOC"
\ No newline at end of file
From 799006be6658dad46960008ee1dff90b84e18717 Mon Sep 17 00:00:00 2001
From: Jan-Philipp Litza
Date: Sun, 14 Jun 2026 17:21:56 +0200
Subject: [PATCH 4/4] chore(ci): re-add NC 33 to CI
---
.github/workflows/test.yml | 1 +
1 file changed, 1 insertion(+)
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 9c82a21..02b7e3d 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -40,6 +40,7 @@ jobs:
nextcloud:
- "31"
- "32"
+ - "33"
- "34"
services:
db: