]>
source.dussan.org Git - nextcloud-server.git/log
provokateurin [Tue, 8 Oct 2024 09:12:01 +0000 (11:12 +0200)]
fix(UserTrait): Fix backend initialization
Signed-off-by: provokateurin <kate@provokateurin.de>
Ferdinand Thiessen [Wed, 11 Sep 2024 17:33:53 +0000 (19:33 +0200)]
fix: Skip users that still exist in backend
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
Ferdinand Thiessen [Tue, 10 Sep 2024 20:50:16 +0000 (22:50 +0200)]
fix: Make user removal more resilient
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>
Côme Chilliet [Tue, 15 Oct 2024 12:37:25 +0000 (14:37 +0200)]
Merge pull request #48617 from nextcloud/backport/48597/stable29
[stable29] Fix email share transfer accross storages
Kate [Tue, 15 Oct 2024 11:32:33 +0000 (13:32 +0200)]
Merge pull request #48631 from nextcloud/backport/dav-get
Nextcloud bot [Tue, 15 Oct 2024 00:20:27 +0000 (00:20 +0000)]
Fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
Git'Fellow [Mon, 14 Oct 2024 14:42:05 +0000 (16:42 +0200)]
Merge pull request #48693 from nextcloud/backport/48689/stable29
[stable29] fix(locking): Accept mixed as value on setTTL
Git'Fellow [Mon, 14 Oct 2024 10:17:27 +0000 (12:17 +0200)]
fix(locking): Accept mixed as value on setTTL
Signed-off-by: Git'Fellow <12234510+solracsf@users.noreply.github.com>
Nextcloud bot [Mon, 14 Oct 2024 00:20:15 +0000 (00:20 +0000)]
Fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
Nextcloud bot [Sun, 13 Oct 2024 00:22:09 +0000 (00:22 +0000)]
Fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
Nextcloud bot [Sat, 12 Oct 2024 00:20:27 +0000 (00:20 +0000)]
Fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
Ferdinand Thiessen [Fri, 11 Oct 2024 14:11:25 +0000 (16:11 +0200)]
Merge pull request #48457 from nextcloud/backport/47910/stable29
[stable29] fix(files): Add more visual move / copy notification
nextcloud-command [Fri, 11 Oct 2024 12:35:13 +0000 (12:35 +0000)]
chore(assets): Recompile assets
Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
Ferdinand Thiessen [Wed, 11 Sep 2024 20:29:31 +0000 (22:29 +0200)]
fix(files): Add more visual move / copy notification
* Resolves: https://github.com/nextcloud/server/issues/46645
This adds loading toast notification while the move operation is running.
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
Ferdinand Thiessen [Fri, 11 Oct 2024 11:49:14 +0000 (13:49 +0200)]
Merge pull request #47943 from nextcloud/backport/47883/stable29
[stable29] fix(setup-checks): Ensure URL with webroot works
Ferdinand Thiessen [Thu, 12 Sep 2024 18:44:59 +0000 (20:44 +0200)]
refactor(settings): `CheckServerResponseTrait` always expect absolute path
Co-authored-by: Ferdinand Thiessen <opensource@fthiessen.de>
Co-authored-by: Côme Chilliet <91878298+come-nc@users.noreply.github.com>
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
Ferdinand Thiessen [Tue, 10 Sep 2024 23:14:56 +0000 (01:14 +0200)]
fix(setup-checks): Ensure URL with webroot works
We basically mock the way `URLGenerator::getAbsoluteURL` works,
so we must make sure that the URL might already contain the webroot.
Because `baseURL` and `cliURL` also contain the webroot we need to remove
the webroot from the URL first.
Co-authored-by: Ferdinand Thiessen <opensource@fthiessen.de>
Co-authored-by: Daniel <mail@danielkesselberg.de>
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
Julius Knorr [Fri, 11 Oct 2024 09:55:13 +0000 (11:55 +0200)]
Merge pull request #48634 from nextcloud/backport/48623/stable29
[stable29] fix: Allow overriding shouldApplyQuota check from child classes
Nextcloud bot [Fri, 11 Oct 2024 00:25:23 +0000 (00:25 +0000)]
Fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
Arthur Schiwon [Thu, 10 Oct 2024 09:12:54 +0000 (11:12 +0200)]
Merge pull request #48642 from nextcloud/release/29.0.8
29.0.8
Arthur Schiwon [Thu, 10 Oct 2024 07:47:43 +0000 (09:47 +0200)]
build(hub): 29.0.8
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
Nextcloud bot [Thu, 10 Oct 2024 00:20:30 +0000 (00:20 +0000)]
Fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
Julius Knorr [Wed, 9 Oct 2024 06:25:30 +0000 (08:25 +0200)]
fix: Allow overriding shouldApplyQuota check from child classes
Signed-off-by: Julius Knorr <jus@bitgrid.net>
Ferdinand Thiessen [Tue, 8 Oct 2024 21:51:38 +0000 (23:51 +0200)]
fix(dav): Public WebDAV endpoint should allow `GET` requests
`GET` should be allowed even without Ajax header to allow downloading files,
or show files in the viewer. All other requests could be guarded, but this should not.
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
Nextcloud bot [Wed, 9 Oct 2024 00:20:26 +0000 (00:20 +0000)]
Fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
Côme Chilliet [Tue, 8 Oct 2024 14:53:51 +0000 (16:53 +0200)]
fix(tests): Fix sharebymail tests
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Côme Chilliet [Mon, 7 Oct 2024 13:36:53 +0000 (15:36 +0200)]
fix(sharebymail): Fix share update when node id changed
This fixes transfering an email share from a user to another one when using
objectstore as primary storage.
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Côme Chilliet [Mon, 7 Oct 2024 13:35:47 +0000 (15:35 +0200)]
feat(transfer-ownership): Improve verbose output of command
Makes debbuging way easier
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Nextcloud bot [Tue, 8 Oct 2024 00:20:22 +0000 (00:20 +0000)]
Fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
Joas Schilling [Mon, 7 Oct 2024 11:01:53 +0000 (13:01 +0200)]
Merge pull request #48585 from nextcloud/backport/48584/stable29
[stable29] fix(config): Mark more app configs sensitive
Joas Schilling [Mon, 7 Oct 2024 08:58:03 +0000 (10:58 +0200)]
fix(config): Mark more app configs sensitive
Signed-off-by: Joas Schilling <coding@schilljs.com>
Nextcloud bot [Mon, 7 Oct 2024 00:20:10 +0000 (00:20 +0000)]
Fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
Nextcloud bot [Sun, 6 Oct 2024 00:21:34 +0000 (00:21 +0000)]
Fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
Nextcloud bot [Sat, 5 Oct 2024 00:20:30 +0000 (00:20 +0000)]
Fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
Nextcloud bot [Fri, 4 Oct 2024 00:20:19 +0000 (00:20 +0000)]
Fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
Nextcloud bot [Thu, 3 Oct 2024 00:20:51 +0000 (00:20 +0000)]
Fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
Benjamin Gaussorgues [Wed, 2 Oct 2024 13:23:11 +0000 (15:23 +0200)]
Merge pull request #48499 from nextcloud/release/29.0.8_rc1
29.0.8 RC1
Benjamin Gaussorgues [Wed, 2 Oct 2024 12:16:02 +0000 (14:16 +0200)]
Merge pull request #48507 from nextcloud/backport/48451/stable29
Anna [Wed, 2 Oct 2024 11:37:14 +0000 (13:37 +0200)]
Merge pull request #48509 from nextcloud/fix/stable29/webcal-subscription-jobs-middleware
[stable29] fix(caldav): add missing handlers
Sebastian Krupinski [Wed, 2 Oct 2024 09:30:41 +0000 (05:30 -0400)]
Merge pull request #47790 from nextcloud/backport/45098/stable29
[stable29] fix(caldav): Do not load IMipPlugin before user auth and session is c…
Kate [Wed, 2 Oct 2024 08:14:29 +0000 (10:14 +0200)]
Merge pull request #48055 from nextcloud/backport/48043/stable29
Kate [Wed, 2 Oct 2024 08:12:15 +0000 (10:12 +0200)]
Merge pull request #48075 from nextcloud/backport/48050/stable29
Kate [Wed, 2 Oct 2024 08:08:22 +0000 (10:08 +0200)]
Merge pull request #48092 from nextcloud/backport/47316/stable29
Anna Larch [Sun, 15 Sep 2024 16:43:45 +0000 (18:43 +0200)]
test(dav): imip service test expects integers for last occurence
Signed-off-by: Anna Larch <anna@nextcloud.com>
Nextcloud bot [Wed, 2 Oct 2024 00:20:12 +0000 (00:20 +0000)]
Fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
Anna Larch [Tue, 1 Oct 2024 19:54:04 +0000 (21:54 +0200)]
fix(caldav): add missing handlers
Signed-off-by: Anna Larch <anna@nextcloud.com>
Daniel Kesselberg [Fri, 27 Sep 2024 17:16:59 +0000 (19:16 +0200)]
fix: make federation address book sync work with allow_local_remote_servers = false
Client.preventLocalAddress expects an absolute URL, which means the base_uri option cannot be used.
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
Josh [Tue, 1 Oct 2024 18:11:23 +0000 (14:11 -0400)]
Merge pull request #48502 from nextcloud/backport/48426/stable29
[stable29] fix(config): Suppress `config.php` fopen error at install time
Arthur Schiwon [Tue, 1 Oct 2024 17:53:55 +0000 (19:53 +0200)]
Merge pull request #48491 from nextcloud/backport/48484/stable29
[stable29] fix(Auth): ignore missing token when trying to set password-unconfirm…
Josh [Fri, 27 Sep 2024 21:28:14 +0000 (17:28 -0400)]
fix(config): Suppress error at install time
Signed-off-by: Josh <josh.t.richards@gmail.com>
Benjamin Gaussorgues [Tue, 1 Oct 2024 15:45:48 +0000 (17:45 +0200)]
build(hub): 29.0.8 RC1
Signed-off-by: Benjamin Gaussorgues <benjamin.gaussorgues@nextcloud.com>
Arthur Schiwon [Mon, 30 Sep 2024 08:06:58 +0000 (10:06 +0200)]
fix(Auth): ignore missing token when trying to set password-unconfirmable
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
Nextcloud bot [Tue, 1 Oct 2024 00:20:45 +0000 (00:20 +0000)]
Fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
Kate [Mon, 30 Sep 2024 16:10:24 +0000 (18:10 +0200)]
Merge pull request #48449 from nextcloud/backport/48437/stable29
Maksim Sukharev [Sat, 28 Sep 2024 16:46:16 +0000 (18:46 +0200)]
fix: correctly count disabled users for subadmins
Signed-off-by: Maksim Sukharev <antreesy.web@gmail.com>
Julien Veyssier [Mon, 30 Sep 2024 09:44:17 +0000 (11:44 +0200)]
Merge pull request #48417 from nextcloud/fix/stable29/numerical-userid-file-item-display
[stable29] Fix file item display for users with numerical user IDs
nextcloud-command [Mon, 30 Sep 2024 09:00:26 +0000 (09:00 +0000)]
chore(assets): Recompile assets
Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
Julien Veyssier [Fri, 27 Sep 2024 09:52:53 +0000 (11:52 +0200)]
fix(filesharing): file appear as shared by their owner if it has a numerical user ID
Signed-off-by: Julien Veyssier <julien-nc@posteo.net>
Kate [Mon, 30 Sep 2024 08:18:37 +0000 (10:18 +0200)]
Merge pull request #48444 from nextcloud/backport/48307/stable29
Richard Steinmetz [Tue, 24 Sep 2024 08:33:07 +0000 (10:33 +0200)]
fix: gracefully parse non-standard trusted certificates
Signed-off-by: Richard Steinmetz <richard@steinmetz.cloud>
Nextcloud bot [Sun, 29 Sep 2024 00:28:11 +0000 (00:28 +0000)]
Fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
Nextcloud bot [Sat, 28 Sep 2024 00:20:22 +0000 (00:20 +0000)]
Fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
Joas Schilling [Fri, 27 Sep 2024 06:29:16 +0000 (08:29 +0200)]
Merge pull request #48393 from nextcloud/backport/48375/stable29
[stable29] Skip future shipped apps from updatenotification check
Nextcloud bot [Fri, 27 Sep 2024 00:20:49 +0000 (00:20 +0000)]
Fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
Kate [Thu, 26 Sep 2024 17:11:36 +0000 (19:11 +0200)]
Merge pull request #48400 from nextcloud/backport/48366/stable29
Louis [Thu, 26 Sep 2024 14:46:28 +0000 (16:46 +0200)]
Merge pull request #48387 from nextcloud/backport/48359/stable29
[stable29] fix: Use placeholder for external storage password
provokateurin [Thu, 26 Sep 2024 12:35:25 +0000 (14:35 +0200)]
fix(files_sharing): Check if propfind response is valid before accessing share permission props
Signed-off-by: provokateurin <kate@provokateurin.de>
provokateurin [Thu, 26 Sep 2024 07:41:49 +0000 (09:41 +0200)]
refactor(files_sharing): Make permissions prop checks less error prone
Signed-off-by: provokateurin <kate@provokateurin.de>
provokateurin [Thu, 26 Sep 2024 07:38:41 +0000 (09:38 +0200)]
fix(files_sharing): Parse OCM share permissions from OCM and not OCS prop
Signed-off-by: provokateurin <kate@provokateurin.de>
Joas Schilling [Thu, 26 Sep 2024 10:22:52 +0000 (12:22 +0200)]
fix(updatenotification): Communicate app_api as shipped in 30+
Signed-off-by: Joas Schilling <coding@schilljs.com>
Joas Schilling [Thu, 26 Sep 2024 10:21:44 +0000 (12:21 +0200)]
fix(updatenotification): Communicate twofactor_nextcloud_notification as shipped in 30+
Signed-off-by: Joas Schilling <coding@schilljs.com>
Joas Schilling [Thu, 26 Sep 2024 10:21:04 +0000 (12:21 +0200)]
fix(updatenotification): Communicate files_downloadlimit as shipped in 29+
Signed-off-by: Joas Schilling <coding@schilljs.com>
Joas Schilling [Thu, 26 Sep 2024 13:19:25 +0000 (15:19 +0200)]
Merge pull request #48380 from nextcloud/backport/48142/stable29
[stable29] feat(share): ensure unique share tokens with dynamic length adjustment
Joas Schilling [Thu, 26 Sep 2024 13:15:38 +0000 (15:15 +0200)]
Merge pull request #48326 from nextcloud/dependaniel/aws-sdk-for-29
[stable29] chore(deps): Bump aws/aws-sdk-php from 3.240.8 to 3.322.4
Louis Chemineau [Tue, 24 Sep 2024 14:20:04 +0000 (16:20 +0200)]
fix: Use hashed password in files_external settings
Signed-off-by: Louis Chemineau <louis@chmn.me>
Daniel [Thu, 26 Sep 2024 12:52:40 +0000 (14:52 +0200)]
Merge pull request #48364 from nextcloud/backport/48345/stable29
[stable29] fix(files_external): Catch correct exception
ernolf [Tue, 20 Aug 2024 10:33:28 +0000 (12:33 +0200)]
fix(share): Ensure unique share tokens
- check for token collisions and retry up to three times.
- throw after 3 attempts without finding a unique token.
Signed-off-by: ernolf <raphael.gradenwitz@googlemail.com>
Daniel Kesselberg [Tue, 24 Sep 2024 18:58:40 +0000 (20:58 +0200)]
fix(s3): suppress php deprecation warning on php8
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
Daniel Kesselberg [Tue, 24 Sep 2024 19:40:35 +0000 (21:40 +0200)]
chore(deps): Bump aws/aws-sdk-php from 3.240.8 to 3.332.4
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
Louis [Thu, 26 Sep 2024 09:51:21 +0000 (11:51 +0200)]
Merge pull request #48368 from nextcloud/backport/48354/stable29
[stable29] fix: Show storage full warning when storage is actually full
Louis Chemineau [Wed, 25 Sep 2024 11:53:54 +0000 (13:53 +0200)]
fix: Show storage full warning when storage is actually full
< 0 values for "free" do not mean that the storage is full: https://github.com/nextcloud/server/blob/
6befdd6dd7cd20fe7f7036e4665bcfbb783d6803 /lib/public/Files/FileInfo.php#L31-L42
Signed-off-by: Louis Chemineau <louis@chmn.me>
Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
Marcel Klehr [Wed, 25 Sep 2024 07:07:33 +0000 (09:07 +0200)]
fix(files_external): Catch correct exception
SMB#getFileInfo used to throw an icewind/smb exception, but nowadays throws \OCP\Files\ForbiddenException. This fixes downstream methods to catch the new exception.
Signed-off-by: Marcel Klehr <mklehr@gmx.net>
Nextcloud bot [Thu, 26 Sep 2024 00:23:23 +0000 (00:23 +0000)]
Fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
Pytal [Wed, 25 Sep 2024 21:51:32 +0000 (14:51 -0700)]
Merge pull request #48351 from nextcloud/backport/48331/stable29
[stable29] fix(files): Fix having to resolve conflicts twice when dropping files
nextcloud-command [Wed, 25 Sep 2024 21:34:40 +0000 (21:34 +0000)]
chore(assets): Recompile assets
Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
Christopher Ng [Tue, 24 Sep 2024 23:01:05 +0000 (16:01 -0700)]
fix(files): Fix having to resolve conflicts twice when dropping files
Signed-off-by: Christopher Ng <chrng8@gmail.com>
Joas Schilling [Wed, 25 Sep 2024 05:03:43 +0000 (07:03 +0200)]
Merge pull request #48336 from nextcloud/automated/noid/stable29-update-ca-cert-bundle
[stable29] fix(security): Update CA certificate bundle
nextcloud-command [Wed, 25 Sep 2024 02:30:57 +0000 (02:30 +0000)]
fix(security): Update CA certificate bundle
Signed-off-by: GitHub <noreply@github.com>
Nextcloud bot [Wed, 25 Sep 2024 00:21:30 +0000 (00:21 +0000)]
Fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
Ferdinand Thiessen [Tue, 24 Sep 2024 15:18:33 +0000 (17:18 +0200)]
Merge pull request #48313 from nextcloud/backport/48311/stable29
[stable29] fix: Ensure app discover section is returned as list
F. E Noel Nfebe [Tue, 24 Sep 2024 12:44:18 +0000 (13:44 +0100)]
Merge pull request #48315 from nextcloud/fix/remove-needless-console-log
refactor(AccountIcon): Remove needless console.log
nextcloud-command [Tue, 24 Sep 2024 12:05:24 +0000 (12:05 +0000)]
chore(assets): Recompile assets
Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
fenn-cs [Tue, 24 Sep 2024 11:40:59 +0000 (13:40 +0200)]
refactor(AccountIcon): Remove needless console.log
Signed-off-by: fenn-cs <fenn25.fn@gmail.com>
Ferdinand Thiessen [Tue, 24 Sep 2024 10:31:57 +0000 (12:31 +0200)]
fix: Ensure app discover section is returned as list
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
Joas Schilling [Tue, 24 Sep 2024 10:14:46 +0000 (12:14 +0200)]
Merge pull request #48309 from nextcloud/backport/47349/stable29
[stable29] Add bidirectional text support - Backend
Joas Schilling [Wed, 18 Sep 2024 09:03:13 +0000 (11:03 +0200)]
ci: Restrict RTL characters to RTL languages
Signed-off-by: Joas Schilling <coding@schilljs.com>
Louis [Tue, 24 Sep 2024 08:30:27 +0000 (10:30 +0200)]
Merge pull request #48284 from nextcloud/backport/48207/stable29
[stable29] fix: Don't crash if disabled user is missing in the database
Kate [Tue, 24 Sep 2024 06:31:34 +0000 (08:31 +0200)]
Merge pull request #48280 from nextcloud/backport/48266/stable29
Andy Scherzinger [Mon, 23 Sep 2024 19:11:04 +0000 (21:11 +0200)]
Merge pull request #48165 from nextcloud/backport/48114/stable29
[stable29] fix(appstoreFetcher): get list from a custom store and remove unnecessary warning
Andy Scherzinger [Mon, 23 Sep 2024 19:02:11 +0000 (21:02 +0200)]
Merge pull request #48301 from nextcloud/backport/48268/stable29
[stable29] fix: skip the integrity check for nextcloud-init-sync.lock