]> source.dussan.org Git - nextcloud-server.git/log
nextcloud-server.git
2 months agofix(Storage\Local): Do not call getSourcePath() on SplFileInfo fix/storage-local/get-source-path-spl-file-info 48015/head
provokateurin [Sun, 15 Sep 2024 13:24:22 +0000 (15:24 +0200)]
fix(Storage\Local): Do not call getSourcePath() on SplFileInfo

Signed-off-by: provokateurin <kate@provokateurin.de>
2 months agoMerge pull request #48003 from nextcloud/artonge/fix/missing_dot
Ferdinand Thiessen [Sun, 15 Sep 2024 13:13:53 +0000 (15:13 +0200)]
Merge pull request #48003 from nextcloud/artonge/fix/missing_dot

fix: Restore missing dot in FilesListVirtual.vue

2 months agoMerge pull request #47999 from nextcloud/fix/noid/try-latest-buildjet-cache
John Molakvoæ [Sun, 15 Sep 2024 09:39:50 +0000 (11:39 +0200)]
Merge pull request #47999 from nextcloud/fix/noid/try-latest-buildjet-cache

2 months agochore: update BuildJet/cache to v4 fix/noid/try-latest-buildjet-cache 47999/head
John Molakvoæ [Sun, 15 Sep 2024 09:15:35 +0000 (11:15 +0200)]
chore: update BuildJet/cache to v4

Signed-off-by: John Molakvoæ <skjnldsv@users.noreply.github.com>
2 months agofix: Restore missing dot in FilesListVirtual.vue artonge/fix/missing_dot 48003/head
Louis Chemineau [Sun, 15 Sep 2024 09:09:37 +0000 (11:09 +0200)]
fix: Restore missing dot in FilesListVirtual.vue

Signed-off-by: Louis Chemineau <louis@chmn.me>
2 months agofix(ci): Use latest buildjet version
Marcel Müller [Sun, 15 Sep 2024 08:50:16 +0000 (10:50 +0200)]
fix(ci): Use latest buildjet version

Signed-off-by: Marcel Müller <marcel-mueller@gmx.de>
2 months agoMerge pull request #47990 from nextcloud/automated/noid/master-update-psalm-baseline
github-actions[bot] [Sun, 15 Sep 2024 05:17:28 +0000 (07:17 +0200)]
Merge pull request #47990 from nextcloud/automated/noid/master-update-psalm-baseline

[master] Update psalm-baseline.xml

2 months agochore(tests): Update psalm baseline 47990/head
nextcloud-command [Sun, 15 Sep 2024 02:37:53 +0000 (02:37 +0000)]
chore(tests): Update psalm baseline

Signed-off-by: GitHub <noreply@github.com>
2 months agoFix(l10n): Update translations from Transifex
Nextcloud bot [Sun, 15 Sep 2024 00:26:39 +0000 (00:26 +0000)]
Fix(l10n): Update translations from Transifex

Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2 months agoMerge pull request #47920 from nextcloud/artonge/feat/reset_route_when_sidebar_and_vi...
Louis [Sat, 14 Sep 2024 21:49:47 +0000 (23:49 +0200)]
Merge pull request #47920 from nextcloud/artonge/feat/reset_route_when_sidebar_and_viewer_are_close

feat: Reset route if neither the Viewer of the Sidebar is open

2 months agofeat: Reset route if neither the Viewer of the Sidebar is open 47920/head
Louis Chemineau [Thu, 12 Sep 2024 12:31:31 +0000 (14:31 +0200)]
feat: Reset route if neither the Viewer of the Sidebar is open

When the viewer or the sidebar is opened, we add the fileid to the route.
When both of them are closed, we do not remove the fileid from the route.
This means that, upon reload, the sidebar will be opened even though it was closed previously.

This PR ensure that the fileid is removed from the route when both the Sidebar and the Viewer are closed.

Signed-off-by: Louis Chemineau <louis@chmn.me>
2 months agoMerge pull request #47928 from nextcloud/bugfix/noid/update-opendyslexic
John Molakvoæ [Sat, 14 Sep 2024 19:19:19 +0000 (21:19 +0200)]
Merge pull request #47928 from nextcloud/bugfix/noid/update-opendyslexic

2 months agoMerge pull request #47971 from nextcloud/fix/do-not-try-to-change-response-code-too...
Côme Chilliet [Sat, 14 Sep 2024 19:18:47 +0000 (21:18 +0200)]
Merge pull request #47971 from nextcloud/fix/do-not-try-to-change-response-code-too-late

fix: Do not try to set HTTP response code on already closed connection

2 months agoMerge pull request #47293 from nextcloud/feat/logger-allow-psr-loglevel
Ferdinand Thiessen [Sat, 14 Sep 2024 18:05:12 +0000 (20:05 +0200)]
Merge pull request #47293 from nextcloud/feat/logger-allow-psr-loglevel

feat(PsrLoggerAdapter): Allow to use `Psr\Log\LogLevel` for `log` method

2 months agoMerge pull request #47968 from nextcloud/fixKeyExFileExt
John Molakvoæ [Sat, 14 Sep 2024 16:53:38 +0000 (18:53 +0200)]
Merge pull request #47968 from nextcloud/fixKeyExFileExt

2 months agofeat(PsrLoggerAdapter): Allow to use `Psr\Log\LogLevel` for `log` method 47293/head
Ferdinand Thiessen [Fri, 16 Aug 2024 22:25:08 +0000 (00:25 +0200)]
feat(PsrLoggerAdapter): Allow to use `Psr\Log\LogLevel` for `log` method

There is the `Psr\Log\LogLevel` class defining loglevel constants,
to be fully compatible we should at least support those logging levels.
Moreover this is the last part that was still required from `ILogger` interface,
as we did not have alternatives for the loglevel constants.

Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
2 months agofix: Do not try to set HTTP response code on already closed connection 47971/head
Côme Chilliet [Sat, 14 Sep 2024 12:20:49 +0000 (14:20 +0200)]
fix: Do not try to set HTTP response code on already closed connection

This avoids a PHP warning in the logs about trying to set the response
 code while the output already started. It’s useless to try to print an
 error page anyway in this situation because the connection was closed
 already.

Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
2 months agofix(files_external): Check key exists before accessing it fixKeyExFileExt 47968/head
Git'Fellow [Sat, 14 Sep 2024 09:21:17 +0000 (11:21 +0200)]
fix(files_external): Check key exists before accessing it

Signed-off-by: Git'Fellow <12234510+solracsf@users.noreply.github.com>
2 months agoMerge pull request #47965 from nextcloud/dependabot/npm_and_yarn/express-4.21.0
dependabot[bot] [Sat, 14 Sep 2024 06:20:20 +0000 (06:20 +0000)]
Merge pull request #47965 from nextcloud/dependabot/npm_and_yarn/express-4.21.0

2 months agobuild(deps-dev): bump express from 4.19.2 to 4.21.0 47965/head
dependabot[bot] [Sat, 14 Sep 2024 06:01:41 +0000 (06:01 +0000)]
build(deps-dev): bump express from 4.19.2 to 4.21.0

Bumps [express](https://github.com/expressjs/express) from 4.19.2 to 4.21.0.
- [Release notes](https://github.com/expressjs/express/releases)
- [Changelog](https://github.com/expressjs/express/blob/4.21.0/History.md)
- [Commits](https://github.com/expressjs/express/compare/4.19.2...4.21.0)

---
updated-dependencies:
- dependency-name: express
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
2 months agoMerge pull request #47960 from nextcloud/dependabot/composer/vendor-bin/psalm/vimeo...
dependabot[bot] [Sat, 14 Sep 2024 06:00:15 +0000 (06:00 +0000)]
Merge pull request #47960 from nextcloud/dependabot/composer/vendor-bin/psalm/vimeo/psalm-5.26.1

2 months agoMerge pull request #47961 from nextcloud/automated/noid/master-update-psalm-baseline
github-actions[bot] [Sat, 14 Sep 2024 04:31:55 +0000 (04:31 +0000)]
Merge pull request #47961 from nextcloud/automated/noid/master-update-psalm-baseline

[master] Update psalm-baseline.xml

2 months agochore(tests): Update psalm baseline 47961/head
nextcloud-command [Sat, 14 Sep 2024 02:36:49 +0000 (02:36 +0000)]
chore(tests): Update psalm baseline

Signed-off-by: GitHub <noreply@github.com>
2 months agobuild(deps): bump vimeo/psalm from 5.25.0 to 5.26.1 in /vendor-bin/psalm 47960/head
dependabot[bot] [Sat, 14 Sep 2024 02:19:49 +0000 (02:19 +0000)]
build(deps): bump vimeo/psalm from 5.25.0 to 5.26.1 in /vendor-bin/psalm

Bumps [vimeo/psalm](https://github.com/vimeo/psalm) from 5.25.0 to 5.26.1.
- [Release notes](https://github.com/vimeo/psalm/releases)
- [Commits](https://github.com/vimeo/psalm/compare/5.25.0...5.26.1)

---
updated-dependencies:
- dependency-name: vimeo/psalm
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2 months agoFix(l10n): Update translations from Transifex
Nextcloud bot [Sat, 14 Sep 2024 00:21:21 +0000 (00:21 +0000)]
Fix(l10n): Update translations from Transifex

Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2 months agoMerge pull request #47954 from nextcloud/fix/files/cache-search-query-parameter-name
Kate [Fri, 13 Sep 2024 16:59:14 +0000 (18:59 +0200)]
Merge pull request #47954 from nextcloud/fix/files/cache-search-query-parameter-name

2 months agofix(files): Adjust Cache::searchQuery() parameter name to match interface 47954/head
provokateurin [Fri, 13 Sep 2024 16:13:44 +0000 (18:13 +0200)]
fix(files): Adjust Cache::searchQuery() parameter name to match interface

Signed-off-by: provokateurin <kate@provokateurin.de>
2 months agoMerge pull request #47927 from nextcloud/fix/migrate-away-from-oc_app
Côme Chilliet [Fri, 13 Sep 2024 15:44:38 +0000 (17:44 +0200)]
Merge pull request #47927 from nextcloud/fix/migrate-away-from-oc_app

Migrate away from OC_App to IAppManager

2 months agoMerge pull request #47945 from nextcloud/fix/external-storage-creds
John Molakvoæ [Fri, 13 Sep 2024 14:57:01 +0000 (16:57 +0200)]
Merge pull request #47945 from nextcloud/fix/external-storage-creds

2 months agochore(assets): Recompile assets 47945/head
nextcloud-command [Fri, 13 Sep 2024 14:33:45 +0000 (14:33 +0000)]
chore(assets): Recompile assets

Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
2 months agofix(files_external): broken credentials dialog
John Molakvoæ (skjnldsv) [Fri, 13 Sep 2024 11:57:30 +0000 (13:57 +0200)]
fix(files_external): broken credentials dialog

Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
2 months agoMerge pull request #47865 from nextcloud/admin_audit/enh/move-to-event-listeners-v2
Côme Chilliet [Fri, 13 Sep 2024 14:21:44 +0000 (16:21 +0200)]
Merge pull request #47865 from nextcloud/admin_audit/enh/move-to-event-listeners-v2

Move admin_audit to proper event listeners v2

2 months agofix: Fix phpdoc wording 47865/head
Côme Chilliet [Fri, 13 Sep 2024 14:01:55 +0000 (16:01 +0200)]
fix: Fix phpdoc wording

Co-authored-by: Anna <anna@nextcloud.com>
Signed-off-by: Côme Chilliet <91878298+come-nc@users.noreply.github.com>
2 months agoMerge pull request #47883 from nextcloud/fix/setup-checks
Ferdinand Thiessen [Fri, 13 Sep 2024 11:42:41 +0000 (13:42 +0200)]
Merge pull request #47883 from nextcloud/fix/setup-checks

fix(setup-checks): Ensure URL with webroot works

2 months agoMerge pull request #47933 from nextcloud/bugfix/noid/throw-precondition-failure-when...
Joas Schilling [Fri, 13 Sep 2024 11:39:21 +0000 (13:39 +0200)]
Merge pull request #47933 from nextcloud/bugfix/noid/throw-precondition-failure-when-not-matching

fix(config): Throw PreconditionException always when it didn't match

2 months agorefactor(settings): `CheckServerResponseTrait` always expect absolute path 47883/head
Ferdinand Thiessen [Thu, 12 Sep 2024 18:44:59 +0000 (20:44 +0200)]
refactor(settings): `CheckServerResponseTrait` always expect absolute path

Co-authored-by: Ferdinand Thiessen <opensource@fthiessen.de>
Co-authored-by: Côme Chilliet <91878298+come-nc@users.noreply.github.com>
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
2 months agofix(setup-checks): Ensure URL with webroot works
Ferdinand Thiessen [Tue, 10 Sep 2024 23:14:56 +0000 (01:14 +0200)]
fix(setup-checks): Ensure URL with webroot works

We basically mock the way `URLGenerator::getAbsoluteURL` works,
so we must make sure that the URL might already contain the webroot.
Because `baseURL` and `cliURL` also contain the webroot we need to remove
the webroot from the URL first.

Co-authored-by: Ferdinand Thiessen <opensource@fthiessen.de>
Co-authored-by: Daniel <mail@danielkesselberg.de>
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
2 months agoMerge pull request #47932 from nextcloud/automated/noid/master-update-psalm-baseline
github-actions[bot] [Fri, 13 Sep 2024 09:04:43 +0000 (09:04 +0000)]
Merge pull request #47932 from nextcloud/automated/noid/master-update-psalm-baseline

[master] Update psalm-baseline.xml

2 months agoMerge pull request #47854 from nextcloud/validAppsFromAppStore
Git'Fellow [Fri, 13 Sep 2024 08:55:33 +0000 (10:55 +0200)]
Merge pull request #47854 from nextcloud/validAppsFromAppStore

fix(appstore): Ensure returned apps from AppStore are valid

2 months agochore(tests): Fix Router test by mocking AppManager methods correctly 47927/head
Côme Chilliet [Fri, 13 Sep 2024 08:26:36 +0000 (10:26 +0200)]
chore(tests): Fix Router test by mocking AppManager methods correctly

Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
2 months agofix: Replace OC_App::getAllApps with a method in AppManager
Côme Chilliet [Thu, 12 Sep 2024 14:38:35 +0000 (16:38 +0200)]
fix: Replace OC_App::getAllApps with a method in AppManager

Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
2 months agochore: Migrate cleanAppId and getAppPath calls to IAppManager from OC_App
Côme Chilliet [Thu, 12 Sep 2024 14:17:19 +0000 (16:17 +0200)]
chore: Migrate cleanAppId and getAppPath calls to IAppManager from OC_App

Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
2 months agofix: check if key is set 47854/head
Git'Fellow [Fri, 13 Sep 2024 07:49:09 +0000 (09:49 +0200)]
fix: check if key is set

Co-authored-by: Côme Chilliet <91878298+come-nc@users.noreply.github.com>
Signed-off-by: Git'Fellow <12234510+solracsf@users.noreply.github.com>
2 months agofix(config): Throw PreconditionException always when it didn't match 47933/head
Joas Schilling [Fri, 13 Sep 2024 07:16:35 +0000 (09:16 +0200)]
fix(config): Throw PreconditionException always when it didn't match

Previously even when the precondition did not match, the call "passed"
when the after value was the expected one. This however can lead to
race conditions, duplicate code excutions and other things.

Signed-off-by: Joas Schilling <coding@schilljs.com>
2 months agochore(tests): Update psalm baseline 47932/head
nextcloud-command [Fri, 13 Sep 2024 02:32:35 +0000 (02:32 +0000)]
chore(tests): Update psalm baseline

Signed-off-by: GitHub <noreply@github.com>
2 months agoFix(l10n): Update translations from Transifex
Nextcloud bot [Fri, 13 Sep 2024 00:20:46 +0000 (00:20 +0000)]
Fix(l10n): Update translations from Transifex

Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2 months agofix(tests): Test OTF font file bugfix/noid/update-opendyslexic 47928/head
Joas Schilling [Thu, 12 Sep 2024 21:04:16 +0000 (23:04 +0200)]
fix(tests): Test OTF font file

Signed-off-by: Joas Schilling <coding@schilljs.com>
2 months agoMerge pull request #47930 from nextcloud/chore/noid/bump-db-version
Andy Scherzinger [Thu, 12 Sep 2024 19:37:46 +0000 (21:37 +0200)]
Merge pull request #47930 from nextcloud/chore/noid/bump-db-version

build: bump version to run sha265 for background job arguments migration

2 months agochore: bump 3rdparty 47930/head
Daniel Kesselberg [Thu, 12 Sep 2024 16:17:46 +0000 (18:17 +0200)]
chore: bump 3rdparty

Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
2 months agobuild: bump version to run sha265 for background job arguments migration
Daniel Kesselberg [Thu, 12 Sep 2024 15:57:39 +0000 (17:57 +0200)]
build: bump version to run sha265 for background job arguments migration

Follow-up for https://github.com/nextcloud/server/pull/47769

Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
2 months agofix(a11y): Update OpenDyslexic from 0.920 to 2.001
Joas Schilling [Thu, 12 Sep 2024 14:37:27 +0000 (16:37 +0200)]
fix(a11y): Update OpenDyslexic from 0.920 to 2.001

Signed-off-by: Joas Schilling <coding@schilljs.com>
2 months agoMerge pull request #47526 from nextcloud/jtr/fix-ftp-custom-port-ui
Josh [Thu, 12 Sep 2024 13:34:47 +0000 (09:34 -0400)]
Merge pull request #47526 from nextcloud/jtr/fix-ftp-custom-port-ui

fix(files_external): Handling in FTP UI for custom ports

2 months agoMerge pull request #47527 from nextcloud/fix-sftp-custom-port-ui
Josh [Thu, 12 Sep 2024 13:34:32 +0000 (09:34 -0400)]
Merge pull request #47527 from nextcloud/fix-sftp-custom-port-ui

fix(files_external): Handling in SFTP UI for custom ports

2 months agoMerge pull request #47685 from nextcloud/fix/move-apihelper-to-oc-namespace
Côme Chilliet [Thu, 12 Sep 2024 12:34:07 +0000 (14:34 +0200)]
Merge pull request #47685 from nextcloud/fix/move-apihelper-to-oc-namespace

fix: Move OC_API into \OC\ApiHelper in standard namespace

2 months agoMerge pull request #47914 from nextcloud/fix/noid/ldap-range-index-check
Arthur Schiwon [Thu, 12 Sep 2024 10:53:44 +0000 (12:53 +0200)]
Merge pull request #47914 from nextcloud/fix/noid/ldap-range-index-check

fix(LDAP): check index before accessing it

2 months agofix(LDAP): check index before accessing it 47914/head
Arthur Schiwon [Thu, 12 Sep 2024 08:38:46 +0000 (10:38 +0200)]
fix(LDAP): check index before accessing it

Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
2 months agoMerge pull request #47913 from nextcloud/fix/whiteboard-app-bundles
Julius Knorr [Thu, 12 Sep 2024 09:07:22 +0000 (11:07 +0200)]
Merge pull request #47913 from nextcloud/fix/whiteboard-app-bundles

fix: Add whiteboard to education and public sector bundle

2 months agofix: Add whiteboard to education and public sector bundle 47913/head
Julius Knorr [Thu, 12 Sep 2024 07:08:46 +0000 (09:08 +0200)]
fix: Add whiteboard to education and public sector bundle

Signed-off-by: Julius Knorr <jus@bitgrid.net>
2 months agoMerge pull request #47906 from nextcloud/chore/trashbin-retention-config-cleanup
Andy Scherzinger [Thu, 12 Sep 2024 06:51:22 +0000 (08:51 +0200)]
Merge pull request #47906 from nextcloud/chore/trashbin-retention-config-cleanup

chore: Update trashbin retention documentation with exceeded quota details

2 months agoFix(l10n): Update translations from Transifex
Nextcloud bot [Thu, 12 Sep 2024 00:20:20 +0000 (00:20 +0000)]
Fix(l10n): Update translations from Transifex

Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2 months agochore: Update trashbin retention documentation with exceeded quota details 47906/head
Christopher Ng [Wed, 11 Sep 2024 18:57:31 +0000 (11:57 -0700)]
chore: Update trashbin retention documentation with exceeded quota details

Signed-off-by: Christopher Ng <chrng8@gmail.com>
2 months agoMerge pull request #47586 from nextcloud/fix/color
Ferdinand Thiessen [Wed, 11 Sep 2024 13:10:09 +0000 (15:10 +0200)]
Merge pull request #47586 from nextcloud/fix/color

fix(theming): Add migration to restore primary color after separating primary and background

2 months agoMerge pull request #47891 from nextcloud/fix/make-watcher-null-safe
Kate [Wed, 11 Sep 2024 12:44:20 +0000 (14:44 +0200)]
Merge pull request #47891 from nextcloud/fix/make-watcher-null-safe

2 months agochore(assets): Recompile assets 47891/head
nextcloud-command [Wed, 11 Sep 2024 11:53:41 +0000 (11:53 +0000)]
chore(assets): Recompile assets

Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
2 months agofix(files): Make `openMenu` watcher null safe
Ferdinand Thiessen [Wed, 11 Sep 2024 09:51:20 +0000 (11:51 +0200)]
fix(files): Make `openMenu` watcher null safe

Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
2 months agoMerge pull request #47339 from nextcloud/fix/leave-share-instead-of-delete
John Molakvoæ [Wed, 11 Sep 2024 11:42:15 +0000 (13:42 +0200)]
Merge pull request #47339 from nextcloud/fix/leave-share-instead-of-delete

fix: Display 'Leave share' instead of 'Delete'

2 months agofix(files_sharing): adjust permissions from custom edit and delete check methods 47339/head
skjnldsv [Thu, 22 Aug 2024 08:02:37 +0000 (10:02 +0200)]
fix(files_sharing): adjust permissions from custom edit and delete check methods

Signed-off-by: skjnldsv <skjnldsv@protonmail.com>
2 months agoMerge pull request #47881 from nextcloud/fix/new-group-icon
Pytal [Wed, 11 Sep 2024 09:19:39 +0000 (02:19 -0700)]
Merge pull request #47881 from nextcloud/fix/new-group-icon

fix(settings): Add back create group icon

2 months agofix(appstore): Ensure returned apps from AppStore are valid
Git'Fellow [Mon, 9 Sep 2024 17:50:11 +0000 (19:50 +0200)]
fix(appstore): Ensure returned apps from AppStore are valid

Signed-off-by: Git'Fellow <12234510+solracsf@users.noreply.github.com>
fix: lint

chore: remove space

Signed-off-by: Git'Fellow <12234510+solracsf@users.noreply.github.com>
fix: check if response array is null

Signed-off-by: Git'Fellow <12234510+solracsf@users.noreply.github.com>
chore: Add log

2 months agoMerge pull request #47884 from nextcloud/chore/blame-ignore
Daniel [Wed, 11 Sep 2024 09:05:38 +0000 (11:05 +0200)]
Merge pull request #47884 from nextcloud/chore/blame-ignore

chore: Add another coding standard commit to the git blame ignore

2 months agoFix(l10n): Update translations from Transifex
Nextcloud bot [Wed, 11 Sep 2024 00:21:11 +0000 (00:21 +0000)]
Fix(l10n): Update translations from Transifex

Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2 months agochore: Add another coding standard commit to the git blame ignore 47884/head
Ferdinand Thiessen [Tue, 10 Sep 2024 23:30:11 +0000 (01:30 +0200)]
chore: Add another coding standard commit to the git blame ignore

Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
2 months agochore(assets): Recompile assets 47881/head
nextcloud-command [Tue, 10 Sep 2024 21:30:55 +0000 (21:30 +0000)]
chore(assets): Recompile assets

Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
2 months agofix(settings): Add back create group icon
Christopher Ng [Tue, 10 Sep 2024 21:11:51 +0000 (14:11 -0700)]
fix(settings): Add back create group icon

Signed-off-by: Christopher Ng <chrng8@gmail.com>
2 months agoMerge pull request #47848 from nextcloud/fix/files-context-menu
Ferdinand Thiessen [Tue, 10 Sep 2024 16:13:13 +0000 (18:13 +0200)]
Merge pull request #47848 from nextcloud/fix/files-context-menu

fix(files): Reset context menu position on close

2 months agofix: Adjust types of IQueryBuilder to properly allow joining with sub-query 47586/head
Ferdinand Thiessen [Mon, 9 Sep 2024 15:42:01 +0000 (17:42 +0200)]
fix: Adjust types of IQueryBuilder to properly allow joining with sub-query

Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
2 months agofix: Use migration instead of repair step for restoring custom color
Ferdinand Thiessen [Mon, 2 Sep 2024 11:24:20 +0000 (13:24 +0200)]
fix: Use migration instead of repair step for restoring custom color

Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
2 months agochore: Use `IAppConfig` instead of `IConfig->getAppValue`
Ferdinand Thiessen [Sun, 1 Sep 2024 11:16:49 +0000 (13:16 +0200)]
chore: Use `IAppConfig` instead of `IConfig->getAppValue`

Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
2 months agofix: Add repair step to restore primary color after separating primary and background
Ferdinand Thiessen [Wed, 28 Aug 2024 18:14:28 +0000 (20:14 +0200)]
fix: Add repair step to restore primary color after separating primary and background

Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
2 months agofix(theming): Allow to specify a userId manually in BackgroundService
Ferdinand Thiessen [Mon, 2 Sep 2024 13:31:41 +0000 (15:31 +0200)]
fix(theming): Allow to specify a userId manually in BackgroundService

Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
2 months agoMerge pull request #47662 from nextcloud/fix/notification/validate-rich-object-key...
Kate [Tue, 10 Sep 2024 15:40:46 +0000 (17:40 +0200)]
Merge pull request #47662 from nextcloud/fix/notification/validate-rich-object-key-value-types

2 months agoMerge pull request #47853 from nextcloud/clearify-swift-exception
Robin Appelman [Tue, 10 Sep 2024 14:45:19 +0000 (16:45 +0200)]
Merge pull request #47853 from nextcloud/clearify-swift-exception

fix: make swift connect exception message more informative

2 months agofix(Activity): Restrict IEvent rich object parameters type 47662/head
provokateurin [Mon, 9 Sep 2024 18:39:28 +0000 (20:39 +0200)]
fix(Activity): Restrict IEvent rich object parameters type

Signed-off-by: provokateurin <kate@provokateurin.de>
2 months agofix(SetupCheck): Restrict SetupResult rich object parameters type
provokateurin [Mon, 9 Sep 2024 18:38:34 +0000 (20:38 +0200)]
fix(SetupCheck): Restrict SetupResult rich object parameters type

Signed-off-by: provokateurin <kate@provokateurin.de>
2 months agofix(INotification): Restrict rich object parameters type
provokateurin [Sun, 1 Sep 2024 19:13:41 +0000 (21:13 +0200)]
fix(INotification): Restrict rich object parameters type

Signed-off-by: provokateurin <kate@provokateurin.de>
2 months agofix(RichObjectStrings/Validator): Validate key value types of rich object parameters
provokateurin [Sat, 31 Aug 2024 15:00:19 +0000 (17:00 +0200)]
fix(RichObjectStrings/Validator): Validate key value types of rich object parameters

Signed-off-by: provokateurin <kate@provokateurin.de>
2 months agoMerge pull request #47834 from nextcloud/retAppsManDis
John Molakvoæ [Tue, 10 Sep 2024 14:31:17 +0000 (16:31 +0200)]
Merge pull request #47834 from nextcloud/retAppsManDis

2 months agochore: Add descriptions for new events and fix copyright year
Côme Chilliet [Tue, 10 Sep 2024 14:20:30 +0000 (16:20 +0200)]
chore: Add descriptions for new events and fix copyright year

Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
2 months agofix(appstore): disabled appstore log level bump from debug to info 47834/head
John Molakvoæ [Tue, 10 Sep 2024 14:00:56 +0000 (16:00 +0200)]
fix(appstore): disabled appstore log level bump from debug to info

Co-authored-by: Joas Schilling <213943+nickvergessen@users.noreply.github.com>
Signed-off-by: John Molakvoæ <skjnldsv@users.noreply.github.com>
2 months agofix(admin_audit): Remove now unused methods and classes
Côme Chilliet [Tue, 10 Sep 2024 12:24:55 +0000 (14:24 +0200)]
fix(admin_audit): Remove now unused methods and classes

Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
2 months agochore(admin_audit): Fix License headers on new files
Côme Chilliet [Tue, 10 Sep 2024 10:25:44 +0000 (12:25 +0200)]
chore(admin_audit): Fix License headers on new files

Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
2 months agofeat(admin_audit): Move admin_audit hooks to modern event listeners
Thomas Citharel [Mon, 13 Mar 2023 08:57:55 +0000 (09:57 +0100)]
feat(admin_audit): Move admin_audit hooks to modern event listeners

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
2 months agofeat(user_ldap): Introduce user id assigned typed events for LDAP usage
Carl Schwan [Mon, 13 Mar 2023 17:46:30 +0000 (18:46 +0100)]
feat(user_ldap): Introduce user id assigned typed events for LDAP usage

Based on work from https://github.com/nextcloud/server/pull/32019

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
2 months agochore: Code cleanup in lib/private/Console/Application
Thomas Citharel [Mon, 13 Mar 2023 10:05:52 +0000 (11:05 +0100)]
chore: Code cleanup in lib/private/Console/Application

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
2 months agofeat: Add mimetype into BeforePreviewFetchedEvent event
Thomas Citharel [Mon, 13 Mar 2023 08:58:31 +0000 (09:58 +0100)]
feat: Add mimetype into BeforePreviewFetchedEvent event

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
2 months agochore(assets): Recompile assets 47848/head
nextcloud-command [Tue, 10 Sep 2024 11:28:20 +0000 (11:28 +0000)]
chore(assets): Recompile assets

Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
2 months agoMerge pull request #47858 from nextcloud/fix/preview/handle-no-local-file
Richard Steinmetz [Tue, 10 Sep 2024 11:24:44 +0000 (13:24 +0200)]
Merge pull request #47858 from nextcloud/fix/preview/handle-no-local-file

fix(preview): gracefully handle file not being opened in ProviderV2

2 months agofix(files): Reset context menu position on close
Ferdinand Thiessen [Mon, 9 Sep 2024 13:37:01 +0000 (15:37 +0200)]
fix(files): Reset context menu position on close

* Resolves https://github.com/nextcloud/server/issues/46934

Ensure that after a right-click the context menu position is resetted,
so that pressing the "actions"-menu button it is displayed on the correct location.

Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
2 months agoMerge pull request #47860 from nextcloud/fix/create-template-write-event
Marcel Klehr [Tue, 10 Sep 2024 08:04:17 +0000 (10:04 +0200)]
Merge pull request #47860 from nextcloud/fix/create-template-write-event

fix: Only write once to template instead of create/copy

2 months agoMerge pull request #47294 from nextcloud/fix/natural-order-tree
Pytal [Tue, 10 Sep 2024 08:00:31 +0000 (01:00 -0700)]
Merge pull request #47294 from nextcloud/fix/natural-order-tree

fix(files): Sort tree views correctly by natural order