Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/shared_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion appinfo/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ For more information on how to set up and use the OpenProject application, pleas
<screenshot>https://github.com/nextcloud/integration_openproject/raw/master/img/screenshot1.png</screenshot>
<screenshot>https://github.com/nextcloud/integration_openproject/raw/master/img/screenshot2.png</screenshot>
<dependencies>
<nextcloud min-version="30" max-version="33" />
<nextcloud min-version="30" max-version="32" />
</dependencies>
<background-jobs>
<job>OCA\OpenProject\BackgroundJob\RemoveExpiredDirectUploadTokens</job>
Expand Down
36 changes: 23 additions & 13 deletions docs/release.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
Loading