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
15 changes: 15 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,21 @@ updates:
cooldown:
default-days: 10
open-pull-requests-limit: 5
- package-ecosystem: npm
directory: "/"
schedule:
interval: weekly
day: saturday
time: "03:00"
timezone: Europe/Paris
cooldown:
default-days: 10
target-branch: stable35
open-pull-requests-limit: 5
ignore:
# do not do breaking changes on stable branches
- dependency-name: "*"
update-types: ["version-update:semver-major", "version-update:semver-minor"]
- package-ecosystem: npm
directory: "/"
schedule:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
name: php-lint
strategy:
matrix:
php-versions: ["8.2"]
php-versions: ["8.3"]

steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
Expand All @@ -60,7 +60,7 @@ jobs:
name: php-cs
strategy:
matrix:
php-versions: ["8.2"]
php-versions: ["8.3"]

steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
Expand All @@ -83,7 +83,7 @@ jobs:
runs-on: ubuntu-22.04
strategy:
matrix:
php-versions: ["8.2"]
php-versions: ["8.3"]
Comment thread
coderabbitai[bot] marked this conversation as resolved.
name: php-psalm-analysis

steps:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/npm-audit-fix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ jobs:
matrix:
branches:
- ${{ github.event.repository.default_branch }}
- 'stable35'
- 'stable34'
- 'stable33'
- 'stable32'
Expand Down
2 changes: 1 addition & 1 deletion AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ npm test # vitest (JS unit tests)
Nextcloud requires this to merge.
- **Commit messages**: concise, one line. Reference issues in the PR description, not the commit subject.
- **Target branch** `main`; release fixes are backported to the relevant `stableXX`.
- **PHP floor 8.2**, so do not use 8.3+ only syntax in `lib/`. Frontend engines: Node `^22`, npm `^10`.
- **PHP floor 8.3**, so do not use 8.4+ only syntax in `lib/`. Frontend engines: Node `^22`, npm `^10`.
- Before pushing: `composer cs:fix && composer psalm && composer test:unit`; if you touched the frontend,
`npm run lint && npm run build`; if you touched controllers/routes, `composer openapi`. Commit the
regenerated `openapi*.json`, any `src/types/openapi/*.ts`, and `js/` assets.
Expand Down
5 changes: 2 additions & 3 deletions appinfo/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Two options are available:

See the [admin documentation](https://docs.nextcloud.com/server/latest/admin_manual/exapps_management/DeployConfigurations.html) for setup instructions.
]]></description>
<version>35.0.0-dev.1</version>
<version>36.0.0-dev.0</version>
<licence>agpl</licence>
<author mail="[email protected]" homepage="https://github.com/andrey18106">Andrey Borysenko</author>
<author mail="[email protected]" homepage="https://github.com/bigcat88">Alexander Piskun</author>
Expand All @@ -57,8 +57,7 @@ See the [admin documentation](https://docs.nextcloud.com/server/latest/admin_man
<screenshot>https://raw.githubusercontent.com/nextcloud/app_api/main/screenshots/app_api_3.png</screenshot>
<screenshot>https://raw.githubusercontent.com/nextcloud/app_api/main/screenshots/app_api_4.png</screenshot>
<dependencies>
<php min-version="8.2"/>
<nextcloud min-version="35" max-version="35"/>
<nextcloud min-version="36" max-version="36"/>
</dependencies>
<background-jobs>
<job>OCA\AppAPI\BackgroundJob\ExAppInitStatusCheckJob</job>
Expand Down
12 changes: 6 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@
}
],
"require-dev": {
"bamarni/composer-bin-plugin": "^1.9",
"friendsofphp/php-cs-fixer": "3.94.1",
"nextcloud/coding-standard": "^1.1",
"nextcloud/ocp": "dev-master",
"roave/security-advisories": "dev-latest",
"psalm/phar": "6.16.1",
"nextcloud/coding-standard": "^1.1",
"friendsofphp/php-cs-fixer": "3.94.1",
"bamarni/composer-bin-plugin": "^1.9"
"roave/security-advisories": "dev-latest"
},
"scripts": {
"lint": "find . -name \\*.php -not -path './vendor/*' -not -path './vendor-bin/*' -print0 | xargs -0 -n1 php -l",
Expand All @@ -48,7 +48,7 @@
"optimize-autoloader": true,
"classmap-authoritative": true,
"platform": {
"php": "8.2"
"php": "8.3"
Comment thread
coderabbitai[bot] marked this conversation as resolved.
},
"sort-packages": true
},
Expand All @@ -70,6 +70,6 @@
},
"require": {
"ext-simplexml": "*",
"php": ">=8.2.0"
"php": ">=8.3.0"
}
}
Loading
Loading