Add support for Nextcloud 25
This commit is contained in:
parent
3ca635b8c2
commit
53dbab8ed9
|
@ -18,9 +18,9 @@ jobs:
|
||||||
# do not stop on another job's failure
|
# do not stop on another job's failure
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
php-versions: ['7.4']
|
php-versions: ['7.4', '8.0']
|
||||||
databases: ['sqlite']
|
databases: ['sqlite']
|
||||||
server-versions: ['stable21', 'stable22', 'stable23', 'stable24']
|
server-versions: ['stable21', 'stable22', 'stable23', 'stable24', 'stable25']
|
||||||
|
|
||||||
name: php${{ matrix.php-versions }}-${{ matrix.databases }}-${{ matrix.server-versions }}
|
name: php${{ matrix.php-versions }}-${{ matrix.databases }}-${{ matrix.server-versions }}
|
||||||
|
|
||||||
|
@ -76,9 +76,9 @@ jobs:
|
||||||
# do not stop on another job's failure
|
# do not stop on another job's failure
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
php-versions: ['7.4']
|
php-versions: ['7.4', '8.0']
|
||||||
databases: ['mysql']
|
databases: ['mysql']
|
||||||
server-versions: ['stable21', 'stable22', 'stable23', 'stable24']
|
server-versions: ['stable21', 'stable22', 'stable23', 'stable24', 'stable25']
|
||||||
|
|
||||||
name: php${{ matrix.php-versions }}-${{ matrix.databases }}-${{ matrix.server-versions }}
|
name: php${{ matrix.php-versions }}-${{ matrix.databases }}-${{ matrix.server-versions }}
|
||||||
|
|
||||||
|
@ -143,9 +143,9 @@ jobs:
|
||||||
# do not stop on another job's failure
|
# do not stop on another job's failure
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
php-versions: ['7.4']
|
php-versions: ['7.4', '8.0']
|
||||||
databases: ['pgsql']
|
databases: ['pgsql']
|
||||||
server-versions: ['stable21', 'stable22', 'stable23', 'stable24']
|
server-versions: ['stable21', 'stable22', 'stable23', 'stable24', 'stable25']
|
||||||
|
|
||||||
name: php${{ matrix.php-versions }}-${{ matrix.databases }}-${{ matrix.server-versions }}
|
name: php${{ matrix.php-versions }}-${{ matrix.databases }}-${{ matrix.server-versions }}
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,9 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 3.5.0 - 2022-10-18
|
||||||
|
## Changed
|
||||||
|
- Add support for Nextcloud 25
|
||||||
|
|
||||||
## 3.4.0 - 2022-05-26
|
## 3.4.0 - 2022-05-26
|
||||||
### Fixed
|
### Fixed
|
||||||
- Don't crash if no sync timestamp is passed
|
- Don't crash if no sync timestamp is passed
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<name>GPodder Sync</name>
|
<name>GPodder Sync</name>
|
||||||
<summary>replicate basic GPodder.net API</summary>
|
<summary>replicate basic GPodder.net API</summary>
|
||||||
<description><![CDATA[Expose GPodder API to sync podcast consumer apps like AntennaPod]]></description>
|
<description><![CDATA[Expose GPodder API to sync podcast consumer apps like AntennaPod]]></description>
|
||||||
<version>3.4.0</version>
|
<version>3.5.0</version>
|
||||||
<licence>agpl</licence>
|
<licence>agpl</licence>
|
||||||
<author mail="thrillfall@disroot.org">Thrillfall</author>
|
<author mail="thrillfall@disroot.org">Thrillfall</author>
|
||||||
<namespace>GPodderSync</namespace>
|
<namespace>GPodderSync</namespace>
|
||||||
|
@ -18,7 +18,7 @@
|
||||||
</documentation>
|
</documentation>
|
||||||
<dependencies>
|
<dependencies>
|
||||||
<php min-version="7.4"/>
|
<php min-version="7.4"/>
|
||||||
<nextcloud min-version="20" max-version="24"/>
|
<nextcloud min-version="20" max-version="25"/>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
<repair-steps>
|
<repair-steps>
|
||||||
<post-migration>
|
<post-migration>
|
||||||
|
|
Loading…
Reference in New Issue