Skip to content

Commit 2d2a26e

Browse files
authored
Merge pull request #4319 from nextcloud/prepare/v3.5.0
Prepare v3.5.0
2 parents 60947b5 + 90fd7eb commit 2d2a26e

32 files changed

Lines changed: 39 additions & 39 deletions

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# Changelog
66
All notable changes to this project will be documented in this file.
77

8-
## [8.5.0] - tbd
8+
## [8.5.0] - 2025-10-03
99
### Fixed
1010
- Archived polls could not get entered anymore
1111
- Public users were not displayed correctly right after registration

lib/Command/Db/CleanMigrations.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
use Doctrine\DBAL\Schema\Schema;
1212
use OCA\Polls\Command\Command;
13-
use OCA\Polls\Db\V4\TableManager;
13+
use OCA\Polls\Db\V5\TableManager;
1414
use OCP\IDBConnection;
1515

1616
/**

lib/Command/Db/CreateIndices.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
use Doctrine\DBAL\Schema\Schema;
1212
use OCA\Polls\Command\Command;
13-
use OCA\Polls\Db\V4\IndexManager;
13+
use OCA\Polls\Db\V5\IndexManager;
1414
use OCP\IDBConnection;
1515

1616
/**

lib/Command/Db/FixDB.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
use Doctrine\DBAL\Schema\Schema;
1212
use OCA\Polls\Command\Command;
13-
use OCA\Polls\Db\V4\TableManager;
13+
use OCA\Polls\Db\V5\TableManager;
1414
use OCP\IDBConnection;
1515

1616
/**

lib/Command/Db/Purge.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
namespace OCA\Polls\Command\Db;
1010

1111
use OCA\Polls\Command\Command;
12-
use OCA\Polls\Db\V4\TableManager;
12+
use OCA\Polls\Db\V5\TableManager;
1313
use OCP\IDBConnection;
1414

1515
/**

lib/Command/Db/Rebuild.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
namespace OCA\Polls\Command\Db;
1010

1111
use Doctrine\DBAL\Schema\Schema;
12-
use OCA\Polls\Db\V4\TableManager;
13-
use OCA\Polls\Db\V4\IndexManager;
12+
use OCA\Polls\Db\V5\TableManager;
13+
use OCA\Polls\Db\V5\IndexManager;
1414
use OCA\Polls\Command\Command;
1515
use OCP\IDBConnection;
1616

lib/Command/Db/RemoveFKConstraints.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
use Doctrine\DBAL\Schema\Schema;
1212
use OCA\Polls\Command\Command;
13-
use OCA\Polls\Db\V4\IndexManager;
13+
use OCA\Polls\Db\V5\IndexManager;
1414
use OCP\IDBConnection;
1515

1616
/**

lib/Command/Db/RemoveOptionalIndices.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
use Doctrine\DBAL\Schema\Schema;
1212
use OCA\Polls\Command\Command;
13-
use OCA\Polls\Db\V4\IndexManager;
13+
use OCA\Polls\Db\V5\IndexManager;
1414
use OCP\IDBConnection;
1515

1616
/**

lib/Command/Db/RemoveUniqueIndices.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
use Doctrine\DBAL\Schema\Schema;
1212
use OCA\Polls\Command\Command;
13-
use OCA\Polls\Db\V4\IndexManager;
13+
use OCA\Polls\Db\V5\IndexManager;
1414
use OCP\IDBConnection;
1515

1616
/**

lib/Command/Db/ResetWatch.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@
1010

1111
use Doctrine\DBAL\Schema\Schema;
1212
use OCA\Polls\Command\Command;
13-
use OCA\Polls\Db\V4\IndexManager;
14-
use OCA\Polls\Db\V4\TableManager;
13+
use OCA\Polls\Db\V5\IndexManager;
14+
use OCA\Polls\Db\V5\TableManager;
1515
use OCA\Polls\Db\Watch;
16-
use OCA\Polls\Migration\V4\TableSchema;
16+
use OCA\Polls\Migration\V5\TableSchema;
1717
use OCP\IDBConnection;
1818

1919
/**

0 commit comments

Comments
 (0)