summaryrefslogtreecommitdiffstats
path: root/lib
Commit message (Collapse)AuthorAgeFilesLines
* fix(DB): Update comment to state why we still use the max 4k limitJoas Schilling2023-10-061-1/+3
| | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* fix(sqlite): Remove some old SQLite cheatsJoas Schilling2023-10-061-11/+0
| | | | | | | - Doctrine correctly forces integer for autoincrement by now - Doctrine correctly maintains integer types by now Signed-off-by: Joas Schilling <coding@schilljs.com>
* fix(oracle): Move away from internal and deprecated SchemaDiff APIJoas Schilling2023-10-061-149/+90
| | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* fix(dbal): Move migrator away from deprecated callsJoas Schilling2023-10-061-11/+9
| | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* fix(mysql): Remove custom MySQL workaround from 2015Joas Schilling2023-10-064-54/+0
| | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* fix(postgres): Remove old Postgres 9.4 workaroundJoas Schilling2023-10-064-60/+0
| | | | | | | | Postgres 10 is the minimum in the meantime and doctrine/dbal fixed this in 2.6.0 already ref https://github.com/doctrine/dbal/pull/2614 Signed-off-by: Joas Schilling <coding@schilljs.com>
* fix(sqlite): Remove no longer required autoincrement fixJoas Schilling2023-10-065-108/+2
| | | | | | | | | - I installed current master and exported the schema as SQL - Then I went to this branch, removed the content of the run() method (so made it no-op) - I installed again and exported the schema as SQL - The files are exactly the same, so whatever we tried to fix was fixed since 2015 in doctrine dbal Signed-off-by: Joas Schilling <coding@schilljs.com>
* fix(dbal): Doctrine\DBAL\Connection::PARAM_* types are deprecatedJoas Schilling2023-10-061-2/+3
| | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* fix(user): Log affected user of app token login name mismatchChristoph Wurst2023-10-061-0/+2
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Merge pull request #40745 from nextcloud/fix/noid/ocm-provider-rewrite-rulesArthur Schiwon2023-10-051-1/+1
|\ | | | | fix ocm-provider rewrite rules
| * fix ocm-provider rewrite rulesMaxence Lange2023-10-021-1/+1
| | | | | | Signed-off-by: Maxence Lange <maxence@artificial-owl.com>
* | Merge pull request #40439 from Koc/feature/clickable-logoJohn Molakvoæ2023-10-041-0/+4
|\ \
| * | Make logo in header clickable in the shared file viewKonstantin Myakshin2023-10-041-0/+4
| | | | | | | | | | | | Signed-off-by: Konstantin Myakshin <molodchick@gmail.com>
* | | Fix(l10n): Update translations from TransifexNextcloud bot2023-10-042-0/+2
| | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | Refactors lib/private/Collaboration.Faraz Samapoor2023-10-039-214/+61
| | | | | | | | | | | | | | | | | | Mainly using PHP8's constructor property promotion. Signed-off-by: Faraz Samapoor <f.samapoor@gmail.com>
* | | Fix(l10n): Update translations from TransifexNextcloud bot2023-10-032-0/+2
| |/ |/| | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | Merge pull request #40656 from nextcloud/feat/backgroundjob/schedule-job-afterChristoph Wurst2023-10-022-7/+27
|\ \ | | | | | | feat(backgroundjob): Schedule job after <timestamp>
| * | feat(backgroundjob): Schedule job after <timestamp>Christoph Wurst2023-09-292-7/+27
| | | | | | | | | | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* | | Merge pull request #40734 from nextcloud/debt/noid/align-param-nameDaniel2023-10-012-4/+4
|\ \ \
| * | | chore: rename serializedClosure to argument to align with parent classDaniel Kesselberg2023-09-302-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | To make psalm happy ;) Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
* | | | Allow PHP 8.3 in version checkCôme Chilliet2023-09-301-3/+3
|/ / / | | | | | | | | | Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
* | | Fix(l10n): Update translations from TransifexNextcloud bot2023-09-302-2/+2
| | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | fix(systemreport): Mask onlyoffice secret as sensitiveJoas Schilling2023-09-291-0/+3
|/ / | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* | Merge pull request #39224 from shdehnavi/null_coalescing_conversion_lib_privateF. E Noel Nfebe2023-09-2916-28/+24
|\ \ | | | | | | Convert isset ternary to null coalescing operator
| * | Convert isset ternary to null coalescing operatorHamid Dehnavi2023-09-2816-28/+24
| | | | | | | | | | | | Signed-off-by: Hamid Dehnavi <hamid.dev.pro@gmail.com>
* | | Fix(l10n): Update translations from TransifexNextcloud bot2023-09-292-0/+2
|/ / | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | Merge pull request #40617 from nextcloud/enh/allow-user-to-set-apporderCôme Chilliet2023-09-282-3/+21
|\ \ | | | | | | Read apporder from configuration value
| * | Fix behavior when defaultapp is emptyCôme Chilliet2023-09-281-0/+1
| | | | | | | | | | | | Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
| * | Default to first application if no default app is setCôme Chilliet2023-09-261-1/+14
| | | | | | | | | | | | Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
| * | Revert "Support admin default order for applications"Côme Chilliet2023-09-261-8/+2
| | | | | | | | | | | | | | | | | | This reverts commit a3a42591e2e85e5903217052b246e46dbbf4c1c7. Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
| * | Support admin default order for applicationsCôme Chilliet2023-09-251-2/+8
| | | | | | | | | | | | Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
| * | Read apporder from configuration valueCôme Chilliet2023-09-251-2/+6
| | | | | | | | | | | | Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
* | | Merge pull request #39011 from fsamapoor/refactor_lib_private_security_part1Côme Chilliet2023-09-2810-201/+65
|\ \ \ | | | | | | | | [1/3] Refactors lib/private/Security
| * | | Refactors lib/private/Security.Faraz Samapoor2023-09-2710-201/+65
| | | | | | | | | | | | | | | | | | | | | | | | Mainly using PHP8's constructor property promotion. Signed-off-by: Faraz Samapoor <fsa@adlas.at>
* | | | Fix(l10n): Update translations from TransifexNextcloud bot2023-09-282-2/+2
| |_|/ |/| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | refactor: Use DBAL's executeQuery instead of query (deprecated)Christoph Wurst2023-09-272-2/+2
|/ / | | | | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* | Fix(l10n): Update translations from TransifexNextcloud bot2023-09-272-0/+2
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | Merge pull request #39108 from fsamapoor/refactor_lib_private_lockCôme Chilliet2023-09-263-19/+17
|\ \ | | | | | | Refactors lib/private/Lock
| * | Refactors lib/private/Lock.Faraz Samapoor2023-09-263-19/+17
| | | | | | | | | | | | | | | | | | | | | | | | To improve code readability. Co-authored-by: Côme Chilliet <91878298+come-nc@users.noreply.github.com> Signed-off-by: Faraz Samapoor <f.samapoor@gmail.com> Signed-off-by: Faraz Samapoor <fsa@adlas.at>
* | | Merge pull request #40565 from nextcloud/fix/remove-writelogCôme Chilliet2023-09-267-62/+20
|\ \ \ | | | | | | | | Remove deprecated methods Util::writeLog and DIContainer::log
| * | | Remove deprecated methods Util::writeLog and DIContainer::logCôme Chilliet2023-09-257-62/+20
| | | | | | | | | | | | | | | | Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
* | | | Merge pull request #40620 from nextcloud/feat/noid/ocp-for-phonenumber-utilJoas Schilling2023-09-266-10/+130
|\ \ \ \ | |_|/ / |/| | | feat(phonenumber): Add OCP wrapper for PhoneNumber utils library
| * | | fix(phonenumber): Improve docs by adding input detailsJoas Schilling2023-09-252-15/+9
| | | | | | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
| * | | fix(phonenumber): Use the newly introduced API to limit 3rdparty lib usageJoas Schilling2023-09-251-10/+5
| | | | | | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
| * | | feat(phonenumber): Add OCP wrapper for PhoneNumber utils libraryJoas Schilling2023-09-255-0/+131
| | |/ | |/| | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* | | Merge pull request #40501 from nextcloud/fix/fix-int-size-in-files-scannerCôme Chilliet2023-09-252-4/+7
|\ \ \ | |/ / |/| | Store size in int|float for 32bit support
| * | Store size in int|float for 32bit supportCôme Chilliet2023-09-192-4/+7
| | | | | | | | | | | | Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
* | | Merge pull request #40505 from nextcloud/chore/noid/remove-opis-closureCôme Chilliet2023-09-251-2/+1
|\ \ \ | |_|/ |/| | chore(3rdparty): remove opis/closure
| * | chore(3rdparty): remove opis/closureDaniel Kesselberg2023-09-221-2/+1
| | | | | | | | | | | | | | | | | | | | | - We are using laravel/serializable-closure for a while now. - The package was there for compatibility reasons but does not play nice with PHP 8.1. Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
* | | Fix(l10n): Update translations from TransifexNextcloud bot2023-09-252-0/+2
| | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>