aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* | | | Merge pull request #53885 from nextcloud/remove-redundant-settingJohn Molakvoæ3 days3-9/+3
|\ \ \ \ | |_|/ / |/| | |
| * | | chore(assets): Recompile assetsremove-redundant-settingnextcloud-command3 days2-3/+3
| | | | | | | | | | | | | | | | Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
| * | | fix(files): Remove redundant settingkramo3 days1-6/+0
|/ / / | | | | | | | | | | | | | | | | | | | | | This setting is already present in the main view, where it is much more visible, it is also the only one that is documented. Having it in both places is redundant and unnecessary clutter. Signed-off-by: kramo <git@kramo.page>
* | | Merge pull request #53866 from nextcloud/chore/update-guzzle7Joas Schilling3 days2-12/+4
|\ \ \ | |/ / |/| | build(deps): Bump php-http/guzzle7-adapter from 1.0.0 to 1.1.0
| * | chore(Http\Client): fix linting issueschore/update-guzzle7Ferdinand Thiessen3 days1-12/+4
| | | | | | | | | | | | Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
| * | build(deps): Bump php-http/guzzle7-adapter from 1.0.0 to 1.1.0Ferdinand Thiessen3 days1-0/+0
| | | | | | | | | | | | | | | | | | - Add support for PHP 8.4, drop support for PHP version 7.2 Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
* | | Merge pull request #53872 from nextcloud/fix/headers-lifecycleJohn Molakvoæ3 days3-8/+44
|\ \ \ | |/ / |/| |
| * | chore(assets): Recompile assetsfix/headers-lifecyclenextcloud-command4 days2-3/+3
| | | | | | | | | | | | Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
| * | fix(files): ensure proper headers lifecycleskjnldsv4 days1-5/+41
| |/ | | | | | | Signed-off-by: skjnldsv <skjnldsv@protonmail.com>
* | Merge pull request #53537 from nextcloud/fix/cleanup-dependencyanalyserKate3 days8-271/+170
|\ \
| * | chore: update psalm baselinefix/cleanup-dependencyanalyserCôme Chilliet3 days1-12/+0
| | | | | | | | | | | | Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
| * | chore: Move info parsing related method from OC_App to InfoParserCôme Chilliet4 days6-158/+130
| | | | | | | | | | | | | | | | | | Also fix the tests Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
| * | chore: Cleanup DependencyAnalyzer and InfoParserCôme Chilliet4 days2-102/+41
| | | | | | | | | | | | | | | | | | Also fix support for database dependency with attributes in the info.xml Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
* | | Merge pull request #53072 from nextcloud/techdebt/standard-15/consumable-ocpJoas Schilling3 days24-52/+363
|\ \ \ | | | | | | | | feat(OCP): Consumable vs. Implementable public API
| * | | feat(OCP): Consumable vs. Implementable public APItechdebt/standard-15/consumable-ocpJoas Schilling3 days24-52/+363
|/ / / | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* | | fix(l10n): Update translations from TransifexNextcloud bot4 days188-420/+1156
| | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | Merge pull request #53763 from nextcloud/feat/task/analyze-imageLukas Schaefer4 days4-0/+99
|\ \ \ | |/ / |/| | feat(TaskProcessing): Add AnalyzeImage TaskType
| * | Merge branch 'master' into feat/task/analyze-imagefeat/task/analyze-imageLukas Schaefer4 days2518-8925/+39617
| |\ \
| * | | feat: support multiple imagesLukas Schaefer9 days4-13/+13
| | | | | | | | | | | | | | | | Signed-off-by: Lukas Schaefer <lukas@lschaefer.xyz>
| * | | feat(TaskProcessing): Add AnalyzeImage TaskTypeLukas Schaefer10 days4-0/+99
| | | | | | | | | | | | | | | | Signed-off-by: Lukas Schaefer <lukas@lschaefer.xyz>
* | | | Merge pull request #53523 from nextcloud/fix/cleanup-dicontainerCôme Chilliet4 days17-297/+164
|\ \ \ \ | |_|/ / |/| | | chore: Cleanup DIContainer class
| * | | fix: Tidy up middleware registration code and scope them to application ↵fix/cleanup-dicontainerCôme Chilliet4 days1-45/+28
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | container This make sure that all middlewares get a logger scoped to the application id, among other things. Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
| * | | fix: Use Server::get in files_sharing DeletedShareAPIControllerCôme Chilliet4 days1-5/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In this case we do not want the application DI container because we are requesting classes from other applications, so it’s better to ask the server container. We use \OCP\Server::get for this. Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
| * | | chore: update psalm baselineCôme Chilliet4 days1-9/+0
| | | | | | | | | | | | | | | | Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
| * | | fix: Do not use deprecated IServerContainer in EventDispatcherCôme Chilliet4 days2-21/+10
| | | | | | | | | | | | | | | | | | | | | | | | This caused a call to logger too soon in init phase Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
| * | | fix: Add back ContainerInterface service to DIContainerCôme Chilliet4 days1-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | Otherwise it gets resolved to \OC::$server. Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
| * | | fix: Put back ScopedPsrLogger serviceCôme Chilliet4 days1-2/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Cannot use an alias for this one, as it depends upon LoggerInterface so that creates an infinite loop. Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
| * | | fix: Make sure Request class can be dependency injected to fix ↵Côme Chilliet4 days2-12/+7
| | | | | | | | | | | | | | | | | | | | | | | | SameSiteCookieMiddleware injection Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
| * | | chore: Fix CrashReport\Registry testsCôme Chilliet4 days2-25/+23
| | | | | | | | | | | | | | | | Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
| * | | fix: Fix issues and tests in DIContainer and friendsCôme Chilliet4 days5-33/+23
| | | | | | | | | | | | | | | | | | | | | | | | Some tests related to MiddlewareDispatcher are still failing. Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
| * | | chore: Cleanup DIContainer classCôme Chilliet4 days7-168/+81
|/ / / | | | | | | | | | | | | | | | | | | | | | Also removed deprecated tag from the class as this class will not be removed, only the interface IAppContainer and associated methods should be removed. Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
* | | Merge pull request #53846 from nextcloud/enh/noid/taskpro-agency-audio-chatJulien Veyssier4 days5-3/+124
|\ \ \ | |_|/ |/| | [TaskProcessing] Add agency audio-to-audio task type
| * | feat(TaskProcessing): add agency audio-to-audio task typeenh/noid/taskpro-agency-audio-chatJulien Veyssier5 days5-3/+124
| | | | | | | | | | | | Signed-off-by: Julien Veyssier <julien-nc@posteo.net>
* | | Merge pull request #53824 from nextcloud/fix/FileList-renderJohn Molakvoæ4 days30-200/+276
|\ \ \
| * | | chore(assets): recompile assetsfix/FileList-renderskjnldsv4 days24-36/+36
| | | | | | | | | | | | | | | | Signed-off-by: skjnldsv <skjnldsv@protonmail.com>
| * | | fix(files): VirtualList rendering for scrolling calculationsskjnldsv4 days4-82/+105
| | | | | | | | | | | | | | | | Signed-off-by: skjnldsv <skjnldsv@protonmail.com>
| * | | fix(files): wait for nodes to be fetched before checking for opendetails or ↵skjnldsv4 days1-27/+24
| | | | | | | | | | | | | | | | | | | | | | | | openfile Signed-off-by: skjnldsv <skjnldsv@protonmail.com>
| * | | fix(files): use the configured default view for redirectFerdinand Thiessen4 days1-7/+8
| | | | | | | | | | | | | | | | Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
| * | | fix(files): make sure the FilesList is always mountedskjnldsv4 days4-71/+126
| | | | | | | | | | | | | | | | Signed-off-by: skjnldsv <skjnldsv@protonmail.com>
* | | | Merge pull request #53852 from ↵Joas Schilling4 days1-0/+0
|\ \ \ \ | |/ / / |/| | | | | | | | | | | nextcloud/dependabot/composer/mlocati/ip-lib-1.20.0 build(deps): Bump mlocati/ip-lib from 1.18.1 to 1.20.0
| * | | build(deps): Bump mlocati/ip-lib from 1.18.1 to 1.20.0Joas Schilling4 days1-0/+0
|/ / / | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* | | fix(l10n): Update translations from TransifexNextcloud bot5 days176-530/+854
| | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | Merge pull request #53840 from ↵Kate5 days3-7/+7
|\ \ \ | | | | | | | | | | | | nextcloud/fix/federatedfilesharing/dialog-callback
| * | | chore(assets): Recompile assetsfix/federatedfilesharing/dialog-callbacknextcloud-command5 days2-3/+3
| | | | | | | | | | | | | | | | Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
| * | | fix(federatedfilesharing): Fix external share being deleted when accepting shareprovokateurin5 days1-4/+4
| | | | | | | | | | | | | | | | Signed-off-by: provokateurin <kate@provokateurin.de>
* | | | Merge pull request #53737 from ↵Andy Scherzinger5 days31-38/+38
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | nextcloud/dependabot/github_actions/github-actions-3d94f56bd5 build(deps): bump the github-actions group with 4 updates
| * | | | build(deps): bump the github-actions group with 4 updatesdependabot/github_actions/github-actions-3d94f56bd5dependabot[bot]5 days31-38/+38
|/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bumps the github-actions group with 4 updates: [shivammathur/setup-php](https://github.com/shivammathur/setup-php), [cypress-io/github-action](https://github.com/cypress-io/github-action), [LizardByte/setup-python-action](https://github.com/lizardbyte/setup-python-action) and [github/codeql-action](https://github.com/github/codeql-action). Updates `shivammathur/setup-php` from 2.33.0 to 2.34.1 - [Release notes](https://github.com/shivammathur/setup-php/releases) - [Commits](https://github.com/shivammathur/setup-php/compare/cf4cade2721270509d5b1c766ab3549210a39a2a...0f7f1d08e3e32076e51cae65eb0b0c871405b16e) Updates `cypress-io/github-action` from 6.9.2 to 6.10.1 - [Release notes](https://github.com/cypress-io/github-action/releases) - [Changelog](https://github.com/cypress-io/github-action/blob/master/CHANGELOG.md) - [Commits](https://github.com/cypress-io/github-action/compare/be1bab96b388bbd9ce3887e397d373c8557e15af...6c143abc292aa835d827652c2ea025d098311070) Updates `LizardByte/setup-python-action` from 6fe61189717d4cb073a3219e234749125f53b5c2 to 5a025cb74cf0b07fd881ff40560db2bbc516f81a - [Release notes](https://github.com/lizardbyte/setup-python-action/releases) - [Commits](https://github.com/lizardbyte/setup-python-action/compare/6fe61189717d4cb073a3219e234749125f53b5c2...5a025cb74cf0b07fd881ff40560db2bbc516f81a) Updates `github/codeql-action` from 3.28.18 to 3.29.2 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/github/codeql-action/compare/ff0a06e83cb2de871e5a09832bc6a81e7276941f...181d5eefc20863364f96762470ba6f862bdef56b) --- updated-dependencies: - dependency-name: shivammathur/setup-php dependency-version: 2.34.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: cypress-io/github-action dependency-version: 6.10.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: LizardByte/setup-python-action dependency-version: 5a025cb74cf0b07fd881ff40560db2bbc516f81a dependency-type: direct:production dependency-group: github-actions - dependency-name: github/codeql-action dependency-version: 3.29.2 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
* | | | Merge pull request #53767 from nextcloud/jtr-fix-files-reminders-disabledAndy Scherzinger5 days1-1/+3
|\ \ \ \ | | | | | | | | | | fix(files_reminders): Don't load if disabled for user
| * | | | fix(files_reminders): Don't load if disabled for userjtr-fix-files-reminders-disabledJosh10 days1-1/+3
| | | | | | | | | | | | | | | Signed-off-by: Josh <josh.t.richards@gmail.com>
* | | | | Merge pull request #53847 from ↵Joas Schilling5 days1-0/+0
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | nextcloud/dependabot/composer/egulias/email-validator-4.0.4 build(deps): Bump egulias/email-validator from 4.0.2 to 4.0.4