Skip to content

Commit 4aac669

Browse files
committed
Upgrade to Nextcloud v32.0.0
1 parent 3993e3c commit 4aac669

6 files changed

Lines changed: 7 additions & 7 deletions

File tree

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ local: build
104104
docker compose kill || true
105105
docker stop nextcloud-container || true
106106
docker container rm nextcloud-container || true
107-
docker run --rm -d -p 8080:80 --name nextcloud-container -e SERVER_BRANCH="v31.0.8" -v .:/var/www/html/apps-extra/gdatavaas ghcr.io/juliusknorr/nextcloud-dev-php84:latest
107+
docker run --rm -d -p 8080:80 --name nextcloud-container -e SERVER_BRANCH="v32.0.0" -v .:/var/www/html/apps-extra/gdatavaas ghcr.io/juliusknorr/nextcloud-dev-php84:latest
108108
composer install
109109

110110
# Builds the app for production and prepares it for the appstore under ./build/artifacts

appinfo/info.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ Please make sure the "Authentication Method" "Resource Owner Password Flow" is s
5555
<database>pgsql</database>
5656
<database>mysql</database>
5757
<database>sqlite</database>
58-
<nextcloud min-version="31" max-version="31"/>
58+
<nextcloud min-version="32" max-version="32"/>
5959
</dependencies>
6060
<background-jobs>
6161
<job>OCA\GDataVaas\BackgroundJobs\ScanJob</job>

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"coduo/php-humanizer": "5.0.0"
1414
},
1515
"require-dev": {
16-
"nextcloud/ocp": "v31.0.8",
16+
"nextcloud/ocp": "v32.0.0",
1717
"psalm/phar": "6.8.2",
1818
"nextcloud/coding-standard": "v1.4.0",
1919
"colinodell/psr-testlogger": "1.3.0",
@@ -45,4 +45,4 @@
4545
"php": "8.1"
4646
}
4747
}
48-
}
48+
}

docker-compose.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
services:
66
nextcloud-container:
7-
image: nextcloud:31.0.8
7+
image: nextcloud:32.0.0
88
ports:
99
- "8080:80"
1010
container_name: nextcloud-container

scripts/get-nc-server.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# SPDX-License-Identifier: AGPL-3.0-or-later
66

77
rm -rf nextcloud-server/
8-
export NEXTCLOUD_VERSION=${1:-31.0.8}
8+
export NEXTCLOUD_VERSION=${1:-32.0.0}
99
git clone --depth 1 --recurse-submodules --single-branch --branch v"$NEXTCLOUD_VERSION" https://github.com/nextcloud/server.git ./nextcloud-server
1010
cd nextcloud-server || exit 1
1111
git submodule update --init

scripts/run-app.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
set -e
88

9-
export NEXTCLOUD_VERSION=${1:-31.0.8}
9+
export NEXTCLOUD_VERSION=${1:-32.0.0}
1010
export IS_CI=${2:-0}
1111

1212
if [ "$IS_CI" -eq 0 ]; then

0 commit comments

Comments
 (0)