Skip to content

Commit 2ff87d2

Browse files
Merge pull request #801 from matiasdelellis/nc31
Bump to NC31
2 parents af26a7a + e925451 commit 2ff87d2

File tree

7 files changed

+16
-9
lines changed

7 files changed

+16
-9
lines changed

.github/workflows/coverage.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ jobs:
1313
strategy:
1414
fail-fast: false
1515
matrix:
16-
php-versions: ['8.2']
16+
php-versions: ['8.3']
1717
databases: ['mysql']
18-
server-versions: ['stable29']
18+
server-versions: ['stable31']
1919

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

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
runs-on: ubuntu-latest
2525
strategy:
2626
matrix:
27-
php-versions: ['8.0', '8.1', '8.2', '8.3']
27+
php-versions: ['8.1', '8.2', '8.3', '8.4']
2828
name: php${{ matrix.php-versions }} lint
2929
steps:
3030
- name: Checkout

.github/workflows/phpunit.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ jobs:
1717
strategy:
1818
fail-fast: false
1919
matrix:
20-
php-versions: ['8.1', '8.2', '8.3']
20+
php-versions: ['8.1', '8.2', '8.3', '8.4']
2121
databases: ['sqlite', 'mysql', 'pgsql']
22-
server-versions: ['stable29', 'stable30']
22+
server-versions: ['stable31']
2323

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

.github/workflows/static-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
14-
ocp-version: ['dev-stable29']
14+
ocp-version: ['dev-stable31']
1515
name: Nextcloud ${{ matrix.ocp-version }}
1616
steps:
1717
- name: Checkout

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
# Changelog
22
All notable changes to this project will be documented in this file.
33

4+
## [0.9.70] - 2025-04-22
5+
- Support Nextcloud 31 and deprectate NC29 and NC30. Issue #797
6+
- Support PHP 8.4 and deprecate PHP 8.0 in line with NC31. Issue #795
7+
- Fix clustering on Oracle database. Issue #786
8+
49
## [0.9.60] - 2024-11-19
510
- Enable NC30, and deprecte NC28. Issue #776
611
- Fix review people found does not work on Nextcloud Hub 9 (30.0.0) #779

appinfo/info.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
- **🚀 Build your own thing:** FaceRecognition app is just a basic building block. Through FaceRecognition API, you can build your advanced scenarios - automatically add tags to images, connect contacts and persons, share images from specific person… We want to hear your ideas!
1717
]]>
1818
</description>
19-
<version>0.9.60</version>
19+
<version>0.9.70</version>
2020
<licence>agpl</licence>
2121
<author>Matias De lellis</author>
2222
<author>Branko Kokanovic</author>
@@ -33,8 +33,8 @@
3333
<screenshot>https://matiasdelellis.github.io/img/facerecognition/facerecognition-photos-integration.jpeg</screenshot>
3434
<screenshot>https://matiasdelellis.github.io/img/facerecognition/facerecognition-assign-initial-name.jpeg</screenshot>
3535
<dependencies>
36-
<php min-version="8.0" max-version="8.3" />
37-
<nextcloud min-version="29" max-version="30"/>
36+
<php min-version="8.1" max-version="8.4" />
37+
<nextcloud min-version="31" max-version="31"/>
3838
</dependencies>
3939
<repair-steps>
4040
<uninstall>

lib/Service/SettingsService.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -316,6 +316,8 @@ public function getDefaultUserEnabled (): bool {
316316
}
317317

318318
public function getClusterigBatchSize(): int {
319+
if ($this->config->getSystemValue('dbtype', 'sqlite') === 'oci')
320+
return 1000;
319321
return intval($this->config->getAppValue(Application::APP_NAME, self::CLUSTERING_BATCH_SIZE_KEY, self::DEFAULT_CLUSTERING_BATCH_SIZE));
320322
}
321323

0 commit comments

Comments
 (0)