Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Require nextcloud 20 for new development #794

Merged
merged 4 commits into from
Sep 25, 2020
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/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ jobs:
- 5432:5432 # Maps tcp port 5432 on service container to the host
strategy:
matrix:
php-versions: ['7.2', '7.3', '7.4']
nextcloud: ['17', '18', '19']
php-versions: ['7.3', '7.4']
nextcloud: ['20']
database: ['sqlite', 'pgsql', 'mysql']
experimental: [false]
include:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/php-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
strategy:
matrix:
php-versions: ['7.4']
nextcloud: ['19']
nextcloud: ['20']
database: ['sqlite']
experimental: [false]
steps:
Expand Down
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ php:
env:
global:
- MOZ_HEADLESS=1
- CORE_BRANCH=stable19 DB=sqlite
- CORE_BRANCH=stable20 DB=sqlite

before_install:
- make
Expand Down
3 changes: 2 additions & 1 deletion AUTHORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
* [Sean Molenaar](mailto:[email protected])
* [Jan-Christoph Borchardt](mailto:[email protected])
* [Daniel Schaal](mailto:[email protected])
* [Davide Saurino](mailto:[email protected])
* [Sean Molenaar](mailto:[email protected])
* [Davide Saurino](mailto:[email protected])
* [raghunayyar](mailto:[email protected])
* [bastei](mailto:[email protected])
* [Bernhard Posselt](mailto:[email protected])
Expand Down Expand Up @@ -81,6 +81,7 @@
* [DriverXX](mailto:[email protected])
* [DriverXX](mailto:[email protected])
* [DudleyDursley](mailto:[email protected])
* [Felix](mailto:[email protected])
* [Felix](mailto:[email protected])
* [Felix Bartels](mailto:[email protected])
* [Florian Hülsmann](mailto:[email protected])
Expand Down
3 changes: 2 additions & 1 deletion appinfo/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Before you update to a new version, [check the changelog](https://github.com/nex
<lib>SimpleXML</lib>
<lib>iconv</lib>
<owncloud max-version="0" min-version="0"/>
<nextcloud min-version="16" max-version="20"/>
<nextcloud min-version="20" max-version="21"/>
</dependencies>

<background-jobs>
Expand All @@ -47,6 +47,7 @@ Before you update to a new version, [check the changelog](https://github.com/nex
<repair-steps>
<post-migration>
<step>OCA\News\Migration\MigrateStatusFlags</step>
<step>OCA\News\Migration\MigrateConfig</step>
</post-migration>
</repair-steps>

Expand Down
12 changes: 6 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,22 +42,22 @@
},
"require": {
"php": "^7.2",
"ezyang/htmlpurifier": "4.12.0",
"ezyang/htmlpurifier": "^4.13.0",
"pear/net_url2": "2.2.2",
"riimu/kit-pathjoin": "1.2.0",
"debril/feed-io": "^4.5",
"debril/feed-io": "^v4.7.8",
"arthurhoaro/favicon": "^1.2",
"ext-json": "*",
"ext-simplexml": "*",
"ext-libxml": "*",
"andreskrey/readability.php": "^2.1"
},
"require-dev": {
"phpunit/phpunit": "^7.5",
"squizlabs/php_codesniffer": "^3.4",
"phpunit/phpunit": "9.2.6",
"squizlabs/php_codesniffer": "^3.5.6",
"guzzlehttp/guzzle": "^6.3",
"symfony/service-contracts": "1.1.8",
"phpstan/phpstan": "^0.12.38"
"symfony/service-contracts": "2.2.0",
"phpstan/phpstan": "^0.12.43"
},
"replace": {
"guzzlehttp/guzzle": "*",
Expand Down
Loading