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
9 changes: 4 additions & 5 deletions .github/workflows/shared_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ on:
php_versions:
required: false
type: string
default: "8.2 8.3"
default: "8.2 8.3 8.4"

name: CI

Expand Down Expand Up @@ -116,24 +116,23 @@ jobs:

services:
nextcloud:
image: ghcr.io/juliusknorr/nextcloud-dev-php${{ format('{0}{1}', matrix.phpVersionMajor,matrix.phpVersionMinor) }}:20231202-1
image: ghcr.io/juliusknorr/nextcloud-dev-php${{ format('{0}{1}', matrix.phpVersionMajor,matrix.phpVersionMinor) }}:master
env:
SQL: ${{ matrix.database }}
SERVER_BRANCH: ${{ matrix.nextcloudVersion }}
NEXTCLOUD_AUTOINSTALL: "Yes"
NEXTCLOUD_TRUSTED_DOMAINS: nextcloud
VIRTUAL_HOST: "nextcloud"
WITH_REDIS: "YES"
ports:
- 80:80
options: --name=nextcloud
volumes:
- ${{ github.workspace }}:/var/www/html/apps-shared

database-postgres:
database-pgsql:
image: ghcr.io/nextcloud/continuous-integration-postgres-14:latest
env:
POSTGRES_PASSWORD: postgres
POSTGRES_USER: postgres
POSTGRES_DB: nextcloud

database-mysql:
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,15 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

### Fixed

- Fix: Handle projects whose parent project is unknown [#985](https://github.com/nextcloud/integration_openproject/pull/985)
- Fix: Force HTTPS on Nextcloud base URL for OpenProject API requests [#992](https://github.com/nextcloud/integration_openproject/pull/992)

### Added

- [BREAKING] Support Nextcloud 33 [#952](https://github.com/nextcloud/integration_openproject/pull/952)
- Include OpenProject API request as debug log [#991](https://github.com/nextcloud/integration_openproject/pull/991)

### Changed

Expand Down
16 changes: 8 additions & 8 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
"require-dev": {
"phpunit/phpunit": "^9.5",
"phpunit/phpunit": "^9.6.34",
"pact-foundation/pact-php": "^10.1.1",
"friendsofphp/php-cs-fixer": "^3.65.0",
"friendsofphp/php-cs-fixer": "^3.93.1",
"nextcloud/coding-standard": "^1.0",
"behat/behat": "^3.10",
"helmich/phpunit-json-assert": "^3.4",
"vimeo/psalm": "5.23.1",
"guzzlehttp/guzzle": "^7.9",
"behat/gherkin": "v4.12.0",
"php-mock/php-mock-phpunit": "^2.10"
"behat/behat": "^3.29.0",
"helmich/phpunit-json-assert": "^3.5.4",
"vimeo/psalm": "^6.15.0",
"guzzlehttp/guzzle": "^7.10.0",
"behat/gherkin": "v4.16.1",
"php-mock/php-mock-phpunit": "^2.14.0"
},
"scripts": {
"cs:fix": "php-cs-fixer fix",
Expand Down
Loading
Loading