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
8 changes: 5 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
php-versions: ["8.2", "8.3"]
databases: ["sqlite"]
server-versions:
["stable30", "stable31", "stable32", "stable33"]
["stable30", "stable31", "stable32", "stable33", "stable34"]

name: php${{ matrix.php-versions }}-${{ matrix.databases }}-${{ matrix.server-versions }}

Expand Down Expand Up @@ -78,7 +78,8 @@ jobs:
matrix:
php-versions: ["8.2", "8.3"]
databases: ["mysql"]
server-versions: ["stable30", "stable31", "stable32", "stable33"]
server-versions:
["stable30", "stable31", "stable32", "stable33", "stable34"]

name: php${{ matrix.php-versions }}-${{ matrix.databases }}-${{ matrix.server-versions }}

Expand Down Expand Up @@ -144,7 +145,8 @@ jobs:
matrix:
php-versions: ["8.2", "8.3"]
databases: ["pgsql"]
server-versions: ["stable30", "stable31", "stable32", "stable33"]
server-versions:
["stable30", "stable31", "stable32", "stable33", "stable34"]

name: php${{ matrix.php-versions }}-${{ matrix.databases }}-${{ matrix.server-versions }}

Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
# Changelog

## 3.17.0 - 2026-06-22
### Changed
- Add support for Nextcloud 34

## 3.15.2 - 2026-02-17
### Fixed
- Personal settings now shows proper titles/descriptions for ARD Audiothek subscriptions by resolving both API and website URLs to metadata.
Expand Down
4 changes: 2 additions & 2 deletions appinfo/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<name>GPodder Sync</name>
<summary>replicate basic GPodder.net API</summary>
<description><![CDATA[Expose GPodder API to sync podcast consumer apps like AntennaPod]]></description>
<version>3.16.0</version>
<version>3.17.0</version>
<licence>agpl</licence>
<author mail="thrillfall@disroot.org">Thrillfall</author>
<namespace>GPodderSync</namespace>
Expand All @@ -18,7 +18,7 @@
</documentation>
<dependencies>
<php min-version="8.2"/>
<nextcloud min-version="30" max-version="33"/>
<nextcloud min-version="30" max-version="34"/>
</dependencies>
<repair-steps>
<post-migration>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public function setUp(): void
parent::setUp();
$app = new App("gpoddersync");
$this->container = $app->getContainer();
$this->db = \OC::$server->getDatabaseConnection();
$this->db = \OC::$server->get(\OCP\IDBConnection::class);
}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public function setUp(): void {
parent::setUp();
$app = new App('gpoddersync');
$this->container = $app->getContainer();
$this->db = \OC::$server->getDatabaseConnection();
$this->db = \OC::$server->get(\OCP\IDBConnection::class);
}

/**
Expand Down Expand Up @@ -145,7 +145,7 @@ public function testSubscriptionChangeCreateAction(): void {
$expectedAdd2 = "https://example.org/feed.xml";
$expectedRemove1 = "https://www.example.com/feed.rss";
$expectedRemove2 = "https://www.example.com/feed.xml";

$response = $subscriptionChangeController->create(
[$expectedAdd1, $expectedAdd2],
[$expectedRemove1,$expectedRemove2]
Expand Down
2 changes: 1 addition & 1 deletion tests/Integration/Migration/SubscriptionMigrationTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public function setUp(): void {
parent::setUp();
$app = new App('gpoddersync');
$this->container = $app->getContainer();
$this->db = \OC::$server->getDatabaseConnection();
$this->db = \OC::$server->get(\OCP\IDBConnection::class);
}

/**
Expand Down