Morris Jobke
6e04cc464b
Merge pull request #13914 from nextcloud/version/noid/13.0.11RC1
...
13.0.11 RC 1
2019-01-31 10:32:09 +01:00
Morris Jobke
cc6118d9ef
13.0.11 RC 1
...
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
2019-01-31 09:11:26 +01:00
Morris Jobke
7edc8c8b0b
Merge pull request #13917 from nextcloud/backport/13869/stable13
...
[stable13] Clean pending 2FA authentication on password reset
2019-01-30 14:32:36 +01:00
Morris Jobke
9b96db49be
Merge pull request #13889 from nextcloud/backport/13883/stable13
...
[stable13] Fix dropping a folder on a folder row
2019-01-30 14:09:23 +01:00
Roeland Jago Douma
0a17836fec
Clean pending 2FA authentication on password reset
...
When a password is reste we should make sure that all users are properly
logged in. Pending states should be cleared. For example a session where
the 2FA code is not entered yet should be cleared.
The token is now removed so the session will be killed the next time
this is checked (within 5 minutes).
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
2019-01-30 10:45:02 +01:00
Daniel Calviño Sánchez
036bfa08dd
Fix dropping a folder on a folder row
...
When the uploaded files have a relative path (that is, when a folder is
uploaded) it is first ensured that all the parent folders exist, which
is done by trying to create them. When a folder is created in the
currently opened folder the file list is updated and a row for the new
folder is added. However, this was done too when the folder already
existed, which caused the previous row to be removed and a new one added
to replace it.
For security reasons, some special headers need to be set in requests;
this is done automatically for jQuery by handling the "ajaxSend" event
in the document. In the case of DAV requests, if the headers are not set
the server rejects the request with "CSRF check not passed".
When a file or folder is dropped on a folder row the jQuery upload
events are chained from the initial drop event, which has the row as its
target. In order to upload the file jQuery performs a request, which
triggers the "ajaxSend" event in the row; this event then bubbles up to
the document, which is then handled by adding the special headers to the
request.
However, when a folder was dropped on a folder row that folder row was
removed when ensuring that the folder exists. The jQuery upload events
were still triggered on the row, but as it had been removed it had no
parent nodes, and thus the events did not bubble up. Due to this the
"ajaxSend" event never reached the document when triggered on the
removed row, the headers were not set, and the upload failed.
All this is simply fixed by not removing the folder row when trying to
create it if it existed already.
Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
2019-01-29 14:49:26 +00:00
Nextcloud bot
9cbcf03a78
[tx-robot] updated from transifex
2019-01-26 01:12:43 +00:00
Morris Jobke
80075cc11e
Merge pull request #13707 from nextcloud/backport/13473/dont-log-parameters-on-user-creation-in-case-of-error
...
[stable13] Don't log parameters on user creation in case of error/exception
2019-01-25 14:10:48 +01:00
Nextcloud bot
5fe97321f3
[tx-robot] updated from transifex
2019-01-25 01:12:46 +00:00
Nextcloud bot
e919669982
[tx-robot] updated from transifex
2019-01-24 01:12:34 +00:00
Morris Jobke
b558e4969a
Merge pull request #13746 from nextcloud/backport/13739/stable13
...
[stable13] cleanup shared lock if changing to exclusive lock failed
2019-01-23 08:19:35 +01:00
Nextcloud bot
544d28ad60
[tx-robot] updated from transifex
2019-01-23 01:12:35 +00:00
Robin Appelman
9126cdc7a8
cleanup shared lock if changing to exclusive lock failed
...
Signed-off-by: Robin Appelman <robin@icewind.nl>
2019-01-22 15:14:34 +00:00
Nextcloud bot
e898c52eb0
[tx-robot] updated from transifex
2019-01-22 01:12:55 +00:00
Joas Schilling
10e945bdaf
Don't log parameters on user creation in case of error/exception
...
Signed-off-by: Joas Schilling <coding@schilljs.com>
2019-01-21 09:31:23 +01:00
Nextcloud bot
e05e93b55f
[tx-robot] updated from transifex
2019-01-21 01:12:19 +00:00
Nextcloud bot
dcb368a69e
[tx-robot] updated from transifex
2019-01-20 01:12:59 +00:00
Nextcloud bot
1a4d519593
[tx-robot] updated from transifex
2019-01-19 01:12:49 +00:00
Nextcloud bot
994f773b04
[tx-robot] updated from transifex
2019-01-18 01:15:00 +00:00
Morris Jobke
7d70ce10b7
Merge pull request #13638 from nextcloud/backport/13634/stable13
...
[stable13] update URL for federation
2019-01-17 09:34:53 +01:00
Nextcloud bot
c610182204
[tx-robot] updated from transifex
2019-01-17 01:12:49 +00:00
Jos Poortvliet
6ce51ca98a
update URL for federation
2019-01-16 21:44:15 +00:00
Morris Jobke
593e596da6
Merge pull request #13600 from nextcloud/3rdpart/stable13/pear/archive_tar-1.4.5
...
[stable13] [3rdparty] Bump pear/archive_tar to 1.4.5
2019-01-16 16:22:31 +01:00
Nextcloud bot
6a7624067b
[tx-robot] updated from transifex
2019-01-16 01:13:05 +00:00
Roeland Jago Douma
f7a017aae2
[3rdparty] Bump pear/archive_tar to 1.4.5
...
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
2019-01-15 14:24:09 +01:00
Nextcloud bot
d9a29dc4b4
[tx-robot] updated from transifex
2019-01-15 01:12:45 +00:00
Morris Jobke
7cd4f9307c
Merge pull request #13584 from nextcloud/backport/13573/stable13
...
[stable13] Principals can be principal/user/<name> or principal/<name> from lega…
2019-01-14 15:23:32 +01:00
Joas Schilling
3f2d77faf2
Principals can be principal/user/<name> or principal/<name> from legacy installs
...
Signed-off-by: Joas Schilling <coding@schilljs.com>
2019-01-14 13:21:35 +00:00
Nextcloud bot
dcd1dbb609
[tx-robot] updated from transifex
2019-01-14 01:12:28 +00:00
Nextcloud bot
d9326a93b9
[tx-robot] updated from transifex
2019-01-13 01:13:22 +00:00
Nextcloud bot
2b5786b45e
[tx-robot] updated from transifex
2019-01-12 01:12:25 +00:00
Morris Jobke
e049b7c3cf
Merge pull request #13517 from nextcloud/version/noid/13.0.10
...
13.0.10
2019-01-11 16:10:41 +01:00
Morris Jobke
d56b995887
13.0.10
...
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
2019-01-11 14:30:55 +01:00
Roeland Jago Douma
fabcb1ff2c
Merge pull request #13508 from nextcloud/backport/13503/stable13
...
[stable13] RemoveClassifiedEventActivity: check if calendar still exists
2019-01-11 12:06:47 +01:00
Roeland Jago Douma
a719325a17
Check for no longer existing calendars
...
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
2019-01-11 10:32:23 +00:00
Nextcloud bot
6be08ad0de
[tx-robot] updated from transifex
2019-01-11 01:12:59 +00:00
Morris Jobke
68a1f2074e
Merge pull request #13477 from nextcloud/version/noid/13.0.9
...
13.0.9
2019-01-10 15:24:12 +01:00
Morris Jobke
3ff6391329
13.0.9
...
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
2019-01-10 11:23:47 +01:00
Morris Jobke
9d4d604125
Merge pull request #13471 from nextcloud/backport/13467/stable13
...
[stable13] Show the repair steps and repair info output in the web for better feedback
2019-01-10 10:44:19 +01:00
Morris Jobke
d3d3694432
Show the repair steps and repair info output in the web for better feedback
...
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
2019-01-10 07:38:17 +00:00
Nextcloud bot
8a8cc531cb
[tx-robot] updated from transifex
2019-01-10 01:12:35 +00:00
Roeland Jago Douma
d9db6b7ec4
Merge pull request #13454 from nextcloud/version/noid/13.0.9RC2
...
13.0.9 RC 2
2019-01-09 20:27:09 +01:00
Morris Jobke
da6ba224b8
13.0.9 RC 2
...
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
2019-01-09 19:19:42 +01:00
Morris Jobke
9681279623
Merge pull request #13443 from nextcloud/backport/13430-13
...
[stable13] Respect classification of calendar events in activity stream
2019-01-09 19:19:03 +01:00
Joas Schilling
63e24d0903
Prevent php info about missing index for old events
...
Signed-off-by: Joas Schilling <coding@schilljs.com>
2019-01-09 18:33:17 +01:00
Joas Schilling
5ea32a1bca
Add a repair step to remove sensitive event activity
...
Signed-off-by: Joas Schilling <coding@schilljs.com>
2019-01-09 18:33:17 +01:00
Joas Schilling
194c4b717e
Correctly handle the classification of events in the activity stream
...
Signed-off-by: Joas Schilling <coding@schilljs.com>
2019-01-09 18:33:17 +01:00
Morris Jobke
81b02e34dd
Merge pull request #13422 from nextcloud/backport/9174/stable13
...
[stable13] log more information about insufficient storage in dav plugin
2019-01-09 18:01:16 +01:00
Nextcloud bot
084e9fd237
[tx-robot] updated from transifex
2019-01-09 01:13:09 +00:00
Robin Appelman
6252f07fbc
log more information about insufficient storage in dav plugin
...
Signed-off-by: Robin Appelman <robin@icewind.nl>
2019-01-08 14:22:29 +00:00