Commit graph

63063 commits

Author SHA1 Message Date
blizzz
a94de5cb5a
Merge pull request #32910 from nextcloud/fix/profiler-invalid-utf8
Fix profiler trying to serialize invalid utf8
2022-06-20 12:52:39 +02:00
Carl Schwan
35d8bdc840 Fix profiler trying to serialize invalid utf8
The cookie value contains invalid utf8 characters most of the time so
let's just ignore it as it is also not that interesting to analyse.

Signed-off-by: Carl Schwan <carl@carlschwan.eu>
2022-06-20 11:11:12 +02:00
Nextcloud bot
2a2d2cc23e
[tx-robot] updated from transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2022-06-20 02:27:27 +00:00
Nextcloud bot
c84a68ec11
[tx-robot] updated from transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2022-06-19 02:27:46 +00:00
Nextcloud bot
be2ee3b504
[tx-robot] updated from transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2022-06-18 02:27:27 +00:00
Simon L
de82d4f67c
Merge pull request #32874 from bill-mcgonigle/patch-1
Mention missing files subdir
2022-06-17 12:12:25 +02:00
Nextcloud bot
9cd9e774d6
[tx-robot] updated from transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2022-06-17 02:27:44 +00:00
blizzz
692943860a
Merge pull request #32898 from nextcloud/fix/noid/logger-overwrites-vars
Fix logger overwriting vars in some circumstances
2022-06-16 20:32:33 +02:00
Arthur Schiwon
8b2b5946e6
make placeholder a const for reuse
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
2022-06-16 18:38:29 +02:00
Arthur Schiwon
891c10d09d
fix overwriting original vars when logging
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
2022-06-16 18:36:58 +02:00
Arthur Schiwon
09a5947a6d
add serializer test
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
2022-06-16 18:36:58 +02:00
Nextcloud bot
0c14ee6ff5
[tx-robot] updated from transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2022-06-16 02:27:32 +00:00
blizzz
33148016a5
Merge pull request #32876 from nextcloud/fix/fix-string-interpolation
Use {$var} instead of ${var} for PHP 8.2 compatibility
2022-06-15 21:39:56 +02:00
blizzz
3763024ff9
Merge pull request #32878 from nextcloud/fix-default-toast-message-for-failed-uploads-with-http2
Fix default toast message for failed uploads with HTTP/2
2022-06-15 21:36:47 +02:00
Daniel
596ead787b
Merge pull request #32584 from nextcloud/fix-ResetTokenBackgroundJob
Make sure ResetTokenBackgroundJob doesn't execute if config is read-only
2022-06-15 11:37:43 +02:00
Thomas Citharel
956d895920
Update tests after ResetTokenBackgroundJob changes
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
2022-06-15 10:29:16 +02:00
Thomas Citharel
56727ba58b
Use OCP version of TimedJob instead of OC for ResetTokenBackgroundJob
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
2022-06-15 10:29:16 +02:00
Thomas Citharel
47ea43ea49
Make sure ResetTokenBackgroundJob doesn't execute if config is read-only
No need to try to delete the config key in config.php if we aren't
allowed to.

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
2022-06-15 10:29:16 +02:00
Nextcloud bot
da8450e854
[tx-robot] updated from transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2022-06-15 02:27:55 +00:00
Daniel Calviño Sánchez
e15b43d976 Fix default toast message for failed uploads with HTTP/2
When an upload fails a toast is shown with either a specific message or
just the textual part of the HTTP error code (which comes from the
upload failure handler and set by "jQuery.ajax()". However, if there
is neither a message nor an error then the toast will show the default
message from the Toastify-js library, which is an undescriptive "Hi
there!".

When HTTP/2 is used Chromium does not provide the textual part of the
HTTP error code, so when an upload fails the toast can receive an empty
message and thus just show "Hi there!". Now an explicit message is
provided as a fallback to prevent that.

Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
2022-06-14 16:07:35 +02:00
Christoph Wurst
9f3958e8d2
Merge pull request #32351 from nextcloud/dav-handle-move-operation-properly
Handle the move operation properly between shared calendars
2022-06-14 15:58:56 +02:00
Christoph Wurst
06b785d3bc
Merge pull request #32875 from nextcloud/fix/setup-set-up-2fa
Fix 2FA setup vs set up typo
2022-06-14 15:33:29 +02:00
Côme Chilliet
c54fb5f9e6
Use {$var} instead of ${var} for PHP 8.2 compatibility
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
2022-06-14 15:12:28 +02:00
Thomas Citharel
39ef0500d1
Handle the move operation properly between shared calendars
- Introduce a new CalendarObjectMovedEvent typed event dedicated for
  this operation
- Handle the event in the activity backend and add new appropriate activity subjects

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
2022-06-14 14:40:24 +02:00
Christoph Wurst
3ce1f908a1
Fix 2FA setup vs set up typo
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
2022-06-14 14:34:20 +02:00
Bill McGonigle
ad60b3b479
Mention missing files subdir
Many users are getting confused by the inaccurate error message "Home storage for user $user not writable" because the storage *is* writable.  The actual issue is a missing files/ subdirectory.  cf. https://help.nextcloud.com/t/home-storage-for-user-not-writable/10831/7
By mentioning the possible cause in the error message, users are going to be able to rapidly solve their problem rather than bang their heads against the screen, Google, and eventually forums to find out that the error message is wrong in their case.
Yes, it would be better to detect and precisely describe the fault, or fix the problem automatically, but until then, be kind to the users for the next however many years.
2022-06-14 07:10:29 -04:00
Daniel
ad10cd5f65
Merge pull request #32813 from nextcloud/debt/noid/check-for-3rdparty-updates
Run php tests when 3rdparty changed
2022-06-14 12:34:55 +02:00
Nextcloud bot
7522779251
[tx-robot] updated from transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2022-06-14 02:28:15 +00:00
Côme Chilliet
4f230877e9
Merge pull request #32853 from nextcloud/fix/update-acceptance-composer-lock
Update dependencies in acceptance tests composer.lock
2022-06-13 13:55:47 +02:00
Vincent Petry
8809de1eef
Merge pull request #31966 from nextcloud/unencrypted-size
store unencrypted size in the unencrypted_size column
2022-06-13 11:55:37 +02:00
Joas Schilling
c26ddf10de
Merge pull request #32847 from nextcloud/followup/32748/fix-second-integration-test
Fix second integration test as well
2022-06-13 11:44:54 +02:00
Vincent Petry
12e3e85336
Merge pull request #31637 from nextcloud/add-password-reset-typed-events
Add password reset typed events and modernize LostController
2022-06-13 10:50:52 +02:00
Vincent Petry
7f8b032029
Merge pull request #32843 from nextcloud/bugfix/noid/correctly-log-failed-attempts
Correctly log failed attempts
2022-06-13 10:26:07 +02:00
Côme Chilliet
5cce1b92ff
Update dependencies in acceptance tests composer.lock
It should allow to run them on PHP>=8.0 with a recent phpunit.

Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
2022-06-13 10:24:42 +02:00
Louis
879a8c3b25
Merge pull request #32774 from nextcloud/enh/a11y/keyboard-legacy-contacts-menu
Enable keyboard activation of legacy contacts menu
2022-06-13 10:20:47 +02:00
Carl Schwan
1d35efdd1f
Merge pull request #31197 from nextcloud/acsfer-patch-1
Add memcached unix socket instructions
2022-06-13 09:55:35 +02:00
Joas Schilling
584424c651
Fix second integration test as well
Signed-off-by: Joas Schilling <coding@schilljs.com>
2022-06-13 09:52:03 +02:00
Joas Schilling
6eb692da7f
Correctly log failed attempts
Signed-off-by: Joas Schilling <coding@schilljs.com>
2022-06-13 09:30:51 +02:00
Vincent Petry
4ecedffb5b
Merge pull request #31345 from nextcloud/fix/31164/delete-additional-email
Fix deletion of additional emails
2022-06-13 09:14:16 +02:00
Nextcloud bot
311a7edd0f
[tx-robot] updated from transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2022-06-13 02:28:17 +00:00
Nextcloud bot
af0b50daa5
[tx-robot] updated from transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2022-06-12 02:27:53 +00:00
Nextcloud bot
a7b932cb52
[tx-robot] updated from transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2022-06-11 02:28:28 +00:00
Christopher Ng
2948c5e1f1 Use unique key to prevent email component reuse
Signed-off-by: Christopher Ng <chrng8@gmail.com>
2022-06-10 20:15:35 +00:00
Vincent Petry
2ee948e8d1
Merge pull request #30368 from nextcloud/dav-allow-object-properties
Allow DAV Object properties
2022-06-10 17:07:38 +02:00
Vincent Petry
804ee11803
Merge pull request #31029 from nextcloud/expose-extra-emails-in-dav
Expose additional emails in {DAV:}alternate-URI-set
2022-06-10 16:56:37 +02:00
Thomas Citharel
abe5ff3654
Make LostController use IInitialState and LoggerInterface
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
2022-06-10 16:41:41 +02:00
Thomas Citharel
6283d14fa6
Modernize the LostControllerTest test
Remove some depreciated at() calls

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
2022-06-10 16:41:41 +02:00
Thomas Citharel
44e13848a1
Add password reset typed events
These hooks are only used in the Encryption app from what I can see.

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
2022-06-10 16:41:41 +02:00
Vincent Petry
5f8e1b7fb9
Merge pull request #31622 from nextcloud/increase-loglevel-modernize-refresh-webcal
Increase loglevel of Webcal parsing errors and modernize code
2022-06-10 16:31:51 +02:00
Vincent Petry
85cc867143
Merge pull request #31771 from nextcloud/fix/hook-encryption-cron
Fix hook encryption with cron job
2022-06-10 16:27:59 +02:00