Skip to content

Commit

Permalink
Merge pull request #198 from nextcloud/update-main-version
Browse files Browse the repository at this point in the history
feat(deps): Add Nextcloud 30 support
  • Loading branch information
nickvergessen authored Mar 29, 2024
2 parents 6d68e46 + a3b28f2 commit f6069f5
Show file tree
Hide file tree
Showing 6 changed files with 93 additions and 33 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/update-nextcloud-ocp-matrix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
fail-fast: false
matrix:
branches: ['main']
target: ['stable26']
target: ['stable27']

name: update-nextcloud-ocp-${{ matrix.branches }}

Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
# Changelog
All notable changes to this project will be documented in this file.

## 1.19.0 – 2024-03-29
### Changed
- Nextcloud 29 compatibility
- Require Nextcloud 27

## 1.18.0 – 2023-12-01
### Changed
- Nextcloud 28 compatibility
Expand Down
4 changes: 2 additions & 2 deletions appinfo/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<description>This app sends notifications to users when they reached 85, 90 and 95% of their quota (checked once a day).
In addition an email can be sent to the users. The three percentages can be changed in the admin settings.
It is also possible to have a link in the email and the notification for upsell options.</description>
<version>1.18.0</version>
<version>1.19.0</version>
<licence>agpl</licence>
<author>Joas Schilling</author>
<namespace>QuotaWarning</namespace>
Expand All @@ -23,7 +23,7 @@ It is also possible to have a link in the email and the notification for upsell
<screenshot>https://github.com/raw/nextcloud/quota_warning/main/docs/email.png</screenshot>
<screenshot>https://github.com/raw/nextcloud/quota_warning/main/docs/admin-settings.png</screenshot>
<dependencies>
<nextcloud min-version="26" max-version="28" />
<nextcloud min-version="27" max-version="29" />
</dependencies>
<repair-steps>
<install>
Expand Down
7 changes: 4 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,16 @@
"cs:check": "php-cs-fixer fix --dry-run --diff",
"cs:fix": "php-cs-fixer fix",
"psalm": "psalm.phar --threads=1",
"psalm:dev": "psalm.phar --no-cache --threads=$(nproc)",
"psalm:update-baseline": "psalm.phar --threads=1 --update-baseline --set-baseline=tests/psalm-baseline.xml",
"psalm:clear": "psalm.phar --clear-cache && psalm.phar --clear-global-cache",
"psalm:fix": "psalm.phar --alter --issues=InvalidReturnType,InvalidNullableReturnType,MissingParamType,InvalidFalsableReturnType",
"test:unit": "vendor/bin/phpunit -c tests/phpunit.xml"
},
"require-dev": {
"nextcloud/coding-standard": "^1.1.1",
"nextcloud/ocp": "dev-stable26",
"nextcloud/coding-standard": "^1.2",
"nextcloud/ocp": "dev-stable27",
"phpunit/phpunit": "^9.6",
"psalm/phar": "^5.16.0"
"psalm/phar": "^5.23"
}
}
98 changes: 76 additions & 22 deletions composer.lock

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

10 changes: 5 additions & 5 deletions tests/psalm-baseline.xml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<files psalm-version="5.16.0@2897ba636551a8cb61601cc26f6ccfbba6c36591">
<files psalm-version="5.23.1@8471a896ccea3526b26d082f4461eeea467f10a4">
<file src="lib/CheckQuota.php">
<UndefinedClass>
<code>\OC_Util</code>
<code><![CDATA[\OC_Util]]></code>
</UndefinedClass>
<UndefinedInterfaceMethod>
<code>setHtmlBody</code>
<code>setPlainBody</code>
<code>setSubject</code>
<code><![CDATA[setHtmlBody]]></code>
<code><![CDATA[setPlainBody]]></code>
<code><![CDATA[setSubject]]></code>
</UndefinedInterfaceMethod>
</file>
</files>

0 comments on commit f6069f5

Please sign in to comment.