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
4 changes: 2 additions & 2 deletions .github/workflows/nighlty-ci-release-2.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# SPDX-FileCopyrightText: 2026 Jankari Tech Pvt. Ltd.
# SPDX-License-Identifier: AGPL-3.0-or-later

name: Nightly CI (Release 2.11)
name: Nightly CI (Release 2.12)

# workflow can be scheduled ONLY from DEFAULT branch
# > This event will only trigger a workflow run if the workflow file is on the default branch.
Expand All @@ -15,7 +15,7 @@ jobs:
uses: ./.github/workflows/nightly-shared.yaml
secrets: inherit
with:
branch: release/2.11
branch: release/2.12
nextcloud_versions: '31 32'
php_versions: '8.2 8.3 8.4'
app_upgrade_nc_versions: '31 32'
4 changes: 2 additions & 2 deletions .github/workflows/nighty-ci-release-3.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# SPDX-FileCopyrightText: 2026 Jankari Tech Pvt. Ltd.
# SPDX-License-Identifier: AGPL-3.0-or-later

name: Nightly CI (Release 3.1)
name: Nightly CI (Release 3.2)

# workflow can be scheduled ONLY from DEFAULT branch
# > This event will only trigger a workflow run if the workflow file is on the default branch.
Expand All @@ -15,7 +15,7 @@ jobs:
uses: ./.github/workflows/nightly-shared.yaml
secrets: inherit
with:
branch: release/3.1
branch: release/3.2
nextcloud_versions: '33 34'
php_versions: '8.3 8.4 8.5'
app_upgrade_nc_versions: '33 34'
3 changes: 1 addition & 2 deletions .tx/backport
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
release/2.11
release/2.12
release/3.1
release/3.2
12 changes: 11 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,17 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

### Added

### Fixed

### Changed
- Make OAuth2 Client class usage compatible with older Nextcloud versions [#1148](https://github.com/nextcloud/integration_openproject/pull/1148)

### Removed

## 3.2.0 - 2026-09-10

### Added

- Show new OpenProject work package display ID if available [#1071](https://github.com/nextcloud/integration_openproject/pull/1071)
- Improve integration setup error messages [#1118](https://github.com/nextcloud/integration_openproject/pull/1118)

Expand All @@ -30,7 +41,6 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

- Update npm dependencies [#1123](https://github.com/nextcloud/integration_openproject/pull/1123)
- Migrate to Vue 3 and @nextcloud/vue v9 [#1152](https://github.com/nextcloud/integration_openproject/pull/1152)
- Make OAuth2 Client class usage compatible with older Nextcloud versions [#1148](https://github.com/nextcloud/integration_openproject/pull/1148)

### Removed

Expand Down
2 changes: 1 addition & 1 deletion appinfo/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ On the OpenProject end, users are able to:
For more information on how to set up and use the OpenProject application, please refer to [integration setup guide](https://www.openproject.org/docs/system-admin-guide/integrations/nextcloud/) for administrators and [the user guide](https://www.openproject.org/docs/user-guide/nextcloud-integration/).
]]>
</description>
<version>3.2.0-dev</version>
<version>3.3.0-dev</version>
<licence>agpl</licence>
<author>Julien Veyssier</author>
<namespace>OpenProject</namespace>
Expand Down
6 changes: 4 additions & 2 deletions docs/release.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,11 @@ On the release branch:
3. Update the version in:
- [appinfo/info.xml](../appinfo/info.xml)
- [package.json](../package.json)
Comment thread
Ashim-Stha marked this conversation as resolved.
- `package-lock.json` (use `npm install` command)
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)
- [nightly 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.
Expand All @@ -37,11 +38,12 @@ On the current release branch:
1. Update the patch version in:
- [appinfo/info.xml](../appinfo/info.xml)
- [package.json](../package.json)
- `package-lock.json` (use `npm install` command)
2. Update `CHANGELOG.md` with the changes and the version to be released.
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)
- [nightly 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.
Expand Down
21 changes: 15 additions & 6 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "integration_openproject",
"version": "3.2.0-dev",
"version": "3.3.0-dev",
"description": "OpenProject Integration",
"directories": {
"test": "tests"
Expand Down
Loading