Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Merge pull request #23639 from nextcloud/version/noid/20.0.1v20.0.1 | Roeland Jago Douma | 2020-10-24 | 1 | -2/+2 |
|\ | | | | | 20.0.1 | ||||
| * | 20.0.1 | Morris Jobke | 2020-10-22 | 1 | -2/+2 |
| | | | | | | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de> | ||||
* | | [tx-robot] updated from transifex | Nextcloud bot | 2020-10-24 | 82 | -252/+366 |
| | | |||||
* | | [tx-robot] updated from transifex | Nextcloud bot | 2020-10-23 | 22 | -12/+142 |
|/ | |||||
* | Merge pull request #23621 from nextcloud/backport/23613/stable20 | Morris Jobke | 2020-10-22 | 1 | -6/+7 |
|\ | | | | | [stable20] Disable unreliable app-files.feature:108 | ||||
| * | Disable unreliable app-files.feature:108 | Morris Jobke | 2020-10-22 | 1 | -6/+7 |
| | | | | | | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de> | ||||
* | | Merge pull request #23622 from nextcloud/backport/23614/stable20 | Daniel Calviño Sánchez | 2020-10-22 | 1 | -42/+43 |
|\ \ | |/ |/| | [stable20] Disable unreliable app-files-sharing.feature:108 | ||||
| * | Disable unreliable app-files-sharing.feature:108 | Morris Jobke | 2020-10-22 | 1 | -42/+43 |
|/ | | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de> | ||||
* | [tx-robot] updated from transifex | Nextcloud bot | 2020-10-22 | 18 | -2/+114 |
| | |||||
* | Merge pull request #23570 from nextcloud/backport/23566/stable20 | blizzz | 2020-10-21 | 3 | -12/+43 |
|\ | | | | | [stable20] LDAP: when nesting is not enabled, the group filter can be applied right away | ||||
| * | tame psalm. why does it ignore '@property'? | Arthur Schiwon | 2020-10-19 | 1 | -5/+1 |
| | | | | | | | | Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de> | ||||
| * | when nesting is not enabled, the group filter can be applied right away | Arthur Schiwon | 2020-10-19 | 2 | -7/+42 |
| | | | | | | | | | | | | | | | | - helps performance, but skipping unnecessary entries - reduces reoccuring info-level log output against groups that do not qualify ("no or empty name") Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de> | ||||
* | | [tx-robot] updated from transifex | Nextcloud bot | 2020-10-21 | 150 | -632/+984 |
| | | |||||
* | | [tx-robot] updated from transifex | Nextcloud bot | 2020-10-20 | 26 | -8/+268 |
|/ | |||||
* | Merge pull request #23474 from nextcloud/version/noid/20.0.1RC1v20.0.1RC1 | Morris Jobke | 2020-10-19 | 2 | -81/+69 |
|\ | | | | | 20.0.1 RC 1 | ||||
| * | Update CA bundle | Morris Jobke | 2020-10-19 | 1 | -79/+67 |
| | | | | | | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de> | ||||
| * | 20.0.1 RC 1 | Morris Jobke | 2020-10-19 | 1 | -2/+2 |
|/ | | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de> | ||||
* | Merge pull request #23205 from nextcloud/backport/23012/stable20 | Morris Jobke | 2020-10-19 | 3 | -3/+15 |
|\ | | | | | [stable20] Make BeforeTemplateRenderedEvent aware of the actual response | ||||
| * | Update @since tag | Morris Jobke | 2020-10-19 | 1 | -1/+1 |
| | | | | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de> | ||||
| * | Add acutal response to BeforeTemplateRenderedEvent | Julius Härtl | 2020-10-05 | 2 | -2/+13 |
| | | | | | | | | Signed-off-by: Julius Härtl <jus@bitgrid.net> | ||||
| * | Only load user status script when needed | Julius Härtl | 2020-10-05 | 1 | -1/+2 |
| | | | | | | | | Signed-off-by: Julius Härtl <jus@bitgrid.net> | ||||
* | | Merge pull request #23514 from nextcloud/backport/23508/stable20 | Morris Jobke | 2020-10-19 | 1 | -1/+1 |
|\ \ | | | | | | | [stable20] fixes potential passing of null to getUserGroupIds | ||||
| * | | fixes potential passing of null to getUserGroupIds | Arthur Schiwon | 2020-10-16 | 1 | -1/+1 |
| | | | | | | | | | | | | Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de> | ||||
* | | | Merge pull request #23422 from nextcloud/backport/23295/stable20 | Morris Jobke | 2020-10-19 | 1 | -3/+6 |
|\ \ \ | | | | | | | | | [stable20] Fix undefined index and consequential damages in versions code | ||||
| * | | | Return all keys in getAllVersions() instead | Morris Jobke | 2020-10-13 | 1 | -4/+7 |
| | | | | | | | | | | | | | | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de> | ||||
| * | | | Fix undefined index and consequential damages in versions code | Christoph Wurst | 2020-10-13 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | If the user has no space and there are no versions, there won't be an `all` index in the versions entry. Hence this triggers a warning and becomes `null`, afterwards `count`, `foreach` and friends will happily throw even more warnings and errors because they don't want to play with `null`. Thus adding a fallback to an empty array. Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at> | ||||
* | | | | Merge pull request #23426 from nextcloud/backport/23021/stable20 | Morris Jobke | 2020-10-19 | 1 | -14/+56 |
|\ \ \ \ | | | | | | | | | | | [stable20] allow using saved login credentials for notify | ||||
| * | | | | also give storage backend it's change to manipulate the config | Robin Appelman | 2020-10-13 | 1 | -0/+9 |
| | | | | | | | | | | | | | | | | | | | | Signed-off-by: Robin Appelman <robin@icewind.nl> | ||||
| * | | | | allow using saved login credentials for notify | Robin Appelman | 2020-10-13 | 1 | -14/+47 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | when only the user is provided, we use to provided user to try and get saved login credentials Signed-off-by: Robin Appelman <robin@icewind.nl> | ||||
* | | | | | Merge pull request #23438 from nextcloud/disable-notify-self-check-20 | Morris Jobke | 2020-10-19 | 1 | -1/+10 |
|\ \ \ \ \ | | | | | | | | | | | | | [20] add option to disable notify self check | ||||
| * | | | | | add option to disable notify self check | Robin Appelman | 2020-10-14 | 1 | -1/+10 |
| | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Robin Appelman <robin@icewind.nl> | ||||
* | | | | | | Merge pull request #23548 from nextcloud/backport/23264/stable20 | blizzz | 2020-10-19 | 1 | -0/+8 |
|\ \ \ \ \ \ | | | | | | | | | | | | | | | [stable20] Add local version of escapeHTML | ||||
| * | | | | | | Add local version of escapeHTML | Daniel Kesselberg | 2020-10-18 | 1 | -0/+8 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de> | ||||
* | | | | | | | [tx-robot] updated from transifex | Nextcloud bot | 2020-10-19 | 18 | -10/+34 |
|/ / / / / / | |||||
* | | | | | | [tx-robot] updated from transifex | Nextcloud bot | 2020-10-18 | 20 | -2/+80 |
| | | | | | | |||||
* | | | | | | [tx-robot] updated from transifex | Nextcloud bot | 2020-10-17 | 2 | -6/+6 |
| | | | | | | |||||
* | | | | | | Merge pull request #23513 from nextcloud/backport/23478/stable20 | Morris Jobke | 2020-10-16 | 4 | -3/+30 |
|\ \ \ \ \ \ | |_|_|_|/ / |/| | | | | | [stable20] Clear cached app config while waiting for the SCSSCache lock to return | ||||
| * | | | | | Clear cached app config while waiting for the SCSSCache to finish processing ↵ | Morris Jobke | 2020-10-16 | 4 | -3/+30 |
|/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | the file Signed-off-by: Morris Jobke <hey@morrisjobke.de> | ||||
* | | | | | Merge pull request #23510 from nextcloud/backport/23488/stable20 | Morris Jobke | 2020-10-16 | 1 | -1/+0 |
|\ \ \ \ \ | | | | | | | | | | | | | [stable20] SCSSCacher - Lock should not be removed | ||||
| * | | | | | SCSSCacher - Lock should not be removed | Morris Jobke | 2020-10-16 | 1 | -1/+0 |
|/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | This is within the failed lock acquiring branch. So the lock is free by another process and should not be removed because the cached file (that was created by the process having the lock) appeared on the filesystem. Signed-off-by: Morris Jobke <hey@morrisjobke.de> | ||||
* | | | | | Merge pull request #23503 from nextcloud/backport/23490/stable20 | Morris Jobke | 2020-10-16 | 1 | -10/+25 |
|\ \ \ \ \ | | | | | | | | | | | | | [stable20] Provide log statements for SCSS cache | ||||
| * | | | | | Provide log statements for SCSS cache | Morris Jobke | 2020-10-16 | 1 | -10/+25 |
| | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de> | ||||
* | | | | | | Merge pull request #23480 from nextcloud/backport/23401/stable20 | Morris Jobke | 2020-10-16 | 4 | -125/+1142 |
|\ \ \ \ \ \ | | | | | | | | | | | | | | | [stable20] Use own psalm instead of a global one | ||||
| * | | | | | | Do not fail on changes to baseline.xml | Morris Jobke | 2020-10-16 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de> | ||||
| * | | | | | | Update psalm-baseline | Morris Jobke | 2020-10-16 | 1 | -1/+29 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de> | ||||
| * | | | | | | Update the baseline | Christoph Wurst | 2020-10-16 | 1 | -37/+111 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at> | ||||
| * | | | | | | Use own psalm instead of a global one | Christoph Wurst | 2020-10-16 | 4 | -93/+1008 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at> | ||||
* | | | | | | | Merge pull request #23498 from nextcloud/backport/23492/stable20 | Morris Jobke | 2020-10-16 | 1 | -1/+2 |
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | [stable20] SharedMountTest.php:367 is unreliable | ||||
| * | | | | | | | SharedMountTest.php:367 is unreliable | Morris Jobke | 2020-10-16 | 1 | -1/+2 |
| |/ / / / / / | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de> | ||||
* | | | | | | | Merge pull request #23472 from nextcloud/backport/23464/stable20 | Morris Jobke | 2020-10-16 | 2 | -12/+15 |
|\ \ \ \ \ \ \ | |_|/ / / / / |/| | | | | | | [stable20] Add psalm types for the migration schema closure |