Skip to content

Commit c19d8da

Browse files
authored
feat: maintenance update, basic object storage support, minor cleanup (#122)
1 parent c8da3ef commit c19d8da

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+9768
-11603
lines changed

.github/workflows/lint.yml

+40-22
Original file line numberDiff line numberDiff line change
@@ -38,16 +38,14 @@ jobs:
3838
xml-schema-file: ./info.xsd
3939

4040
php-lint:
41-
runs-on: ubuntu-latest
41+
runs-on: ubuntu-22.04
42+
name: php-lint
4243
strategy:
4344
matrix:
44-
php-versions: ["7.4", "8.0", "8.1"]
45-
46-
name: php-lint
45+
php-versions: ["8.1", "8.2"]
4746

4847
steps:
49-
- name: Checkout
50-
uses: actions/checkout@v3
48+
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
5149

5250
- name: Set up php ${{ matrix.php-versions }}
5351
uses: shivammathur/setup-php@v2
@@ -59,17 +57,19 @@ jobs:
5957
run: composer run lint
6058

6159
php-cs:
62-
runs-on: ubuntu-latest
60+
runs-on: ubuntu-22.04
6361
name: php-cs
62+
strategy:
63+
matrix:
64+
php-versions: [ "8.1", "8.2" ]
6465

6566
steps:
66-
- name: Checkout
67-
uses: actions/checkout@v3
67+
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
6868

6969
- name: Set up php ${{ matrix.php-versions }}
7070
uses: shivammathur/setup-php@v2
7171
with:
72-
php-version: 7.4
72+
php-version: ${{ matrix.php-versions }}
7373
coverage: none
7474

7575
- name: Install dependencies
@@ -79,32 +79,50 @@ jobs:
7979
run: composer run cs:check || ( echo 'Please run `composer run cs:fix` to format your code' && exit 1 )
8080

8181
php-psalm-analysis:
82-
runs-on: ubuntu-latest
82+
runs-on: ubuntu-22.04
8383
strategy:
8484
matrix:
85-
php-versions: ["7.4", "8.0", "8.1"]
86-
ocp-version: ['v24.0.1']
85+
php-versions: [ "8.1", "8.2" ]
86+
server-versions: [ '30.0.0' ]
8787
name: php-psalm-analysis
8888

8989
steps:
90+
- name: Cache nextcloud server
91+
id: nextcloud_setup
92+
uses: actions/cache@v3
93+
with:
94+
path: nextcloud-${{ matrix.server-versions }}.zip
95+
key: ${{ matrix.server-versions }}
96+
97+
- name: Download nextcloud ${{ matrix.server-versions }}
98+
if: steps.nextcloud_setup.outputs.cache-hit != 'true'
99+
continue-on-error: true
100+
id: server-checkout
101+
run: |
102+
NCVERSION=${{ matrix.server-versions }}
103+
wget --quiet https://download.nextcloud.com/server/releases/latest-$NCVERSION.zip
104+
unzip latest-$NCVERSION.zip
105+
90106
- uses: actions/checkout@v3
107+
91108
- name: Set up php ${{ matrix.php-versions }}
92109
uses: shivammathur/setup-php@v2
93110
with:
94-
php-version: 7.4
111+
php-version: ${{ matrix.php-versions }}
95112
coverage: none
96113

97114
- name: Install dependencies
98115
run: composer i
99116

100-
- name: Install nextcloud/ocp
101-
run: composer require --dev nextcloud/ocp:${{ matrix.ocp-version }}
102-
103117
- name: Run coding standards check
104118
run: composer run psalm
105119

106120
php-security-analysis:
107-
runs-on: ubuntu-latest
121+
runs-on: ubuntu-22.04
122+
permissions:
123+
contents: read
124+
actions: read
125+
security-events: write
108126
name: security analysis
109127
steps:
110128
- uses: actions/checkout@v3
@@ -124,24 +142,24 @@ jobs:
124142
sarif_file: results.sarif
125143

126144
js-eslint:
127-
runs-on: ubuntu-latest
145+
runs-on: ubuntu-22.04
128146
name: eslint
129147

130148
steps:
131-
- uses: actions/checkout@v3
149+
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
132150
- name: Install dependencies
133151
run: npm ci
134152

135153
- name: ESLint
136154
run: npm run lint
137155

138156
stylelint:
139-
runs-on: ubuntu-latest
157+
runs-on: ubuntu-22.04
140158

141159
name: stylelint
142160

143161
steps:
144-
- uses: actions/checkout@v3
162+
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
145163
- name: Install dependencies
146164
run: npm ci
147165

.github/workflows/py_analysis-coverage.yml

+10-10
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ jobs:
4343
strategy:
4444
fail-fast: false
4545
matrix:
46-
nextcloud: [ "25.0.2" ]
47-
php-version: [ "7.4", "8.0" ]
46+
nextcloud: [ "30.0.0" ]
47+
php-version: [ "8.1", "8.2" ]
4848
pgsql-version: [ "13", "15" ]
4949
env:
5050
NC_dbname: nextcloud_abz
@@ -141,8 +141,8 @@ jobs:
141141
strategy:
142142
fail-fast: false
143143
matrix:
144-
nextcloud: [ "25.0.2" ]
145-
php-version: [ "7.4", "8.0" ]
144+
nextcloud: [ "30.0.0" ]
145+
php-version: [ "8.1", "8.2" ]
146146
mysql-version: [ "8" ]
147147

148148
services:
@@ -235,8 +235,8 @@ jobs:
235235
strategy:
236236
fail-fast: false
237237
matrix:
238-
nextcloud: [ "25.0.2" ]
239-
php-version: [ "7.4", "8.0" ]
238+
nextcloud: [ "30.0.0" ]
239+
php-version: [ "8.1", "8.2" ]
240240
mariadb-version: [ "10.3", "10.10" ]
241241

242242
services:
@@ -329,8 +329,8 @@ jobs:
329329
strategy:
330330
fail-fast: false
331331
matrix:
332-
php-version: [ "7.4", "8.0" ]
333-
nextcloud: [ "25.0.2" ]
332+
nextcloud: [ "30.0.0" ]
333+
php-version: [ "8.1", "8.2" ]
334334

335335
steps:
336336
- name: Set up php ${{ matrix.php-version }}
@@ -412,8 +412,8 @@ jobs:
412412
strategy:
413413
fail-fast: false
414414
matrix:
415-
php-version: [ "8.0" ]
416-
nextcloud: [ "25.0.2" ]
415+
nextcloud: [ "30.0.0" ]
416+
php-version: [ "8.1" ]
417417

418418
steps:
419419
- name: Set up php ${{ matrix.php-version }}

.github/workflows/test.yml

+12-12
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
name: Test
22

33
on:
4-
pull_request:
5-
branches:
6-
- main
7-
- dev
8-
paths-ignore:
9-
- l10n/**
10-
push:
11-
branches:
12-
- main
13-
- dev
14-
paths-ignore:
15-
- l10n/**
4+
# pull_request:
5+
# branches:
6+
# - main
7+
# - dev
8+
# paths-ignore:
9+
# - l10n/**
10+
# push:
11+
# branches:
12+
# - main
13+
# - dev
14+
# paths-ignore:
15+
# - l10n/**
1616
workflow_dispatch:
1717

1818
env:

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## [0.2.0 - 2024-10-20]
6+
7+
Maintenance update. Update NC versions to support NC30+ only.
8+
9+
### Added
10+
11+
- Added basic ObjectStorage support (/tmp folder used to execute binary scripts)
12+
513
## [0.1.9 - 2023-12-14]
614

715
Maintenance update.

appinfo/info.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Nextcloud Python API Framework
2222
- [MediaDC](https://apps.nextcloud.com/apps/mediadc) - Nextcloud Media Duplicate Collector app
2323
]]>
2424
</description>
25-
<version>0.1.9</version>
25+
<version>0.2.0</version>
2626
<licence>agpl</licence>
2727
<author mail="[email protected]" homepage="https://github.com/andrey18106">Andrey Borysenko</author>
2828
<author mail="[email protected]" homepage="https://github.com/bigcat88">Alexander Piskun</author>
@@ -37,7 +37,7 @@ Nextcloud Python API Framework
3737
<repository type="git">https://github.com/cloud-py-api/cloud_py_api</repository>
3838
<dependencies>
3939
<php min-version="7.4" min-int-size="64" />
40-
<nextcloud min-version="28" max-version="29" />
40+
<nextcloud min-version="30" max-version="31" />
4141
</dependencies>
4242
<repair-steps>
4343
<post-migration>

composer.json

+14-4
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@
1818
"require-dev": {
1919
"nextcloud/ocp": "dev-master",
2020
"roave/security-advisories": "dev-master",
21-
"psalm/phar": "4.30.0",
21+
"psalm/phar": "^5.15",
2222
"phpunit/phpunit": "^9.5",
23-
"nextcloud/coding-standard": "^1.0",
24-
"friendsofphp/php-cs-fixer": "^3.13",
23+
"nextcloud/coding-standard": "^1.1",
24+
"friendsofphp/php-cs-fixer": "^3.16",
2525
"php-mock/php-mock-phpunit": "^2.6"
2626
},
2727
"scripts": {
@@ -42,7 +42,17 @@
4242
"optimize-autoloader": true,
4343
"classmap-authoritative": true,
4444
"platform": {
45-
"php": "7.4"
45+
"php": "8.1"
46+
}
47+
},
48+
"autoload": {
49+
"psr-4": {
50+
"OCA\\Cloud_Py_API\\": "lib/"
51+
}
52+
},
53+
"autoload-dev": {
54+
"psr-4": {
55+
"OCP\\": "vendor/nextcloud/ocp/OCP"
4656
}
4757
}
4858
}

0 commit comments

Comments
 (0)