From 1622e073b2dd844c9bb9b6276c6d66a55d29d80d Mon Sep 17 00:00:00 2001 From: kyteinsky Date: Mon, 6 Jul 2026 17:03:01 +0530 Subject: [PATCH] chore: add NC 35 support also fix app_api being fetched from the appstore Signed-off-by: kyteinsky --- .github/workflows/integration-test-cron.yml | 12 ++++++++++-- .github/workflows/integration-test-file-listener.yml | 10 +++++++++- appinfo/info.xml | 2 +- composer.json | 2 +- 4 files changed, 21 insertions(+), 5 deletions(-) diff --git a/.github/workflows/integration-test-cron.yml b/.github/workflows/integration-test-cron.yml index 825e2dd3..9c84a6ef 100644 --- a/.github/workflows/integration-test-cron.yml +++ b/.github/workflows/integration-test-cron.yml @@ -58,12 +58,12 @@ jobs: matrix: php-versions: [ '8.2' ] databases: [ 'pgsql' ] - server-versions: [ 'stable32', 'stable33', 'master' ] + server-versions: [ 'stable32', 'stable33', 'stable34' ] encryption: ['off'] include: - server-versions: master databases: pgsql - php-versions: 8.2 + php-versions: 8.3 encryption: 'on' - server-versions: stable32 databases: pgsql @@ -133,6 +133,14 @@ jobs: persist-credentials: false ref: ${{ matrix.server-versions }} + - name: Checkout app_api + uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + with: + repository: nextcloud/app_api + ref: ${{ matrix.server-versions == 'master' && 'main' || matrix.server-versions }} + path: apps/app_api + persist-credentials: false + - name: Get backend app version id: appinfo uses: skjnldsv/xpath-action@7e6a7c379d0e9abc8acaef43df403ab4fc4f770c # master diff --git a/.github/workflows/integration-test-file-listener.yml b/.github/workflows/integration-test-file-listener.yml index 72f62985..4f4b7ad5 100644 --- a/.github/workflows/integration-test-file-listener.yml +++ b/.github/workflows/integration-test-file-listener.yml @@ -56,7 +56,7 @@ jobs: # do not stop on another job's failure fail-fast: false matrix: - php-versions: [ '8.2' ] + php-versions: [ '8.3' ] databases: [ 'pgsql' ] server-versions: [ 'master' ] encryption: ['on'] @@ -125,6 +125,14 @@ jobs: persist-credentials: false ref: ${{ matrix.server-versions }} + - name: Checkout app_api + uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + with: + repository: nextcloud/app_api + ref: ${{ matrix.server-versions == 'master' && 'main' || matrix.server-versions }} + path: apps/app_api + persist-credentials: false + - name: Get backend app version id: appinfo uses: skjnldsv/xpath-action@7e6a7c379d0e9abc8acaef43df403ab4fc4f770c # master diff --git a/appinfo/info.xml b/appinfo/info.xml index 749d3dc7..6254388c 100644 --- a/appinfo/info.xml +++ b/appinfo/info.xml @@ -40,7 +40,7 @@ Refer to the [Context Chat Backend's readme](https://github.com/nextcloud/contex https://raw.githubusercontent.com/nextcloud/context_chat/main/screenshots/context_chat_4.png https://raw.githubusercontent.com/nextcloud/context_chat/main/screenshots/context_chat_5.png - + OCA\ContextChat\BackgroundJobs\FileSystemListenerJob diff --git a/composer.json b/composer.json index f2fa44db..4ac11b89 100644 --- a/composer.json +++ b/composer.json @@ -18,7 +18,7 @@ } ], "require": { - "php": "^8.1 || ^8.2 || ^8.3 || ^8.4" + "php": "^8.1 || ^8.2 || ^8.3 || ^8.4 || ^8.5" }, "require-dev": { "nextcloud/coding-standard": "^1.3.2",