summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Store size in int|float for 32bit supportCôme Chilliet2023-09-192-4/+7
| | | | Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
* Merge pull request #40485 from nextcloud/fix/report-testSimon L2023-09-191-3/+0
|\ | | | | fix(dav): fix report tests
| * fix(dav): fix report testsJohn Molakvoæ (skjnldsv)2023-09-181-3/+0
| | | | | | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
* | Fix(l10n): Update translations from TransifexNextcloud bot2023-09-1932-20/+76
|/ | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Merge pull request #40357 from ↵Andy Scherzinger2023-09-1823-29/+29
|\ | | | | | | | | nextcloud/dependabot/github_actions/actions/checkout-4 chore(deps): Bump actions/checkout from 3 to 4
| * chore(deps): Bump actions/checkout from 3 to 4dependabot[bot]2023-09-1823-29/+29
|/ | | | | | | | | | | | | | | Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3...3df4ab11eba7bda6032a0b82a6bb43b11571feac) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
* Merge pull request #40183 from nextcloud/sftp-fixesRobin Appelman2023-09-183-9/+226
|\ | | | | SFTP improvements
| * sftp psalm fixesRobin Appelman2023-09-182-11/+15
| | | | | | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
| * psalm suppressRobin Appelman2023-09-041-0/+4
| | | | | | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
| * add sftp ci testRobin Appelman2023-09-041-0/+75
| | | | | | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
| * implement fseek for sftp read streamRobin Appelman2023-09-042-3/+30
| | | | | | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
| * more optimized getPermissions/getMetaDataRobin Appelman2023-09-041-0/+44
| | | | | | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
| * sftp optimize file_put_contents, writeStream and copyRobin Appelman2023-09-041-1/+55
| | | | | | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
| * fix error during sftp stream closeRobin Appelman2023-09-041-0/+7
| | | | | | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
| * clear sftp stat cache when opening a write streamRobin Appelman2023-09-041-3/+5
| | | | | | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
* | Merge pull request #40480 from privatemaker/fix/dashboard-icon-apps-darkJohn Molakvoæ2023-09-181-1/+1
|\ \
| * | remove stroke= and style= attributes from dashboard.svgPrivate Maker2023-09-181-1/+1
|/ / | | | | | | Signed-off-by: Private Maker <privatemaker@posteo.net>
* | Merge pull request #40465 from nextcloud/fix/customElementRenderedJohn Molakvoæ2023-09-189-15/+51
|\ \
| * | fix(files): CustomElementRender $el replacement bugJohn Molakvoæ (skjnldsv)2023-09-189-15/+51
|/ / | | | | | | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
* | Merge pull request #40474 from nextcloud/fix/report-davJohn Molakvoæ2023-09-181-1/+0
|\ \
| * | fix(dav): report statusJohn Molakvoæ2023-09-181-1/+0
| | | | | | | | | Signed-off-by: John Molakvoæ <skjnldsv@users.noreply.github.com>
* | | Merge pull request #39818 from ↵Robin Windey2023-09-181-42/+170
|\ \ \ | |/ / |/| | | | | | | | nextcloud/feature/trashbin-restore-improvements#39724 Let `occ trashbin:restore` restore also from groupfolders and add filters
| * | Rename since/until in verbose messageRobin Windey2023-08-181-2/+2
| | | | | | | | | | | | Signed-off-by: GitHub <noreply@github.com>
| * | Code adjustments according to PR reviewRobin Windey2023-08-182-60/+32
| | | | | | | | | | | | | | | | | | | | | | | | | | | * Delete unnecessary function docs * Rename parameters to 'since' and 'until' * Style: use '&&' instead of 'and' * Add types Signed-off-by: GitHub <noreply@github.com>
| * | Make scope parsing more readableRobin Windey2023-08-181-9/+10
| | | | | | | | | | | | Signed-off-by: GitHub <noreply@github.com>
| * | Decouple from groupfolders app & remove PSALM warningsRobin Windey2023-08-182-13/+24
| | | | | | | | | | | | Signed-off-by: GitHub <noreply@github.com>
| * | Let occ trashbin:restore restore also from groupfolders and add additional ↵Robin Windey2023-08-181-29/+173
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | filters * Using the TrashManager allows access to all deleted files * Add 'scope' parameter to choose where to restore from (user or groupfolders) * Add 'restore-from' and 'restore-to' date parameters to filter files to be restored by their deletion date * Add 'dry-run' flag to be able to see which files would be restored and being able to adjust the filter parameters accordingly Signed-off-by: GitHub <noreply@github.com>
* | | Merge pull request #40420 from nextcloud/fix/remove-at-matcher-in-coreCôme Chilliet2023-09-189-106/+92
|\ \ \ | | | | | | | | Remove last calls to deprecated at matcher in tests/Core
| * | | Remove last calls to deprecated at matcher in tests/CoreCôme Chilliet2023-09-189-106/+92
| | | | | | | | | | | | | | | | Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
* | | | Merge pull request #39039 from fsamapoor/refactor_lib_private_logChristoph Wurst2023-09-1810-149/+77
|\ \ \ \ | |/ / / |/| | | Refactors lib/private/Log
| * | | Refactors lib/private/Log.Faraz Samapoor2023-06-2810-149/+77
| | | | | | | | | | | | | | | | | | | | | | | | Mainly using PHP8's constructor property promotion. Signed-off-by: Faraz Samapoor <fsa@adlas.at>
* | | | Merge pull request #40424 from nextcloud/fix/remove-at-matcher-in-dav-2Côme Chilliet2023-09-181-13/+6
|\ \ \ \ | | | | | | | | | | Remove last at matcher call in dav application tests
| * | | | Remove last at matcher call in dav application testsCôme Chilliet2023-09-141-13/+6
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
* | | | | Merge pull request #40419 from nextcloud/fix/remove-at-matcher-in-installer-testCôme Chilliet2023-09-181-13/+20
|\ \ \ \ \ | | | | | | | | | | | | Remove deprecated at matcher in tests/lib/InstallerTest.php
| * | | | | Remove deprecated at matcher in tests/lib/InstallerTest.phpCôme Chilliet2023-09-141-13/+20
| |/ / / / | | | | | | | | | | | | | | | Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
* | | | | Fix(l10n): Update translations from TransifexNextcloud bot2023-09-182-0/+2
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | | | Merge pull request #40358 from ↵Andy Scherzinger2023-09-171-53/+0
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | nextcloud/automated/noid/master-update-psalm-baseline [master] Update psalm-baseline.xml
| * | | | | Update psalm baselinenextcloud-command2023-09-171-53/+0
| | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: GitHub <noreply@github.com>
* | | | | | Merge pull request #40426 from nextcloud/fix/openapi/provisioning_api/quotaJulien Veyssier2023-09-172-1/+5
|\ \ \ \ \ \ | | | | | | | | | | | | | | provisioning_api: Fix quota constants in OpenAPI
| * | | | | | provisioning_api: Fix quota constants in OpenAPIjld31032023-09-142-1/+5
| | |/ / / / | |/| | | | | | | | | | | | | | | | Signed-off-by: jld3103 <jld3103yt@gmail.com>
* | | | | | Merge pull request #40421 from nextcloud/fix/openapi/core/reference-apiJulien Veyssier2023-09-176-73/+71
|\ \ \ \ \ \ | | | | | | | | | | | | | | core: Fix OpenAPI for reference API
| * | | | | | core: Fix OpenAPI for reference APIjld31032023-09-146-73/+71
| |/ / / / / | | | | | | | | | | | | | | | | | | Signed-off-by: jld3103 <jld3103yt@gmail.com>
* | | | | | Merge pull request #38610 from fsamapoor/replace_strpos_calls_in_dav_appChristoph Wurst2023-09-1727-48/+46
|\ \ \ \ \ \ | |_|/ / / / |/| | | | | Refactors "strpos" calls in /apps/dav
| * | | | | Merge branch 'master' into replace_strpos_calls_in_dav_appFaraz Samapoor2023-06-27921-9725/+15960
| |\ \ \ \ \ | | | | | | | | | | | | | | Signed-off-by: Faraz Samapoor <f.samapoor@gmail.com>
| * | | | | | Fixes "PossiblyNullArgument" Psalm warnings.Faraz Samapoor2023-06-124-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Co-authored-by: Thomas Citharel <tcit@tcit.fr> Signed-off-by: Faraz Samapoor <f.samapoor@gmail.com>
| * | | | | | Refactors "strpos" calls in /apps/dav to improve code readability.Faraz Samapoor2023-06-1228-45/+43
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Faraz Samapoor <f.samapoor@gmail.com>
* | | | | | | Fix(l10n): Update translations from TransifexNextcloud bot2023-09-17166-276/+332
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | | | | | Merge pull request #40203 from lhsazevedo/fix/mimetype-40064Simon L2023-09-161-19/+17
|\ \ \ \ \ \ \
| * | | | | | | Wrap mimetype insert and getLastInsertId in a transactionLucas Azevedo2023-09-041-7/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Lucas Azevedo <lhs_azevedo@hotmail.com>
| * | | | | | | fix(mimetype): Remove unnecessary transaction when storing a mime typeLucas Azevedo2023-09-011-26/+22
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes #40064. This could be fixed by adding a rollback and starting a new transaction before the SELECT query, but in this case that would have the same effect as not using one. See https://dev.mysql.com/doc/refman/8.0/en/innodb-autocommit-commit-rollback.html and https://www.postgresql.org/docs/7.1/sql-begin.html#R1-SQL-BEGIN-1 Signed-off-by: Lucas Azevedo <lhs_azevedo@hotmail.com>