Commit graph

29687 commits

Author SHA1 Message Date
Nextcloud bot
4f776358e8
Fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2024-06-26 00:20:08 +00:00
Nextcloud bot
1da03bb011
Fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2024-06-25 00:20:17 +00:00
Nextcloud bot
975264efcf
Fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2024-06-24 00:19:52 +00:00
Nextcloud bot
2044837863
Fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2024-06-23 00:19:59 +00:00
Nextcloud bot
08cd95790a
Fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2024-06-21 00:20:22 +00:00
Andy Scherzinger
3a1b738902
Merge pull request #45989 from nextcloud/backport/45968/stable27
[stable27] fix(dav): Limit number of UPDATES for sync token created_at
2024-06-20 13:41:20 +02:00
Nextcloud bot
d08cdac073
Fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2024-06-20 00:20:15 +00:00
Christoph Wurst
8c26abd493 fix(dav): Limit number of UPDATES for sync token created_at
Address book and calendar sync tokens have a created_at column in 26+
and we need to assign a current timestamp to the existing data at
upgrade so the data isn't cleaned up immediately. Updating the full
table is expensive and fails on clustered setups that limit transaction
size. We don't need a timestamp for the oldest rows so we can skip
updating them.

Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
2024-06-19 16:05:56 +00:00
Nextcloud bot
537dead4c1
Fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2024-06-19 00:20:48 +00:00
Nextcloud bot
cb96f13e53
Fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2024-06-18 00:20:49 +00:00
Marcel Müller
eced3451d5 fix(deleteAction): Bump up delete requests concurrency to 5
Signed-off-by: Marcel Müller <marcel-mueller@gmx.de>
2024-06-17 11:00:20 +02:00
Nextcloud bot
12342fc291
Fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2024-06-17 00:19:41 +00:00
Nextcloud bot
7f0cf9209e
Fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2024-06-16 00:19:37 +00:00
Nextcloud bot
d59eb86954
Fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2024-06-15 00:21:01 +00:00
Ferdinand Thiessen
10b104fa13
tests: Fix cypress component test import of package for mocking
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
2024-06-14 11:16:06 +02:00
Ferdinand Thiessen
7d002dbdba
fix(files): Make navigation reactive again
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
2024-06-14 11:08:13 +02:00
Nextcloud bot
1bc8b20de1
Fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2024-06-14 00:20:08 +00:00
Nextcloud bot
61868848ab
Fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2024-06-13 00:20:12 +00:00
fenn-cs
9c68799fd2 fix(ShareEntryLinkedList): Correctly propagate share data
`this.shares.unshift` mutates the share object for every component that uses
the share mixin.

Using the immutable approach changes the array reference which makes the mixin
lose track of the share object.

It would have been better to bubble up the share object but here we are :)

Signed-off-by: fenn-cs <fenn25.fn@gmail.com>
2024-06-12 16:20:39 +01:00
Andy Scherzinger
5bad00d37f
Merge pull request #45798 from nextcloud/backport/45775/stable27
[stable27] fix(caldav): event links in shared calendar notifications
2024-06-12 09:07:30 +02:00
Nextcloud bot
456ae72e20
Fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2024-06-12 00:20:26 +00:00
Richard Steinmetz
012bb75dba fix(caldav): event links in shared calendar notifications
Signed-off-by: Richard Steinmetz <richard@steinmetz.cloud>
2024-06-11 18:41:56 +00:00
Joas Schilling
bacf8c61a8 fix(sharing): Don't change the type of the controller argument
[EA] New value type (\DateTime) is not matching the resolved parameter type and might introduce types-related false-positives.

Signed-off-by: Joas Schilling <coding@schilljs.com>
2024-06-11 14:17:57 +01:00
fenn-cs
5d86c407a7 fix(shareApiController): avoid duplicated expiryDate operations
`expireDate` can be set once and used anywhere needed, the current implementation,
duplicates this behavior which leads to `parseDate` receiving an a date object it
parsed and returend earlier in the createShare method.

Signed-off-by: fenn-cs <fenn25.fn@gmail.com>
2024-06-11 14:17:57 +01:00
fenn-cs
b0d4661a1b refactor(shareApiController): use contrusctor property promotion & DI logger
Signed-off-by: fenn-cs <fenn25.fn@gmail.com>
2024-06-11 14:17:57 +01:00
Andy Scherzinger
71de713395
Merge pull request #45762 from nextcloud/fix/failing-tests-for-setupcheck
[stable27] fix: failing tests for setup check
2024-06-11 14:03:36 +02:00
Anna Larch
2b66a8b6f2 fix: failing tests for setup check
Signed-off-by: Anna Larch <anna@nextcloud.com>
2024-06-11 11:58:11 +02:00
Louis Chemineau
e2ed90d01a test: Fix encryption test
Signed-off-by: Louis Chemineau <louis@chmn.me>
2024-06-11 08:35:06 +00:00
Côme Chilliet
5be42d023a fix: add default value for new flag $useDecryptAll on getFileKey
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
2024-06-11 08:35:06 +00:00
Côme Chilliet
ba59cc39a5 fix: Autodetect legacy filekey instead of trusting the header for legacy header
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
2024-06-11 08:35:06 +00:00
Nextcloud bot
3024d71f1b
Fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2024-06-11 00:19:52 +00:00
Joas Schilling
e5d0a7b2f5 fix(dav): Don't log access control as error
Signed-off-by: Joas Schilling <coding@schilljs.com>
2024-06-10 11:56:15 +00:00
Nextcloud bot
6c92419ef1
Fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2024-06-10 00:20:00 +00:00
Nextcloud bot
ab1382bc20
Fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2024-06-09 00:19:41 +00:00
Nextcloud bot
31db22162f
Fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2024-06-08 00:19:33 +00:00
John Molakvoæ
9397531b39
Merge pull request #45544 from nextcloud/backport/44664/stable27 2024-06-07 13:42:45 +02:00
John Molakvoæ
ec0829ad9f
Merge pull request #45589 from nextcloud/backport/36942/stable27 2024-06-07 12:18:07 +02:00
Hamza Mahjoubi
4a1e7d2dc1 fix(dav): Rate limit address book creation
Signed-off-by: Hamza Mahjoubi <hamzamahjoubi221@gmail.com>
2024-06-07 12:15:58 +02:00
John Molakvoæ
88c8e244f1
Merge pull request #45639 from nextcloud/backport/45235/stable27 2024-06-07 12:13:20 +02:00
John Molakvoæ
8eb3a6ec83
Merge pull request #44009 from nextcloud/backport/43252/stable27 2024-06-07 11:05:32 +02:00
Nextcloud bot
fe3103321b
Fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2024-06-07 00:35:39 +00:00
Nextcloud bot
0da38dd305
Fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2024-06-06 00:21:13 +00:00
Benjamin Gaussorgues
3f34449f59
Merge pull request #44397 from nextcloud/backport/44075/stable27 2024-06-05 14:54:33 +02:00
Nextcloud bot
8d2387016b
Fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2024-06-05 09:56:34 +00:00
Christoph Wurst
8cf58e4f15
fix(dav): Add retention time to sync token cleanup
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
2024-06-04 19:15:10 +02:00
Anna Larch
602496ec87 fixup! fix(caldav): automatically delete outdated scheduling objects 2024-06-04 12:17:23 +02:00
Anna Larch
674d48bddd fixup! fix(caldav): automatically delete outdated scheduling objects 2024-06-04 11:20:59 +02:00
Daniel
162073ff04
Merge pull request #45444 from nextcloud/backport/44457/stable27
[stable27] fix(contactsinteraction): Allow vCard download
2024-06-03 22:52:26 +02:00
Anna Larch
02b984debd fix(caldav): automatically delete outdated scheduling objects
Signed-off-by: Anna Larch <anna@nextcloud.com>
2024-06-03 17:07:29 +02:00
Daniel Kesselberg
dead36211e feat(caldav): order the calendar objects by start date for search
Sorting the events by the start date leads to more predictable results for the search API consumers.

Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
2024-06-03 12:17:46 +02:00