Commit Graph

54474 Commits

Author SHA1 Message Date
Nextcloud bot 6ea1157822
[tx-robot] updated from transifex 2021-01-05 02:21:47 +00:00
Nextcloud bot 77fc8f394a
[tx-robot] updated from transifex 2021-01-04 02:22:07 +00:00
Nextcloud bot f801758704
[tx-robot] updated from transifex 2021-01-03 02:21:16 +00:00
Nextcloud bot 9520bc2010
[tx-robot] updated from transifex 2021-01-01 02:21:21 +00:00
Nextcloud bot faf572163a
[tx-robot] updated from transifex 2020-12-31 02:27:21 +00:00
Roeland Jago Douma bd73513439
Merge pull request #24901 from nextcloud/dependabot/composer/stable19/pear/archive_tar-1.4.11
[stable19] Bump pear/archive_tar from 1.4.9 to 1.4.11
2020-12-30 14:22:49 +01:00
Christoph Wurst 9d2594e59f
Bump pear/archive_tar from 1.4.9 to 1.4.11
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
2020-12-30 10:29:58 +01:00
Nextcloud bot 4bff74a4e0
[tx-robot] updated from transifex 2020-12-30 02:19:28 +00:00
Julius Härtl 7d3bf1c314
Merge pull request #24875 from nextcloud/backport/24874/stable19
[stable19] Avoid huge exception argument logging
2020-12-29 14:09:24 +01:00
Roeland Jago Douma 7d282a4e88 Avoid huge exception argument logging
In some cases it might happen that you have an argument that deep down
somewhere has an array with a lot of entries (think thousands). Now
before we would just happily print them all. Which would fill the log.

Now it will just print the first 5. And add a line that there are N
more.

If you are on debug level we will still print them all.

Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
2020-12-29 10:46:54 +00:00
Nextcloud bot 25a65a34a7
[tx-robot] updated from transifex 2020-12-29 02:20:11 +00:00
Roeland Jago Douma e1a1854753
Merge pull request #24855 from nextcloud/backport/24833/stable19
[stable19] Fix total upload size overwritten by next upload
2020-12-28 14:17:02 +01:00
Daniel Calviño Sánchez acdf895c2d Fix total upload size overwritten by next upload
The upload progress is based on the "totalToUpload" variable. However,
as the variable is set when an upload is submitted, if another upload is
submitted before the previous one finished the upload progress only took
into account the size of the new upload (although the upload itself
worked fine; the files of the new submitted upload are added to the
active one). Now "totalToUpload" is either increased or set depending on
whether an upload is active or not.

Note that although "data.total" holds the total size of the files being
uploaded "totalToUpload" needs to be used in "fileuploadprogressall"
instead; "totalToUpload" is calculated when the upload is submitted, but
since 7c4c5fe6ae the actual upload of the files, and thus updating the
value of "data.total", may be deferred until the parent folders were
created.

Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
2020-12-28 10:24:12 +00:00
Nextcloud bot 6a85c12b4b
[tx-robot] updated from transifex 2020-12-28 02:19:28 +00:00
Nextcloud bot 085a0dd8c0
[tx-robot] updated from transifex 2020-12-27 02:25:03 +00:00
Nextcloud bot 91b383cb81
[tx-robot] updated from transifex 2020-12-26 02:20:08 +00:00
Nextcloud bot 9244f2e798
[tx-robot] updated from transifex 2020-12-24 02:20:28 +00:00
Nextcloud bot ef46f3c20a
[tx-robot] updated from transifex 2020-12-23 02:20:29 +00:00
Nextcloud bot 5d6cdabb88
[tx-robot] updated from transifex 2020-12-22 02:19:25 +00:00
Julius Härtl 8b15f820a1
Merge pull request #24799 from nextcloud/backport/24796/stable19
[stable19] Actually set the TTL on redis set
2020-12-21 16:01:09 +01:00
Roeland Jago Douma ae49423991 Actually set the TTL on redis set
Else well the keys remain for ever and ever.

Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
2020-12-21 13:53:42 +00:00
Roeland Jago Douma 8a9a83351a
Merge pull request #24795 from nextcloud/backport/23319/stable19
[stable19] Fix Argon2 descriptions
2020-12-21 13:33:39 +01:00
MichaIng ef18e45813 Fix Argon2 descriptions
The threads option for the password_hash function does not define the maximum allowed number of CPU threads to be used by the hashing algorithm but the exact number of threads that is used.

Similarly the memory_cost option for the password_hash function does not define the maximum allowed memory to be used by the hashing algorithm, but the exact amount of memory that is used by the hashing table. The minimum value is 8 KiB per thread.

The time_cost option for the password_hash function does not define the allowed time in seconds, but the number of iterations for the hash function.

If the minimum values are understood, the minimum values are used instead.

Signed-off-by: MichaIng <micha@dietpi.com>
2020-12-21 11:35:10 +00:00
Nextcloud bot 0be0f46f93
[tx-robot] updated from transifex 2020-12-21 02:19:14 +00:00
Nextcloud bot 1d38b3a587
[tx-robot] updated from transifex 2020-12-20 02:19:49 +00:00
Nextcloud bot ad33f58934
[tx-robot] updated from transifex 2020-12-19 02:19:57 +00:00
Arthur Schiwon edd9562079
fixes sharing to group ids /w chars that are being url encoded, carddav
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
2020-12-18 12:00:44 +01:00
Arthur Schiwon fede4f4197
fix finding of groups with decodable chars in their id via DAV
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
2020-12-18 12:00:37 +01:00
Arthur Schiwon 5379273b06
fixes sharing to group ids with characters that are being url encoded
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
2020-12-18 12:00:22 +01:00
Nextcloud bot 7467551d85
[tx-robot] updated from transifex 2020-12-18 02:20:29 +00:00
Nextcloud bot ebb5fd2745
[tx-robot] updated from transifex 2020-12-17 02:20:37 +00:00
Nextcloud bot 1bd5d0b10e
[tx-robot] updated from transifex 2020-12-16 02:21:00 +00:00
Nextcloud bot 200cc52aad
[tx-robot] updated from transifex 2020-12-15 02:22:32 +00:00
Nextcloud bot 0113df4f3b
[tx-robot] updated from transifex 2020-12-14 02:19:45 +00:00
Nextcloud bot 56df531fd1
[tx-robot] updated from transifex 2020-12-13 02:18:51 +00:00
Nextcloud bot cb1725f3d8
[tx-robot] updated from transifex 2020-12-12 02:19:05 +00:00
Nextcloud bot a18dea7c85
[tx-robot] updated from transifex 2020-12-11 02:20:35 +00:00
Nextcloud bot f2ee49e1cf
[tx-robot] updated from transifex 2020-12-10 02:20:35 +00:00
Roeland Jago Douma 83b2058367
Merge pull request #24622 from nextcloud/version/19.0.6/final
19.0.6
2020-12-09 20:31:02 +01:00
Roeland Jago Douma 5d74b462e1
19.0.6
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
2020-12-09 20:08:35 +01:00
Nextcloud bot aa3af0f128
[tx-robot] updated from transifex 2020-12-09 02:20:06 +00:00
Nextcloud bot 635039c8ae
[tx-robot] updated from transifex 2020-12-08 02:20:41 +00:00
Roeland Jago Douma f3bf4b4b1e
Merge pull request #24585 from nextcloud/version/19.0.6/RC2
19.0.6 RC2
2020-12-07 20:35:53 +01:00
Robin Appelman dedff0facb use in objectstore copy
Signed-off-by: Robin Appelman <robin@icewind.nl>
2020-12-07 16:07:25 +00:00
Robin Appelman 31944e84cb use storage copy implementation when doing dav copy
instead of using the sabredav fallback (which does a read+write stream copy)

this greatly speeds up dav copies

Signed-off-by: Robin Appelman <robin@icewind.nl>
2020-12-07 16:07:10 +00:00
Roeland Jago Douma 7bff8a4c65
Merge pull request #24564 from nextcloud/backport/24552/stable19
[stable19] Remember me is not an app_password
2020-12-07 11:56:43 +01:00
Roeland Jago Douma 71e406627e
Merge pull request #24561 from nextcloud/backport/24557/stable19
[stable19] [stable20] dont use system composer for autoload checker
2020-12-07 11:55:49 +01:00
Roeland Jago Douma 1d1bd4a61f
19.0.6 RC2
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
2020-12-07 11:45:30 +01:00
Roeland Jago Douma 6091ae9648
Merge pull request #24583 from nextcloud/backport/24581/stable19
[stable19] Do not load nonexisting setup.js
2020-12-07 11:16:04 +01:00
Julius Härtl 262f0f8b50 Do not load nonexisting setup.js
Signed-off-by: Julius Härtl <jus@bitgrid.net>
2020-12-07 08:23:27 +00:00