Skip to content

Commit 570ff6f

Browse files
authored
chore: add NC 35 support (#256)
also fix app_api being fetched from the appstore Signed-off-by: kyteinsky <kyteinsky@gmail.com>
1 parent 46547ab commit 570ff6f

4 files changed

Lines changed: 21 additions & 5 deletions

File tree

.github/workflows/integration-test-cron.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,12 +58,12 @@ jobs:
5858
matrix:
5959
php-versions: [ '8.2' ]
6060
databases: [ 'pgsql' ]
61-
server-versions: [ 'stable32', 'stable33', 'master' ]
61+
server-versions: [ 'stable32', 'stable33', 'stable34' ]
6262
encryption: ['off']
6363
include:
6464
- server-versions: master
6565
databases: pgsql
66-
php-versions: 8.2
66+
php-versions: 8.3
6767
encryption: 'on'
6868
- server-versions: stable32
6969
databases: pgsql
@@ -133,6 +133,14 @@ jobs:
133133
persist-credentials: false
134134
ref: ${{ matrix.server-versions }}
135135

136+
- name: Checkout app_api
137+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
138+
with:
139+
repository: nextcloud/app_api
140+
ref: ${{ matrix.server-versions == 'master' && 'main' || matrix.server-versions }}
141+
path: apps/app_api
142+
persist-credentials: false
143+
136144
- name: Get backend app version
137145
id: appinfo
138146
uses: skjnldsv/xpath-action@7e6a7c379d0e9abc8acaef43df403ab4fc4f770c # master

.github/workflows/integration-test-file-listener.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
# do not stop on another job's failure
5757
fail-fast: false
5858
matrix:
59-
php-versions: [ '8.2' ]
59+
php-versions: [ '8.3' ]
6060
databases: [ 'pgsql' ]
6161
server-versions: [ 'master' ]
6262
encryption: ['on']
@@ -125,6 +125,14 @@ jobs:
125125
persist-credentials: false
126126
ref: ${{ matrix.server-versions }}
127127

128+
- name: Checkout app_api
129+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
130+
with:
131+
repository: nextcloud/app_api
132+
ref: ${{ matrix.server-versions == 'master' && 'main' || matrix.server-versions }}
133+
path: apps/app_api
134+
persist-credentials: false
135+
128136
- name: Get backend app version
129137
id: appinfo
130138
uses: skjnldsv/xpath-action@7e6a7c379d0e9abc8acaef43df403ab4fc4f770c # master

appinfo/info.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Refer to the [Context Chat Backend's readme](https://github.com/nextcloud/contex
4040
<screenshot>https://raw.githubusercontent.com/nextcloud/context_chat/main/screenshots/context_chat_4.png</screenshot>
4141
<screenshot>https://raw.githubusercontent.com/nextcloud/context_chat/main/screenshots/context_chat_5.png</screenshot>
4242
<dependencies>
43-
<nextcloud min-version="32" max-version="34"/>
43+
<nextcloud min-version="32" max-version="35"/>
4444
</dependencies>
4545
<background-jobs>
4646
<job>OCA\ContextChat\BackgroundJobs\FileSystemListenerJob</job>

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
}
1919
],
2020
"require": {
21-
"php": "^8.1 || ^8.2 || ^8.3 || ^8.4"
21+
"php": "^8.1 || ^8.2 || ^8.3 || ^8.4 || ^8.5"
2222
},
2323
"require-dev": {
2424
"nextcloud/coding-standard": "^1.3.2",

0 commit comments

Comments
 (0)