summaryrefslogtreecommitdiffstats
path: root/lib
Commit message (Collapse)AuthorAgeFilesLines
* [tx-robot] updated from transifexNextcloud bot2021-02-02164-1062/+138
|
* [tx-robot] updated from transifexNextcloud bot2021-02-012-0/+6
|
* [tx-robot] updated from transifexNextcloud bot2021-01-318-38/+468
|
* [tx-robot] updated from transifexNextcloud bot2021-01-3012-0/+36
|
* The objectid is a stringRoeland Jago Douma2021-01-291-1/+1
| | | | | | | This allows the query to use the index. Else it has to resort on scanning all the rows. Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Fix app fetcher php comparison to allow wider rangesChristoph Wurst2021-01-271-10/+15
| | | | | | | | | | | When app app specifies php 7.4 as upper limit we have to allow the installation on php>7.4.0. The previous version check didn't do that. This adjusts the regexes to discard any irrelevant suffix after the three version numbers so that we can use more fine granular checks than php's version_compare can do out of the box, like for php 7.4 we only compare the major and minor version numbers and ignore the patch level. Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Revert "Fix comparison of PHP versions"Christoph Wurst2021-01-271-2/+2
| | | | This reverts commit bedd9acf7874b836bef224989c2ce7f5e3b0a2fa.
* [tx-robot] updated from transifexNextcloud bot2021-01-272-0/+2
|
* [tx-robot] updated from transifexNextcloud bot2021-01-252-4/+4
|
* adjust since blizzz2021-01-221-1/+1
| | | | | Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de> Co-authored-by: Morris Jobke <hey@morrisjobke.de>
* extend ILDAPProvider to allow reading arbitrairy ldap attributes for usersRobin Appelman2021-01-221-7/+17
| | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
* [tx-robot] updated from transifexNextcloud bot2021-01-222-0/+8
|
* [tx-robot] updated from transifexNextcloud bot2021-01-212-0/+2
|
* Compare and store the login name via the eventJoas Schilling2021-01-202-2/+13
| | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* Merge pull request #25193 from nextcloud/backport/25186/stable20Roeland Jago Douma2021-01-191-0/+1
|\ | | | | [stable20] Don't log keys on checkSignature
| * Don't log keys on checkSignatureJoas Schilling2021-01-181-0/+1
| | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* | [tx-robot] updated from transifexNextcloud bot2021-01-192-2/+2
|/
* [tx-robot] updated from transifexNextcloud bot2021-01-182-0/+4
|
* Merge pull request #25152 from nextcloud/backport/25138/stable20Roeland Jago Douma2021-01-171-2/+2
|\ | | | | [stable20] Fix comparison of PHP versions
| * Fix comparison of PHP versionsDamien Goutte-Gattat2021-01-151-2/+2
| | | | | | | | | | | | | | | | | | | | | | Use the builtin function `version_compare` to check an app's compatibility with the available PHP version, instead of reusing the `OC\App\CompareVersion::isCompatible` method which is intended to compare Nextcloud versions. PHP version strings do not always necessarily follow the simple Major.Minor.Patch format used by Nextcloud and therefore cannot be properly compared by that method. Signed-off-by: Damien Goutte-Gattat <dgouttegattat@incenp.org>
* | [tx-robot] updated from transifexNextcloud bot2021-01-172-2/+2
|/
* Add a hint about the direction of priorityJoas Schilling2021-01-152-3/+6
| | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* Merge pull request #25077 from nextcloud/backport/25034/stable20Morris Jobke2021-01-151-2/+2
|\ | | | | [stable20] Make sure to do priority app upgrades first
| * Make sure to do priority app upgrades firstJulius Härtl2021-01-111-2/+2
| | | | | | | | | | | | | | | | Otherwise those apps might not be loaded when the others app migrations are running. The previous loading of authentication apps in the upgrade step never worked as it just returns in maintenance mode Signed-off-by: Julius Härtl <jus@bitgrid.net>
* | CI satisfactionArthur Schiwon2021-01-141-1/+0
| | | | | | | | Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
* | DB: warn on parameter number constraintsArthur Schiwon2021-01-141-0/+30
| | | | | | | | Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
* | [tx-robot] updated from transifexNextcloud bot2021-01-132-4/+36
| |
* | [tx-robot] updated from transifexNextcloud bot2021-01-122-0/+6
|/
* [tx-robot] updated from transifexNextcloud bot2021-01-112-0/+4
|
* [tx-robot] updated from transifexNextcloud bot2021-01-094-0/+4
|
* [tx-robot] updated from transifexNextcloud bot2021-01-082-0/+2
|
* Catch throwable instead of exceptionRoeland Jago Douma2021-01-071-1/+1
| | | | | | | The error that gets thrown can also be a type error etc. So we should properly catch the Throwable. Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Merge pull request #24592 from nextcloud/backport/23912/stable20Morris Jobke2021-01-076-5/+91
|\ | | | | [stable20] use in objectstore copy
| * use in objectstore copyRobin Appelman2020-12-076-5/+91
| | | | | | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
* | Merge pull request #24976 from nextcloud/backport/24961/stable20Roeland Jago Douma2021-01-071-2/+2
|\ \ | | | | | | [stable20] Fix unreliable ViewTest
| * | Properly handle result when copying with failure and throw in testsJulius Härtl2021-01-051-2/+2
| | | | | | | | | | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* | | Set the JSCombiner cache if neededRoeland Jago Douma2021-01-071-0/+6
|/ / | | | | | | | | | | | | | | | | | | | | | | Found while debugging a customer setup. They had to flush their Redis. Hence the info was no longer there. Since they also used S3 this meant requesting the files over and over on template render. Which on S3 is not cheap. Now we just write it back if we can't get it from the cache in the first place. So that the next run has it cached properly again. Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* | Show unique displayname context in the sharing inputJulius Härtl2021-01-053-1/+10
| | | | | | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* | [tx-robot] updated from transifexNextcloud bot2021-01-052-0/+8
| |
* | [tx-robot] updated from transifexNextcloud bot2021-01-032-4/+4
| |
* | [tx-robot] updated from transifexNextcloud bot2021-01-012-2/+2
| |
* | [tx-robot] updated from transifexNextcloud bot2020-12-312-10/+10
| |
* | Merge pull request #24876 from nextcloud/backport/24874/stable20Roeland Jago Douma2020-12-302-4/+22
|\ \ | | | | | | [stable20] Avoid huge exception argument logging
| * | Avoid huge exception argument loggingRoeland Jago Douma2020-12-292-4/+22
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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>
* | | [tx-robot] updated from transifexNextcloud bot2020-12-302-0/+4
|/ /
* | [tx-robot] updated from transifexNextcloud bot2020-12-292-32/+32
| |
* | Merge pull request #24709 from nextcloud/backport/24683/stable20Roeland Jago Douma2020-12-281-1/+7
|\ \ | | | | | | [stable20] [Fix #24682]: ensure federation cloud id is retruned if FN property not found
| * | [Fix #24682]: ensure federation cloud id is retruned if FN property not foundGuillaume Virlet2020-12-211-1/+7
| | | | | | | | | | | | Signed-off-by: Guillaume Virlet <github@virlet.org>
* | | Fix IPv6 localhost regexJ0WI2020-12-221-1/+1
| | | | | | | | | | | | Signed-off-by: J0WI <J0WI@users.noreply.github.com>
* | | Merge pull request #24798 from nextcloud/backport/24796/stable20Roeland Jago Douma2020-12-221-1/+7
|\ \ \ | | | | | | | | [stable20] Actually set the TTL on redis set