Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | | Fix(l10n): Update translations from Transifex | Nextcloud bot | 2024-10-28 | 4 | -16/+24 | |
| | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com> | |||||
* | | Fix(l10n): Update translations from Transifex | Nextcloud bot | 2024-10-27 | 2 | -2/+2 | |
| | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com> | |||||
* | | Fix(l10n): Update translations from Transifex | Nextcloud bot | 2024-10-26 | 2 | -6/+6 | |
| | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com> | |||||
* | | feat(textprocessing): factorize taskProcessingCompatibleTaskTypesbackport/48863/stable30 | Julien Veyssier | 2024-10-24 | 1 | -22/+11 | |
| | | | | | | | | Signed-off-by: Julien Veyssier <julien-nc@posteo.net> | |||||
* | | fix(textprocessing): also list types that are available in task processing | Julien Veyssier | 2024-10-24 | 1 | -0/+29 | |
| | | | | | | | | Signed-off-by: Julien Veyssier <julien-nc@posteo.net> | |||||
* | | Fix(l10n): Update translations from Transifex | Nextcloud bot | 2024-10-24 | 4 | -24/+26 | |
| | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com> | |||||
* | | Fix(l10n): Update translations from Transifex | Nextcloud bot | 2024-10-22 | 2 | -2/+6 | |
| | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com> | |||||
* | | Merge pull request #48830 from nextcloud/backport/48603/stable30 | Joas Schilling | 2024-10-22 | 1 | -2/+19 | |
|\ \ | | | | | | | [stable30] fix(logger): Remove more parameters of other methods | |||||
| * | | fix(logger): Remove more parameters of other methodsbackport/48603/stable30 | Joas Schilling | 2024-10-21 | 1 | -2/+19 | |
| | | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com> | |||||
* | | | Fix(l10n): Update translations from Transifex | Nextcloud bot | 2024-10-22 | 2 | -0/+2 | |
|/ / | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com> | |||||
* | | Merge pull request #48763 from ↵ | Joas Schilling | 2024-10-21 | 1 | -5/+5 | |
|\ \ | | | | | | | | | | | | | nextcloud/dependabot/composer/stable30/symfony-6.4 [stable30] build: Bump symfony/* to 6.4 | |||||
| * | | fix(command): Make method compatible with upstream class (requires 3rdparty ↵ | Joas Schilling | 2024-10-21 | 1 | -4/+4 | |
| | | | | | | | | | | | | | | | | | | bump) Signed-off-by: Joas Schilling <coding@schilljs.com> | |||||
| * | | fix(command): Make method compatible with upstream class (backportable) | Joas Schilling | 2024-10-21 | 1 | -3/+3 | |
| | | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com> | |||||
* | | | Merge pull request #48710 from nextcloud/backport/48682/stable30 | Kate | 2024-10-21 | 1 | -0/+1 | |
|\ \ \ | |/ / |/| | | ||||||
| * | | fix(AppConfig): Add external JWT private key to sensitive keysbackport/48682/stable30 | provokateurin | 2024-10-15 | 1 | -0/+1 | |
| | | | | | | | | | | | | Signed-off-by: provokateurin <kate@provokateurin.de> | |||||
* | | | Fix(l10n): Update translations from Transifex | Nextcloud bot | 2024-10-21 | 6 | -10/+80 | |
| | | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com> | |||||
* | | | Fix(l10n): Update translations from Transifex | Nextcloud bot | 2024-10-20 | 2 | -2/+18 | |
| | | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com> | |||||
* | | | Fix(l10n): Update translations from Transifex | Nextcloud bot | 2024-10-19 | 4 | -8/+8 | |
| | | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com> | |||||
* | | | fix(comments): Document supported types and provide psalm typing | Joas Schilling | 2024-10-18 | 2 | -33/+26 | |
| | | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com> | |||||
* | | | feat(comments): Support mentioning emails | Joas Schilling | 2024-10-18 | 1 | -1/+5 | |
| | | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com> | |||||
* | | | Fix(l10n): Update translations from Transifex | Nextcloud bot | 2024-10-18 | 2 | -2/+2 | |
| | | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com> | |||||
* | | | Merge pull request #48703 from nextcloud/backport/48673/stable30 | Ferdinand Thiessen | 2024-10-17 | 1 | -2/+2 | |
|\ \ \ | | | | | | | | | [stable30] fix(share): Return empty string if no label is set | |||||
| * | | | fix(share): Return empty string if no label is set | Ferdinand Thiessen | 2024-10-14 | 1 | -2/+2 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Resolves: https://github.com/nextcloud/server/issues/48629 While the database supports NULL, the typing has always said it only returns *string*. So to not break any apps that might trust the typings we should return `''` if the database is set to `NULL`. Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de> | |||||
* | | | | Merge pull request #48589 from nextcloud/backport/47896/stable30 | Ferdinand Thiessen | 2024-10-17 | 10 | -72/+262 | |
|\ \ \ \ | | | | | | | | | | | [stable30] fix: Make user removal more resilient | |||||
| * | | | | fix: Skip users that still exist in backend | Ferdinand Thiessen | 2024-10-08 | 5 | -11/+30 | |
| | | | | | | | | | | | | | | | | | | | | Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de> | |||||
| * | | | | fix: Make user removal more resilient | Ferdinand Thiessen | 2024-10-08 | 10 | -72/+243 | |
| | |_|/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Currently there is a problem if an exception is thrown in `User::delete`, because at that point the user is already removed from the backend, but not all data is deleted. There is no way to recover from this state, as the user is gone no information is available anymore. This means the data is still available on the server but can not removed by any API anymore. The solution here is to first set a flag and backup the user home, this can be used to recover failed user deletions in a way the delete can be re-tried. Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de> | |||||
* | | | | Fix(l10n): Update translations from Transifex | Nextcloud bot | 2024-10-17 | 4 | -4/+6 | |
| | | | | | | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com> | |||||
* | | | | Fix(l10n): Update translations from Transifex | Nextcloud bot | 2024-10-16 | 2 | -6/+6 | |
| |_|/ |/| | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com> | |||||
* | | | Fix(l10n): Update translations from Transifex | Nextcloud bot | 2024-10-15 | 2 | -6/+6 | |
| |/ |/| | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com> | |||||
* | | Fix(l10n): Update translations from Transifex | Nextcloud bot | 2024-10-14 | 6 | -2/+40 | |
| | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com> | |||||
* | | Fix(l10n): Update translations from Transifex | Nextcloud bot | 2024-10-13 | 6 | -8/+20 | |
| | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com> | |||||
* | | Fix(l10n): Update translations from Transifex | Nextcloud bot | 2024-10-12 | 4 | -4/+24 | |
| | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com> | |||||
* | | Fix(l10n): Update translations from Transifex | Nextcloud bot | 2024-10-11 | 4 | -10/+104 | |
| | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com> | |||||
* | | Fix(l10n): Update translations from Transifex | Nextcloud bot | 2024-10-10 | 2 | -0/+36 | |
|/ | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com> | |||||
* | Merge pull request #48558 from nextcloud/backport/48522/stable30 | Stephan Orbaugh | 2024-10-08 | 1 | -8/+4 | |
|\ | | | | | [stable30] fix(QueryBuilder): Account for aliases in output columns | |||||
| * | fix(QueryBuilder): Account for aliases in output columnsbackport/48522/stable30 | provokateurin | 2024-10-03 | 1 | -8/+4 | |
| | | | | | | | | Signed-off-by: provokateurin <kate@provokateurin.de> | |||||
* | | Fix(l10n): Update translations from Transifex | Nextcloud bot | 2024-10-08 | 2 | -2/+36 | |
| | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com> | |||||
* | | fix(config): Mark more app configs sensitivebackport/48584/stable30 | Joas Schilling | 2024-10-07 | 1 | -0/+9 | |
| | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com> | |||||
* | | Fix(l10n): Update translations from Transifex | Nextcloud bot | 2024-10-06 | 2 | -0/+2 | |
| | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com> | |||||
* | | Fix(l10n): Update translations from Transifex | Nextcloud bot | 2024-10-04 | 2 | -14/+14 | |
|/ | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com> | |||||
* | Fix(l10n): Update translations from Transifex | Nextcloud bot | 2024-10-03 | 6 | -2/+32 | |
| | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com> | |||||
* | Merge pull request #48514 from nextcloud/backport/48513/stable30 | Marcel Klehr | 2024-10-02 | 1 | -1/+1 | |
|\ | | | | | [stable30] fix(TaskProcessing\Manager): Don't provoke PHP notice in setTaskResult | |||||
| * | fix(TaskProcessing\Manager): Don't provoke PHP notice in setTaskResultbackport/48513/stable30 | Marcel Klehr | 2024-10-02 | 1 | -1/+1 | |
| | | | | | | | | Signed-off-by: Marcel Klehr <mklehr@gmx.net> | |||||
* | | Merge pull request #48077 from nextcloud/backport/47852/stable30 | Benjamin Gaussorgues | 2024-10-02 | 7 | -13/+13 | |
|\ \ | ||||||
| * | | fix: misc code fixes around db shardingbackport/47852/stable30 | Robin Appelman | 2024-09-16 | 7 | -13/+13 | |
| | | | | | | | | | | | | Signed-off-by: Robin Appelman <robin@icewind.nl> | |||||
* | | | Merge pull request #48093 from nextcloud/backport/47316/stable30 | Kate | 2024-10-02 | 1 | -1/+1 | |
|\ \ \ | ||||||
| * | | | fix: Prevent crash when refreshing metadata for files without an ownerbackport/47316/stable30 | Vincent FarZz | 2024-10-02 | 1 | -1/+1 | |
| | |/ | |/| | | | | | | | | | | | | | This crash was mostly happening when using external storages and for example the command "occ memories:migrate-google-takeout" Signed-off-by: Vincent FarZz <farcry69@live.fr> | |||||
* / | | fix(theming): Use `AppConfig` for setting background imagebackport/48439/stable30 | Ferdinand Thiessen | 2024-10-02 | 1 | -0/+1 | |
|/ / | | | | | | | Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de> | |||||
* | | Fix(l10n): Update translations from Transifex | Nextcloud bot | 2024-10-02 | 2 | -0/+36 | |
| | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com> | |||||
* | | Merge pull request #48503 from nextcloud/backport/48426/stable30 | Josh | 2024-10-01 | 1 | -1/+2 | |
|\ \ | | | | | | | [stable30] fix(config): Suppress `config.php` fopen error at install time |