Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Merge pull request #22893 from nextcloud/backport/22880/stable19 | Morris Jobke | 2020-09-16 | 1 | -17/+18 |
|\ | | | | | [stable19] Revoke secsignid | ||||
| * | Revoke secsignid | Morris Jobke | 2020-09-16 | 1 | -17/+18 |
| | | | | | | | | | | | | See nextcloud/app-certificate-requests#343 Signed-off-by: Morris Jobke <hey@morrisjobke.de> | ||||
* | | Merge pull request #22892 from nextcloud/backport/22744/stable19 | Morris Jobke | 2020-09-16 | 1 | -6/+5 |
|\ \ | |/ |/| | [stable19] only get the permissions from the share source if it's not already cached | ||||
| * | only get the permissions from the share source if it's not already cached | Robin Appelman | 2020-09-16 | 1 | -6/+5 |
|/ | | | | | | this prevents having to setup the share source when doing metadata stuff on the share root Signed-off-by: Robin Appelman <robin@icewind.nl> | ||||
* | [tx-robot] updated from transifex | Nextcloud bot | 2020-09-16 | 8 | -2/+46 |
| | |||||
* | [tx-robot] updated from transifex | Nextcloud bot | 2020-09-15 | 230 | -374/+716 |
| | |||||
* | Merge pull request #22840 from nextcloud/backport/22770/stable19 | Morris Jobke | 2020-09-14 | 1 | -1/+5 |
|\ | | | | | [stable19] Mitigate encoding issue with user principal uri | ||||
| * | Mitigate encoding issue with user principal uri | Georg Ehrke | 2020-09-14 | 1 | -1/+5 |
|/ | | | | Signed-off-by: Georg Ehrke <developer@georgehrke.com> | ||||
* | Merge pull request #22775 from ↵ | Roeland Jago Douma | 2020-09-11 | 3 | -7/+14 |
|\ | | | | | | | | | nextcloud/fix/noid/stable19-ldap-group-update-events [stable19] makes LDAP's group updater dispatch type events | ||||
| * | makes LDAP's group updater dispatch type events | Arthur Schiwon | 2020-09-10 | 3 | -7/+14 |
| | | | | | | | | | | | | * fixes group share updates on added users Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de> | ||||
* | | Merge pull request #22778 from nextcloud/backport/22739/stable19 | Roeland Jago Douma | 2020-09-11 | 2 | -2/+12 |
|\ \ | | | | | | | [stable19] Don't fail if copying a file of 0 byte size | ||||
| * | | Annotate that writeStream can throw a GenericFileException | Julius Härtl | 2020-09-10 | 1 | -0/+3 |
| | | | | | | | | | | | | Signed-off-by: Julius Härtl <jus@bitgrid.net> | ||||
| * | | Properly catch exception from writing to stream when copying a file | Julius Härtl | 2020-09-10 | 1 | -2/+9 |
| |/ | | | | | | | Signed-off-by: Julius Härtl <jus@bitgrid.net> | ||||
* | | Merge pull request #22776 from nextcloud/backport/22747/stable19 | Roeland Jago Douma | 2020-09-11 | 1 | -2/+3 |
|\ \ | | | | | | | [stable19] fix s3 doesDirectoryExist check for empty directories | ||||
| * | | Set delimiter so that the CommonPrefixes response can properly be determined | Julius Härtl | 2020-09-10 | 1 | -1/+2 |
| | | | | | | | | | | | | Signed-off-by: Julius Härtl <jus@bitgrid.net> | ||||
| * | | fix s3 doesDirectoryExist check for empty directories | Robin Appelman | 2020-09-10 | 1 | -1/+1 |
| |/ | | | | | | | | | | | | | | | | | | | if a directory is empty, only the 'marker' object `/` exists. since not all s3 implementations return just the prefix when listing objects by prefix, when listing objects by the folder prefix, nothing will be returned if the directory is empty. by not including the trailing slash in the prefix, the folder marked will always be returned if it exists Signed-off-by: Robin Appelman <robin@icewind.nl> | ||||
* | | Merge pull request #22591 from nextcloud/backport/22577/stable19 | Roeland Jago Douma | 2020-09-11 | 1 | -0/+2 |
|\ \ | |/ |/| | [stable19] Better error message when blocked by access control | ||||
| * | Better error message when blocked by access control | Joas Schilling | 2020-09-04 | 1 | -0/+2 |
| | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com> | ||||
* | | Merge pull request #22769 from nextcloud/backport/22766/stable19 | Roeland Jago Douma | 2020-09-10 | 1 | -1/+1 |
|\ \ | | | | | | | [stable19] Clarify PHP warning in admin settings | ||||
| * | | Clarify PHP warning in admin settings | Morris Jobke | 2020-09-10 | 1 | -1/+1 |
|/ / | | | | | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de> | ||||
* | | Merge pull request #22752 from nextcloud/backport/22587/stable19 | Morris Jobke | 2020-09-10 | 1 | -1/+1 |
|\ \ | | | | | | | [stable19] Check if var debugMode exists | ||||
| * | | Check if var debugMode exists | timm2k | 2020-09-09 | 1 | -1/+1 |
| | | | | | | | | | | | | Closes #21150 a second time. 2nd appearance of debugMode may not seen in first fix. | ||||
* | | | Merge pull request #22753 from nextcloud/backport/22651/stable19 | Roeland Jago Douma | 2020-09-10 | 2 | -2/+13 |
|\ \ \ | | | | | | | | | [stable19] Fix reading empty files from objectstorage | ||||
| * | | | Fix reading empty files from objectstorage | Roeland Jago Douma | 2020-09-09 | 2 | -2/+13 |
| |/ / | | | | | | | | | | | | | | | | | | | | | | Since we try to do range requests this will fail hard. However since empty files are not that interesting to read anyways we just read from an emptry memory stream. Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl> | ||||
* | | | Merge pull request #22630 from nextcloud/backport/22583/stable19 | Julius Härtl | 2020-09-10 | 6 | -133/+69 |
|\ \ \ | |/ / |/| | | |||||
| * | | add repair step to clean up DB off lastFeatureRefresh entries in user prefs | Arthur Schiwon | 2020-09-07 | 4 | -1/+69 |
| | | | | | | | | | | | | | | | | | | - also removes related app setting "updateAttributesInterval" Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de> | ||||
| * | | these code bits were part of old logic that was already refactored out | Arthur Schiwon | 2020-09-06 | 2 | -132/+0 |
| | | | | | | | | | | | | | | | | | | - only references were in unit tests Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de> | ||||
* | | | Merge pull request #22742 from nextcloud/backport/22589/stable19 | Morris Jobke | 2020-09-09 | 1 | -1/+2 |
|\ \ \ | | | | | | | | | [stable19] Allow additional personal settings via normal registration | ||||
| * | | | Allow additional personal settings via normal registration | Joas Schilling | 2020-09-09 | 1 | -1/+2 |
| | | | | | | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com> | ||||
* | | | | Merge pull request #22745 from nextcloud/backport/22646/stable19 | Morris Jobke | 2020-09-09 | 2 | -2/+8 |
|\ \ \ \ | | | | | | | | | | | [stable19] Fix detecting text/x-php mimetype and secure mimetype mapping | ||||
| * | | | | Add text/x-php as an alternative for application/x-php | Julius Härtl | 2020-09-09 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | Signed-off-by: Julius Härtl <jus@bitgrid.net> | ||||
| * | | | | Properly add both mimetypes to secure mimetype mapping | Julius Härtl | 2020-09-09 | 1 | -1/+7 |
| | | | | | | | | | | | | | | | | | | | | Signed-off-by: Julius Härtl <jus@bitgrid.net> | ||||
* | | | | | Merge pull request #22652 from nextcloud/backport/22643/stable19 | Morris Jobke | 2020-09-09 | 2 | -1/+8 |
|\ \ \ \ \ | | | | | | | | | | | | | [stable19] Fix installing on Oracle | ||||
| * | | | | | Warn about adding NotNull columns with nullable default | Joas Schilling | 2020-09-07 | 1 | -0/+5 |
| | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com> | ||||
| * | | | | | Fix installing on Oracle | Joas Schilling | 2020-09-07 | 1 | -1/+3 |
| | |/ / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | Empty strings are stored as null in Oracle, so a column with NotNull can not have an empty string as default Signed-off-by: Joas Schilling <coding@schilljs.com> | ||||
* | | | | | Merge pull request #22713 from nextcloud/backport/stable19/22557 | Morris Jobke | 2020-09-09 | 1 | -1/+1 |
|\ \ \ \ \ | | | | | | | | | | | | | [stable19] Do not fail if share for mountpoint is no longer available | ||||
| * | | | | | Do not fail if share for mountpoint is no longer available | Julius Härtl | 2020-09-08 | 1 | -1/+1 |
| |/ / / / | | | | | | | | | | | | | | | | Signed-off-by: Julius Härtl <jus@bitgrid.net> | ||||
* | | | | | Merge pull request #22720 from nextcloud/backport/22469/stable19 | Morris Jobke | 2020-09-09 | 1 | -3/+3 |
|\ \ \ \ \ | |_|/ / / |/| | | | | [stable19] Don't use SELECT DISTINCT when to_char() is used in a WHERE statement | ||||
| * | | | | Don't use SELECT DISTINCT when to_char() is used in a WHERE statement | Joas Schilling | 2020-09-08 | 1 | -3/+3 |
| |/ / / | | | | | | | | | | | | | | | | | | | | | Nice bug in Oracle Signed-off-by: Joas Schilling <coding@schilljs.com> | ||||
* | | | | Merge pull request #22725 from nextcloud/version/19.0.3/finalv19.0.3 | Morris Jobke | 2020-09-09 | 1 | -2/+2 |
|\ \ \ \ | |/ / / |/| | | | 19.0.3 final | ||||
| * | | | 19.0.3 final | Roeland Jago Douma | 2020-09-08 | 1 | -2/+2 |
|/ / / | | | | | | | | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl> | ||||
* / / | [tx-robot] updated from transifex | Nextcloud bot | 2020-09-07 | 14 | -54/+162 |
|/ / | |||||
* | | [tx-robot] updated from transifex | Nextcloud bot | 2020-09-06 | 42 | -12/+184 |
| | | |||||
* | | [tx-robot] updated from transifex | Nextcloud bot | 2020-09-05 | 148 | -426/+596 |
| | | |||||
* | | Merge pull request #22574 from nextcloud/version/19.0.3/rc1v19.0.3RC1 | Roeland Jago Douma | 2020-09-04 | 1 | -2/+2 |
|\ \ | |/ |/| | 19.0.3 RC1 | ||||
| * | 19.0.3 RC1 | Roeland Jago Douma | 2020-09-04 | 1 | -2/+2 |
| | | | | | | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl> | ||||
* | | Merge pull request #22515 from nextcloud/backport/22472/stable19 | Roeland Jago Douma | 2020-09-04 | 3 | -2/+9 |
|\ \ | | | | | | | [stable19] Fix writing BLOBs to postgres with recent contacts interaction | ||||
| * | | Fix writing BLOBs to postgres with recent contacts interaction | Christoph Wurst | 2020-08-31 | 3 | -2/+9 |
| | | | | | | | | | | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at> | ||||
* | | | Merge pull request #22579 from nextcloud/backport/22550/stable19 | Roeland Jago Douma | 2020-09-04 | 1 | -2/+2 |
|\ \ \ | | | | | | | | | [stable19] Use the correct root to determinate the webroot for the resource | ||||
| * | | | Use the correct root to determinate the webroot for the resource | Joas Schilling | 2020-09-04 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | Since all the compiled routes are based on the server webroot, we have to use this, independent from which app this belongs to. Signed-off-by: Joas Schilling <coding@schilljs.com> |