summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #37534 from Rsplwe/masterSimon L2023-04-181-7/+18
|\ | | | | Adjust the value of the "max-parts" parameter of the object storage 'ListPart' interface to 1000
| * Update lib/private/Files/ObjectStore/S3.phpRsplwe2023-04-031-1/+1
| | | | | | | | Co-authored-by: Côme Chilliet <91878298+come-nc@users.noreply.github.com> Signed-off-by: Rsplwe <i@rsplwe.com>
| * s3: get remaining truncation partRsplwe2023-04-011-7/+18
| | | | | | Signed-off-by: Rsplwe <i@rsplwe.com>
| * Adjust the value of 'maxparts' to 1000Rsplwe2023-04-011-1/+1
| | | | | | Signed-off-by: Rsplwe <i@rsplwe.com>
* | Merge pull request #37324 from nextcloud/fix/mapper-exceptionSimon L2023-04-181-1/+1
|\ \ | | | | | | Allow to catch `IMapperException` by implementing `Throwable`
| * | fix: Allow to catch `IMapperException` by implementing `Throwable`Ferdinand Thiessen2023-04-171-1/+1
| | | | | | | | | | | | Signed-off-by: Ferdinand Thiessen <rpm@fthiessen.de>
* | | Merge pull request #37645 from nextcloud/fix/improve-imip-emailsSimon L2023-04-172-3/+35
|\ \ \ | | | | | | | | fix(dav): Parse sender PARTSTAT in REPLYs
| * | | fix(dav): Parse sender PARTSTAT in REPLYsAnna Larch2023-04-132-3/+35
| | | | | | | | | | | | | | | | Signed-off-by: Anna Larch <anna@nextcloud.com>
* | | | Merge pull request #37676 from nextcloud/fix/auth/atomic-password-db-statementsSimon L2023-04-171-51/+55
|\ \ \ \ | | | | | | | | | | fix(auth): Run token bulk update statements in atomic transaction
| * | | | fix(auth): Run token statements in atomic transactionChristoph Wurst2023-04-121-51/+55
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | All or nothing Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* | | | | Merge pull request #32314 from nextcloud/object-mkdir-loggingSimon L2023-04-171-0/+3
|\ \ \ \ \ | | | | | | | | | | | | additional logging when mkdir fails for object storage
| * | | | | additional logging when mkdir fails for object storageRobin Appelman2023-04-051-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
* | | | | | Merge pull request #35129 from Glandos/previewperf2Simon L2023-04-172-105/+54
|\ \ \ \ \ \ | | | | | | | | | | | | | | [Performance] Reuse preview directory listing
| * | | | | | try to make linters happyGlandos2023-04-171-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Glandos <bugs-github@antipoul.fr>
| * | | | | | gather code from small and max previewGlandos2023-04-171-90/+36
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | use directory listing in both functions to gain 25% speed on run where every preview already exist. Signed-off-by: Glandos <bugs-github@antipoul.fr>
| * | | | | | adapt test to new workflowGlandos2023-04-171-12/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | getDirectoryListing should return all files getFile is not called anymore Signed-off-by: Glandos <bugs-github@antipoul.fr>
| * | | | | | Revert 0e49b40Glandos2023-04-171-3/+0
| | | | | | | | | | | | | | | | | | | | | Signed-off-by: Glandos <bugs-github@antipoul.fr>
| * | | | | | improve parameter docGlandos2023-04-171-1/+1
| | | | | | | | | | | | | | | | | | | | | Signed-off-by: Glandos <bugs-github@antipoul.fr>
| * | | | | | Ensure max preview image is not nullGlandos2023-04-171-0/+3
| | | | | | | | | | | | | | | | | | | | | Signed-off-by: Glandos <bugs-github@antipoul.fr>
| * | | | | | php-cs-fixGlandos2023-04-171-1/+1
| | | | | | | | | | | | | | | | | | | | | Signed-off-by: Glandos <bugs-github@antipoul.fr>
| * | | | | | List preview directory only onceGlandos2023-04-171-5/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | getCachedPreview used to call `getFile`, and this calls `getDirectoryListing` (or underlying function that list directory) to find the file. This was done for every preview spec. Now, this is done only once at the beginning of the loop, and the array is just iterated when needed to find the correct entry. Signed-off-by: Glandos <bugs-github@antipoul.fr>
* | | | | | | Merge pull request #31286 from ↵Simon L2023-04-171-0/+1
|\ \ \ \ \ \ \ | |_|_|_|_|/ / |/| | | | | | | | | | | | | | | | | | | | rotdrop/bugfix/dont-start-session-when-session-is-already-open Don't call session_start() when PHP session is still or already open.
| * | | | | | Don't call session_start() when PHP session is still or already open.Claus-Justus Heine2023-04-171-0/+1
| |/ / / / / | | | | | | | | | | | | | | | | | | Signed-off-by: Claus-Justus Heine <himself@claus-justus-heine.de>
* | | | | | Merge pull request #37724 from nextcloud/fix/encryption-signature-check-logicChristoph Wurst2023-04-171-4/+6
|\ \ \ \ \ \ | | | | | | | | | | | | | | Cleanup signature checking logic in encryption
| * | | | | | Cleanup signature checking logic in encryptionjld31032023-04-141-4/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: jld3103 <jld3103yt@gmail.com>
* | | | | | | Merge pull request #35744 from nextcloud/mimeloader-transactionSimon L2023-04-171-18/+41
|\ \ \ \ \ \ \ | |_|/ / / / / |/| | | | | | Put Mimeloader insertion and read in the same transaction
| * | | | | | Put Mimeloader insertion and read in the same transactionThomas Citharel2023-04-171-18/+41
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Thomas Citharel <tcit@tcit.fr>
* | | | | | | Merge pull request #36217 from ↵Simon L2023-04-174-10/+15
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | nextcloud/handle-push-notification-with-no-calendar-name Handle reminders where calendar name is null
| * | | | | | | Handle reminders where calendar name is nullThomas Citharel2023-01-184-10/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This adds an interface change, but that's not a public API. We're handling this in the providers and not in ReminderService because the fallback is translated with the user's language. Signed-off-by: Thomas Citharel <tcit@tcit.fr>
* | | | | | | | Merge pull request #37764 from ↵Louis2023-04-171-1/+1
|\ \ \ \ \ \ \ \ | |_|/ / / / / / |/| | | | | | | | | | | | | | | | | | | | | | | nextcloud/artonge/fix/disable_versions_feature_s3_versioning Really disable versions features when S3 versioning is enabled
| * | | | | | | Really disable versions features when S3 versioning is enabledLouis Chemineau2023-04-171-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Louis Chemineau <louis@chmn.me>
* | | | | | | | Merge pull request #36845 from Murena-SAS/reminder-iterator-exceptionSimon L2023-04-171-1/+8
|\ \ \ \ \ \ \ \ | |/ / / / / / / |/| | | | | | | Fix max instances exception in get vevent call
| * | | | | | | Remove reminder if max instances exceededAkhil2023-02-271-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Akhil <akhil@e.email>
| * | | | | | | Update apps/dav/lib/CalDAV/Reminder/ReminderService.phpAkhil Potukuchi2023-02-271-2/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Co-authored-by: Christoph Wurst <ChristophWurst@users.noreply.github.com> Signed-off-by: Akhil Potukuchi <akhil.potukuchi@gmail.com>
| * | | | | | | Fix max instances exception for get vevent callAkhil2023-02-261-1/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Akhil <akhil@e.email>
* | | | | | | | Merge pull request #37735 from ↵Joas Schilling2023-04-171-0/+16
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | nextcloud/techdebt/ref-37476/ignore-excluded-dirs-on-image-optimization chore(assets): Ignore git-ignored directories on image optimization
| * | | | | | | | chore(assets): Ignore git-ignored directories on image optimizationJoas Schilling2023-04-141-0/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* | | | | | | | | Fix(l10n): Update translations from TransifexNextcloud bot2023-04-1716-0/+118
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | | | | | | | Fix(l10n): Update translations from TransifexNextcloud bot2023-04-1632-6/+136
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | | | | | | | Merge pull request #37752 from ↵John Molakvoæ2023-04-151-8/+0
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | nextcloud/automated/noid/master-update-psalm-baseline [master] Update psalm-baseline.xml
| * | | | | | | | | Update psalm baselinenextcloud-command2023-04-151-8/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: GitHub <noreply@github.com>
* | | | | | | | | | Merge pull request #37750 from nextcloud/dependabot/npm_and_yarn/webpack-5.79.0dependabot[bot]2023-04-1565-169/+241
|\ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | Bump @nextcloud/browser-storage from 0.1.1 to 0.2.0dependabot[bot]2023-04-154-42/+91
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bumps [@nextcloud/browser-storage](https://github.com/nextcloud/nextcloud-browser-storage) from 0.1.1 to 0.2.0. - [Release notes](https://github.com/nextcloud/nextcloud-browser-storage/releases) - [Changelog](https://github.com/nextcloud/nextcloud-browser-storage/blob/master/CHANGELOG.md) - [Commits](https://github.com/nextcloud/nextcloud-browser-storage/compare/v0.1.1...v0.2.0) --- updated-dependencies: - dependency-name: "@nextcloud/browser-storage" dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
| * | | | | | | | | | bump webpack from 5.78.0 to 5.79.0dependabot[bot]2023-04-1565-130/+153
|/ / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --- updated-dependencies: - dependency-name: webpack dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
* | | | | | | | | | Merge pull request #37400 from ↵John Molakvoæ2023-04-157-11/+38
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | nextcloud/dependabot/npm_and_yarn/nextcloud/calendar-availability-vue-0.6.0-alpha1
| * | | | | | | | | | chore(deps): Bump @nextcloud/calendar-availability-vuedependabot[bot]2023-04-157-11/+38
|/ / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bumps [@nextcloud/calendar-availability-vue](https://github.com/nextcloud/calendar-availability-vue) from 0.5.0-rc2 to 0.6.0-alpha1. - [Release notes](https://github.com/nextcloud/calendar-availability-vue/releases) - [Changelog](https://github.com/nextcloud/calendar-availability-vue/blob/main/CHANGELOG.md) - [Commits](https://github.com/nextcloud/calendar-availability-vue/compare/v0.5.0-rc2...v0.6.0-alpha1) --- updated-dependencies: - dependency-name: "@nextcloud/calendar-availability-vue" dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
* | | | | | | | | | Merge pull request #37751 from ↵John Molakvoæ2023-04-152-58/+398
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | nextcloud/dependabot/npm_and_yarn/typescript-eslint/eslint-plugin-5.58.0 bump @typescript-eslint/eslint-plugin from 5.45.0 to 5.58.0
| * | | | | | | | | | bump @typescript-eslint/eslint-plugin from 5.45.0 to 5.58.0dependabot[bot]2023-04-152-58/+398
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --- updated-dependencies: - dependency-name: "@typescript-eslint/eslint-plugin" dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
* | | | | | | | | | | Merge pull request #37749 from ↵John Molakvoæ2023-04-151-6/+6
|\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | nextcloud/dependabot/composer/build/integration/phpunit/phpunit-9.6.7 chore(deps-dev): Bump phpunit/phpunit from 9.6.6 to 9.6.7 in /build/integration
| * | | | | | | | | | | chore(deps-dev): Bump phpunit/phpunit in /build/integrationdependabot[bot]2023-04-151-6/+6
| |/ / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bumps [phpunit/phpunit](https://github.com/sebastianbergmann/phpunit) from 9.6.6 to 9.6.7. - [Release notes](https://github.com/sebastianbergmann/phpunit/releases) - [Changelog](https://github.com/sebastianbergmann/phpunit/blob/9.6.7/ChangeLog-9.6.md) - [Commits](https://github.com/sebastianbergmann/phpunit/compare/9.6.6...9.6.7) --- updated-dependencies: - dependency-name: phpunit/phpunit dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>