diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 16d63fc60..31af3a394 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -59,7 +59,7 @@ jobs:
sudo apt install make openssl -y
echo "###### installing nextcloud"
mkdir ~/html
- git clone https://github.com/nextcloud/server.git --recursive --depth 1 -b stable29 ~/html/nextcloud
+ git clone https://github.com/nextcloud/server.git --recursive --depth 1 -b stable32 ~/html/nextcloud
sed -i $'s|if (substr($fullPath, 0, strlen($root) + 1) === $root . \'/\')|if (is_string($root) and substr($fullPath, 0, strlen($root) + 1) === $root . \'/\')|g' ~/html/nextcloud/lib/autoloader.php
cp -r $GITHUB_WORKSPACE ~/html/nextcloud/apps/${APP_ID}
php ~/html/nextcloud/occ maintenance:install --database "sqlite" --admin-user "admin" --admin-pass "password"
diff --git a/.github/workflows/shared_workflow.yml b/.github/workflows/shared_workflow.yml
index 4947d8f70..bea75737e 100644
--- a/.github/workflows/shared_workflow.yml
+++ b/.github/workflows/shared_workflow.yml
@@ -10,7 +10,7 @@ on:
nextcloud_versions:
required: false
type: string
- default: "30 31 32 master"
+ default: "31 32"
php_versions:
required: false
type: string
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 4739dae22..9f8a052dc 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -19,7 +19,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
### Removed
-## 2.10.1 - 2025-12-15
+## 2.11.0 - 2025-12-15
### Added
- Support Nextcloud 33 [#881](https://github.com/nextcloud/integration_openproject/pull/881)
diff --git a/appinfo/info.xml b/appinfo/info.xml
index ebc07fae0..a6ebbcb51 100644
--- a/appinfo/info.xml
+++ b/appinfo/info.xml
@@ -49,7 +49,7 @@ For more information on how to set up and use the OpenProject application, pleas
https://github.com/nextcloud/integration_openproject/raw/master/img/screenshot1.png
https://github.com/nextcloud/integration_openproject/raw/master/img/screenshot2.png
-
+
OCA\OpenProject\BackgroundJob\RemoveExpiredDirectUploadTokens
diff --git a/docs/release.md b/docs/release.md
index 80120d47e..127c1cb66 100644
--- a/docs/release.md
+++ b/docs/release.md
@@ -14,27 +14,37 @@
On the release branch:
2. In case any new feature was added, update the feature description in:
- - `README.md`
- - `appinfo/info.xml`
+ - [README.md](../README.md)
+ - [appinfo/info.xml](../appinfo/info.xml)
3. Update the version in:
- - `appinfo/info.xml`
- - `package.json`
-4. Add the new release branch in `.tx/backport` to allow transifex commits.
-5. Update `CHANGELOG.md` with the changes and the version to be released.
-6. Update the new release branch in the [nightly CI](../.github/workflows/nighlty-ci-release-branch.yml).
-7. Perform confirmatory testing (Changelogs) - by the OpenProject team.
-8. Perform [smoke testing](testing/smoke_testing.md) - by the OpenProject team.
+ - [appinfo/info.xml](../appinfo/info.xml)
+ - [package.json](../package.json)
+4. Update the minimum and maximum nexcloud version support in:
+ - [appinfo/info.xml](../appinfo/info.xml)
+ - [shared workflow CI](../.github/workflows/shared_workflow.yml)
+ - [nighlty ci release branch](../.github/workflows/nighlty-ci-release-branch.yml)
+ - [release CI](../.github/workflows/release.yml)
+5. Add the new release branch in `.tx/backport` to allow transifex commits.
+6. Update `CHANGELOG.md` with the changes and the version to be released.
+7. Update the new release branch in the [nightly CI](../.github/workflows/nighlty-ci-release-branch.yml).
+8. Perform confirmatory testing (Changelogs) - by the OpenProject team.
+9. Perform [smoke testing](testing/smoke_testing.md) - by the OpenProject team.
### b. Patch Release
On the current release branch:
1. Update the patch version in:
- - `appinfo/info.xml`
- - `package.json`
+ - [README.md](../README.md)
+ - [appinfo/info.xml](../appinfo/info.xml)
2. Update `CHANGELOG.md` with the changes and the version to be released.
-3. Perform confirmatory testing (Changelogs) - by the OpenProject team.
-4. Perform [smoke testing](testing/smoke_testing.md) - by the OpenProject team.
+3. Update the minimum and maximum nexcloud version support in:
+ - [appinfo/info.xml](../appinfo/info.xml)
+ - [shared workflow CI](../.github/workflows/shared_workflow.yml)
+ - [nighlty ci release branch](../.github/workflows/nighlty-ci-release-branch.yml)
+ - [release CI](../.github/workflows/release.yml)
+4. Perform confirmatory testing (Changelogs) - by the OpenProject team.
+5. Perform [smoke testing](testing/smoke_testing.md) - by the OpenProject team.
## 2. Publish Release