From 34f6b5334a34d80b56c25c71a64369a81d8ca98e Mon Sep 17 00:00:00 2001 From: "Misha M.-Kupriyanov" Date: Mon, 9 Feb 2026 15:23:24 +0100 Subject: [PATCH 01/16] IONOS(build): update build artifact pipeline to restore apps from cache and JFrog Signed-off-by: Misha M.-Kupriyanov --- .github/workflows/build-artifact.yml | 198 ++++++++++++++------------- 1 file changed, 105 insertions(+), 93 deletions(-) diff --git a/.github/workflows/build-artifact.yml b/.github/workflows/build-artifact.yml index ae9148c3ffc06..39f8496ae7ec7 100644 --- a/.github/workflows/build-artifact.yml +++ b/.github/workflows/build-artifact.yml @@ -478,7 +478,6 @@ jobs: fetch-depth: 1 - name: Setup JFrog CLI - if: needs.prepare-matrix.outputs.has_apps_to_restore == 'true' uses: jfrog/setup-jfrog-cli@7c95feb32008765e1b4e626b078dfd897c4340ad # v4.4.1 env: JF_URL: ${{ secrets.JF_ARTIFACTORY_URL }} @@ -490,29 +489,111 @@ jobs: # Ping the server jf rt ping - - name: Restore cached apps - if: needs.prepare-matrix.outputs.has_apps_to_restore == 'true' + - name: Restore all apps from cache and JFrog run: | set -e - echo "📦 Restoring cached apps..." - APPS_TO_RESTORE='${{ needs.prepare-matrix.outputs.apps_to_restore }}' + # Restore apps that are in cache (from apps_to_restore) + if [ "${{ needs.prepare-matrix.outputs.has_apps_to_restore }}" == "true" ]; then + echo "📦 Restoring cached apps..." + APPS_TO_RESTORE='${{ needs.prepare-matrix.outputs.apps_to_restore }}' - # Process each app in the restore list - echo "$APPS_TO_RESTORE" | jq -c '.[]' | while read -r app_json; do - APP_NAME=$(echo "$app_json" | jq -r '.name') - APP_SHA=$(echo "$app_json" | jq -r '.sha') - APP_PATH=$(echo "$app_json" | jq -r '.path') - SOURCE=$(echo "$app_json" | jq -r '.source') + # Process each app in the restore list + echo "$APPS_TO_RESTORE" | jq -c '.[]' | while read -r app_json; do + APP_NAME=$(echo "$app_json" | jq -r '.name') + APP_SHA=$(echo "$app_json" | jq -r '.sha') + APP_PATH=$(echo "$app_json" | jq -r '.path') + SOURCE=$(echo "$app_json" | jq -r '.source') + echo "" + echo "━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━" + echo "Restoring: $APP_NAME (source: $SOURCE)" + echo "━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━" + + if [ "$SOURCE" == "jfrog" ]; then + # Restore from JFrog + JFROG_PATH=$(echo "$app_json" | jq -r '.jfrog_path') + ARCHIVE_NAME="${APP_NAME}-${APP_SHA}.tar.gz" + + echo "📥 Downloading from JFrog: $JFROG_PATH" + + if jf rt download "$JFROG_PATH" "$ARCHIVE_NAME" --flat=true; then + echo "✅ Downloaded successfully" + echo "Extracting to $APP_PATH..." + mkdir -p "$(dirname "$APP_PATH")" + tar -xzf "$ARCHIVE_NAME" -C "$(dirname "$APP_PATH")" + + if [ -d "$APP_PATH" ] && [ -f "$APP_PATH/appinfo/info.xml" ]; then + echo "✅ Restored $APP_NAME from JFrog" + else + echo "❌ Failed to extract or validate $APP_NAME" + exit 1 + fi + + rm -f "$ARCHIVE_NAME" + else + echo "❌ Failed to download from JFrog" + exit 1 + fi + + elif [ "$SOURCE" == "github-cache" ]; then + # Restore from GitHub cache + CACHE_KEY=$(echo "$app_json" | jq -r '.cache_key') + + echo "💾 Restoring from GitHub cache: $CACHE_KEY" + + # Use actions/cache/restore in a way that works in a script context + # We need to use gh CLI to restore the cache + if gh cache restore "$CACHE_KEY" --key "$CACHE_KEY"; then + echo "✅ Restored $APP_NAME from GitHub cache" + + # Validate restoration + if [ ! -d "$APP_PATH" ] || [ ! -f "$APP_PATH/appinfo/info.xml" ]; then + echo "❌ Validation failed for $APP_NAME" + exit 1 + fi + else + echo "❌ Failed to restore from GitHub cache" + exit 1 + fi + else + echo "❌ Unknown source: $SOURCE" + exit 1 + fi + done + + echo "" + echo "✅ All cached apps restored successfully" + fi + + # Also restore newly built apps from JFrog (from apps_to_build) + if [ "${{ needs.prepare-matrix.outputs.has_apps_to_build }}" == "true" ]; then echo "" - echo "━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━" - echo "Restoring: $APP_NAME (source: $SOURCE)" - echo "━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━" + echo "📦 Restoring newly built apps from JFrog..." + APPS_TO_BUILD='${{ needs.prepare-matrix.outputs.apps_to_build }}' + FULL_MATRIX='${{ needs.prepare-matrix.outputs.external_apps_matrix }}' + EFFECTIVE_CACHE_VERSION="${{ needs.prepare-matrix.outputs.effective_cache_version }}" + + # Process each app in the build list + echo "$APPS_TO_BUILD" | jq -c '.[]' | while read -r app_json; do + APP_NAME=$(echo "$app_json" | jq -r '.name') + APP_SHA=$(echo "$app_json" | jq -r '.sha') + + # Get app path from full matrix + APP_PATH=$(echo "$FULL_MATRIX" | jq -r --arg name "$APP_NAME" '.[] | select(.name == $name) | .path') + + if [ -z "$APP_PATH" ] || [ "$APP_PATH" == "null" ]; then + echo "❌ Could not find path for $APP_NAME in matrix" + exit 1 + fi + + echo "" + echo "━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━" + echo "Restoring newly built: $APP_NAME" + echo "━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━" - if [ "$SOURCE" == "jfrog" ]; then - # Restore from JFrog - JFROG_PATH=$(echo "$app_json" | jq -r '.jfrog_path') + # Construct JFrog path matching what build-external-apps uploaded + JFROG_PATH="${{ env.ARTIFACTORY_REPOSITORY_SNAPSHOT }}/apps/${EFFECTIVE_CACHE_VERSION}/${APP_NAME}/${APP_NAME}-${APP_SHA}.tar.gz" ARCHIVE_NAME="${APP_NAME}-${APP_SHA}.tar.gz" echo "📥 Downloading from JFrog: $JFROG_PATH" @@ -535,88 +616,19 @@ jobs: echo "❌ Failed to download from JFrog" exit 1 fi + done - elif [ "$SOURCE" == "github-cache" ]; then - # Restore from GitHub cache - CACHE_KEY=$(echo "$app_json" | jq -r '.cache_key') - - echo "💾 Restoring from GitHub cache: $CACHE_KEY" - - # Use actions/cache/restore in a way that works in a script context - # We need to use gh CLI to restore the cache - if gh cache restore "$CACHE_KEY" --key "$CACHE_KEY"; then - echo "✅ Restored $APP_NAME from GitHub cache" - - # Validate restoration - if [ ! -d "$APP_PATH" ] || [ ! -f "$APP_PATH/appinfo/info.xml" ]; then - echo "❌ Validation failed for $APP_NAME" - exit 1 - fi - else - echo "❌ Failed to restore from GitHub cache" - exit 1 - fi - else - echo "❌ Unknown source: $SOURCE" - exit 1 - fi - done + echo "" + echo "✅ All newly built apps restored from JFrog successfully" + fi echo "" - echo "✅ All cached apps restored successfully" + echo "━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━" + echo "✅ All apps restored successfully" + echo "━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━" env: GH_TOKEN: ${{ github.token }} - - name: Download build external apps - uses: actions/download-artifact@v5 - with: - pattern: external-app-build-* - path: apps-external/ - - - name: Reorganize downloaded apps-external artifacts - run: | - cd apps-external/ - - echo "Initial structure:" - ls -la - - # Move contents from external-app-build-* directories to their target directories - for artifact_dir in external-app-build-*; do - if [ -d "$artifact_dir" ]; then - # Extract app name from artifact directory name - app_name=${artifact_dir#external-app-build-} - - echo "Processing artifact: $artifact_dir -> $app_name" - - # If target directory exists, merge the contents from the artifact directory containing build artifacts - if [ -d "$app_name" ]; then - echo "Target directory $app_name exists, merging contents from $artifact_dir" - # Copy contents from artifact directory to target directory - cp -r "$artifact_dir"/* "$app_name"/ - # Remove the now-empty artifact directory - rm -rf "$artifact_dir" - else - # Move the artifact directory to the proper app name - echo "Moving $artifact_dir to $app_name" - mv "$artifact_dir" "$app_name" - fi - fi - done - - echo "Reorganization complete. Final structure:" - ls -la - - - name: Verify downloaded artifacts structure - run: | - echo "External apps structure:" - ls -la apps-external/ - for app_dir in apps-external/*/; do - if [ -d "$app_dir" ]; then - echo "Contents of $app_dir:" - ls -la "$app_dir" - fi - done - - name: Set up node with version from package.json's engines uses: actions/setup-node@v6 with: From 59edc370d4c22978b5c4531276e65f4d331eefe0 Mon Sep 17 00:00:00 2001 From: "Misha M.-Kupriyanov" Date: Mon, 9 Feb 2026 17:19:00 +0100 Subject: [PATCH 02/16] IONOS(build): update upload condition to include manual workflow_dispatch for artifact uploads --- .github/workflows/build-artifact.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-artifact.yml b/.github/workflows/build-artifact.yml index 39f8496ae7ec7..45f53ba1b1bed 100644 --- a/.github/workflows/build-artifact.yml +++ b/.github/workflows/build-artifact.yml @@ -710,10 +710,10 @@ jobs: upload-to-artifactory: runs-on: self-hosted - # Upload the artifact to the Artifactory repository on PR *OR* on "ionos-dev|ionos-stable|rc/*" branch push defined in the on:push:branches + # Upload the artifact to the Artifactory repository on PR *OR* on "ionos-dev|ionos-stable|rc/*" branch push defined in the on:push:branches *OR* on manual workflow_dispatch if: | always() && - (github.event_name == 'pull_request' || github.ref_name == 'ionos-dev' || github.ref_name == 'ionos-stable' || startsWith(github.ref_name, 'rc/')) && + (github.event_name == 'pull_request' || github.event_name == 'workflow_dispatch' || github.ref_name == 'ionos-dev' || github.ref_name == 'ionos-stable' || startsWith(github.ref_name, 'rc/')) && needs.prepare-matrix.result == 'success' && (needs.build-external-apps.result == 'success' || needs.build-external-apps.result == 'skipped') && needs.build-artifact.result == 'success' From ad69668e49e9a0639ad34f5f6906fc4a40a8cd88 Mon Sep 17 00:00:00 2001 From: "Misha M.-Kupriyanov" <145785698+printminion-co@users.noreply.github.com> Date: Tue, 10 Feb 2026 11:11:27 +0100 Subject: [PATCH 03/16] Update .github/workflows/build-artifact.yml Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Signed-off-by: Misha M.-Kupriyanov <145785698+printminion-co@users.noreply.github.com> --- .github/workflows/build-artifact.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-artifact.yml b/.github/workflows/build-artifact.yml index 45f53ba1b1bed..f2f0d2a36dd77 100644 --- a/.github/workflows/build-artifact.yml +++ b/.github/workflows/build-artifact.yml @@ -491,7 +491,7 @@ jobs: - name: Restore all apps from cache and JFrog run: | - set -e + set -euo pipefail # Restore apps that are in cache (from apps_to_restore) if [ "${{ needs.prepare-matrix.outputs.has_apps_to_restore }}" == "true" ]; then From c5a5589566ae621d6137fa1ae33d3e895676fbee Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Thu, 12 Feb 2026 09:18:48 +0000 Subject: [PATCH 04/16] IONOS(config): update submodule bacda90 (feat(update-user-email): add script to update Nextcloud user email) https://github.com/IONOS-Productivity/ncw-config/releases/tag/bacda90 Signed-off-by: github-actions[bot] --- IONOS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/IONOS b/IONOS index 66c2a3ad8087a..bacda907219ef 160000 --- a/IONOS +++ b/IONOS @@ -1 +1 @@ -Subproject commit 66c2a3ad8087a35b4f276990bd53aa66c948c969 +Subproject commit bacda907219ef50d09e60f9cd9d1667708135606 From 9e2d2cae049e372d745b26bde4a8d944ee07c804 Mon Sep 17 00:00:00 2001 From: Kai Henseler Date: Thu, 5 Feb 2026 16:07:32 +0100 Subject: [PATCH 05/16] IONOS(activity): Switch activity app to IONOS fork To update your local repo cd ncw-server rm -rf .git/modules/apps-external/activity git submodule deinit -f apps-external/activity git pull git submodule update --init --recursive apps-external/activity git submodule sync apps-external/activity Verify the change: cd apps-external/activity git remote -v Signed-off-by: Kai Henseler --- .gitmodules | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitmodules b/.gitmodules index a7c0d60e7e858..37edeacb61d4e 100644 --- a/.gitmodules +++ b/.gitmodules @@ -24,7 +24,7 @@ url = git@github.com:nextcloud/notify_push.git [submodule "apps-external/activity"] path = apps-external/activity - url = git@github.com:nextcloud/activity.git + url = git@github.com:IONOS-Productivity/nc-activity.git [submodule "apps-external/tasks"] path = apps-external/tasks url = git@github.com:nextcloud/tasks.git From ddba8e7dd78c22a4aa75e2c658bae2f68775bf9a Mon Sep 17 00:00:00 2001 From: Kai Henseler Date: Fri, 6 Feb 2026 09:18:23 +0100 Subject: [PATCH 06/16] IONOS(copilot): eductate copilot on recurring workflow docs Signed-off-by: Kai Henseler --- .github/copilot-instructions.md | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/copilot-instructions.md b/.github/copilot-instructions.md index 9e39697a38799..a4b5255e3257a 100644 --- a/.github/copilot-instructions.md +++ b/.github/copilot-instructions.md @@ -166,6 +166,7 @@ The development container provides several convenience features for development: * Pay attention to the IONOS-specific scripts and configurations when working on related features. * Use the `IONOS/configure.sh` script for most configuration tasks rather than manual OCC commands. * Before committing any changes, make sure to run the relevant tests and linters. +* **Recurring Tasks Documentation:** For common development tasks (e.g., delegating settings to admin, adding apps, etc.), check `..//docs/recurring-tasks/` for step-by-step guides. ## Code Organization & Structure From b898e085548036fc9a618ec75436644d3255889a Mon Sep 17 00:00:00 2001 From: Kai Henseler Date: Fri, 6 Feb 2026 09:18:57 +0100 Subject: [PATCH 07/16] IONOS(activity): update submodule (delegate settings) Signed-off-by: Kai Henseler --- apps-external/activity | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps-external/activity b/apps-external/activity index d5a969a1c52a7..ca3cd2e5e5883 160000 --- a/apps-external/activity +++ b/apps-external/activity @@ -1 +1 @@ -Subproject commit d5a969a1c52a7fbc42431df0949f383933419576 +Subproject commit ca3cd2e5e58839d62e5ec3e6afbac0b58d52f8a0 From 568605b8e7d7bfae6d9767675c329067084ae4d0 Mon Sep 17 00:00:00 2001 From: Kai Henseler Date: Fri, 6 Feb 2026 09:19:40 +0100 Subject: [PATCH 08/16] IONOS(config): update submodule (add delegated activity settings) Signed-off-by: Kai Henseler --- IONOS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/IONOS b/IONOS index bacda907219ef..c6b270f0fced4 160000 --- a/IONOS +++ b/IONOS @@ -1 +1 @@ -Subproject commit bacda907219ef50d09e60f9cd9d1667708135606 +Subproject commit c6b270f0fced4f741442cab01b5cb68df70c46bb From b92d2a681b0177ad8bf3f0ce710b6ed4ea8fa5eb Mon Sep 17 00:00:00 2001 From: Arsalan Ul Haq Sohni Date: Wed, 11 Feb 2026 14:11:00 +0100 Subject: [PATCH 09/16] IONOS(files_pdfviewer): add submodule v31.0.13 (21125af) Signed-off-by: Arsalan Ul Haq Sohni --- .gitmodules | 3 +++ apps-external/files_pdfviewer | 1 + 2 files changed, 4 insertions(+) create mode 160000 apps-external/files_pdfviewer diff --git a/.gitmodules b/.gitmodules index 37edeacb61d4e..6592e74a508ff 100644 --- a/.gitmodules +++ b/.gitmodules @@ -91,3 +91,6 @@ [submodule "apps-external/ncw_tools"] path = apps-external/ncw_tools url = git@github.com:IONOS-Productivity/ncw-tools.git +[submodule "apps-external/files_pdfviewer"] + path = apps-external/files_pdfviewer + url = git@github.com:nextcloud/files_pdfviewer.git diff --git a/apps-external/files_pdfviewer b/apps-external/files_pdfviewer new file mode 160000 index 0000000000000..21125af4ab4a8 --- /dev/null +++ b/apps-external/files_pdfviewer @@ -0,0 +1 @@ +Subproject commit 21125af4ab4a8c2f9784fc4cd66cdae85a41ed4e From 60766e57ea6c32a741a6795961daf940d2621194 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Thu, 12 Feb 2026 11:35:06 +0000 Subject: [PATCH 10/16] IONOS(config): update submodule bdfd74f (build: enable files_pdfviewer app in configuration and Makefile) https://github.com/IONOS-Productivity/ncw-config/releases/tag/bdfd74f Signed-off-by: github-actions[bot] --- IONOS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/IONOS b/IONOS index c6b270f0fced4..bdfd74fa9f566 160000 --- a/IONOS +++ b/IONOS @@ -1 +1 @@ -Subproject commit c6b270f0fced4f741442cab01b5cb68df70c46bb +Subproject commit bdfd74fa9f566f10d455ff90c039286fb73ad7ac From 863dcc28f6fcfc05a4e6409880e0973ea52ed49d Mon Sep 17 00:00:00 2001 From: Kai Henseler Date: Wed, 11 Feb 2026 15:53:19 +0100 Subject: [PATCH 11/16] IONOS(config): update submodule (add flag to hide dev notice) Signed-off-by: Kai Henseler Signed-off-by: Arsalan Ul Haq Sohni --- IONOS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/IONOS b/IONOS index bdfd74fa9f566..4192e9c9b70de 160000 --- a/IONOS +++ b/IONOS @@ -1 +1 @@ -Subproject commit bdfd74fa9f566f10d455ff90c039286fb73ad7ac +Subproject commit 4192e9c9b70debc433fe1365827f683592e00e41 From c6930a4b6afa16b9870304f72209269b8aa53213 Mon Sep 17 00:00:00 2001 From: Kai Henseler Date: Wed, 11 Feb 2026 15:54:06 +0100 Subject: [PATCH 12/16] IONOS(Settings): hide footer depending on config flag Signed-off-by: Kai Henseler --- apps/settings/lib/Settings/Personal/ServerDevNotice.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/apps/settings/lib/Settings/Personal/ServerDevNotice.php b/apps/settings/lib/Settings/Personal/ServerDevNotice.php index 71c83740b9291..916d69e97d1da 100644 --- a/apps/settings/lib/Settings/Personal/ServerDevNotice.php +++ b/apps/settings/lib/Settings/Personal/ServerDevNotice.php @@ -15,6 +15,7 @@ use OCP\Settings\ISettings; use OCP\Support\Subscription\IRegistry; use OCP\Util; +use OCP\IConfig; class ServerDevNotice implements ISettings { @@ -25,6 +26,7 @@ public function __construct( private IUserSession $userSession, private IInitialState $initialState, private IURLGenerator $urlGenerator, + private IConfig $config, ) { } @@ -62,6 +64,10 @@ public function getSection(): ?string { return null; } + if ($this->config->getSystemValueBool('settings.hide-dev-notice')) { + return null; + } + return 'personal-info'; } From 49051cfbf880fa19664b643885cb031cc888dddd Mon Sep 17 00:00:00 2001 From: Kai Henseler Date: Wed, 11 Feb 2026 11:01:15 +0100 Subject: [PATCH 13/16] IONOS(bruteforcesettings): add new submodule Signed-off-by: Kai Henseler --- .gitmodules | 3 +++ apps-external/bruteforcesettings | 1 + 2 files changed, 4 insertions(+) create mode 160000 apps-external/bruteforcesettings diff --git a/.gitmodules b/.gitmodules index 6592e74a508ff..fab07b1b89865 100644 --- a/.gitmodules +++ b/.gitmodules @@ -94,3 +94,6 @@ [submodule "apps-external/files_pdfviewer"] path = apps-external/files_pdfviewer url = git@github.com:nextcloud/files_pdfviewer.git +[submodule "apps-external/bruteforcesettings"] + path = apps-external/bruteforcesettings + url = git@github.com:IONOS-Productivity/nc-bruteforcesettings.git diff --git a/apps-external/bruteforcesettings b/apps-external/bruteforcesettings new file mode 160000 index 0000000000000..dc12df63f91cc --- /dev/null +++ b/apps-external/bruteforcesettings @@ -0,0 +1 @@ +Subproject commit dc12df63f91cc5f5636f5519bac39838abd66455 From 77af07bea1543abaf2de24d0a649ff4275902c41 Mon Sep 17 00:00:00 2001 From: Kai Henseler Date: Wed, 11 Feb 2026 11:01:56 +0100 Subject: [PATCH 14/16] IONOS(bruteforcesettings): update submodule (delegate settings) Signed-off-by: Kai Henseler --- apps-external/bruteforcesettings | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps-external/bruteforcesettings b/apps-external/bruteforcesettings index dc12df63f91cc..423a1065c682b 160000 --- a/apps-external/bruteforcesettings +++ b/apps-external/bruteforcesettings @@ -1 +1 @@ -Subproject commit dc12df63f91cc5f5636f5519bac39838abd66455 +Subproject commit 423a1065c682be3cb065bdc91c78353fee36c798 From b4e992997f630e929671aa395bb4f9a7a82982a2 Mon Sep 17 00:00:00 2001 From: Kai Henseler Date: Wed, 11 Feb 2026 11:04:47 +0100 Subject: [PATCH 15/16] IONOS(config): update submodule (delegate bruteforcesettings) Signed-off-by: Kai Henseler --- IONOS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/IONOS b/IONOS index 4192e9c9b70de..bb7db058d334f 160000 --- a/IONOS +++ b/IONOS @@ -1 +1 @@ -Subproject commit 4192e9c9b70debc433fe1365827f683592e00e41 +Subproject commit bb7db058d334f99d9ec148d6b9cd7462aa80db8e From 8557e68c3f41a744d8bea1360976a7ebd85a527e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 13 Feb 2026 12:44:29 +0000 Subject: [PATCH 16/16] IONOS(config): update submodule 30be705 (feat(configure): delegate user_oidc admin settings) https://github.com/IONOS-Productivity/ncw-config/releases/tag/30be705 Signed-off-by: github-actions[bot] --- IONOS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/IONOS b/IONOS index bb7db058d334f..30be7051586fa 160000 --- a/IONOS +++ b/IONOS @@ -1 +1 @@ -Subproject commit bb7db058d334f99d9ec148d6b9cd7462aa80db8e +Subproject commit 30be7051586faae63a143d061925045dd800dba5