From ba61108d67ae5139c82db1a23fa54bb50fc41b23 Mon Sep 17 00:00:00 2001 From: nextcloud-command Date: Sun, 29 Mar 2026 03:14:02 +0000 Subject: [PATCH 1/2] chore(dev-deps): Bump nextcloud/ocp package Signed-off-by: GitHub --- composer.lock | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/composer.lock b/composer.lock index faf8140..e6de4a7 100644 --- a/composer.lock +++ b/composer.lock @@ -914,12 +914,12 @@ "source": { "type": "git", "url": "https://github.com/nextcloud-deps/ocp.git", - "reference": "6ce31e5724b4a720bb968aafd4f6affc1f22e5c4" + "reference": "cd912d2ba9fca6027ee4d0a55fd06c41c75af4d2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nextcloud-deps/ocp/zipball/6ce31e5724b4a720bb968aafd4f6affc1f22e5c4", - "reference": "6ce31e5724b4a720bb968aafd4f6affc1f22e5c4", + "url": "https://api.github.com/repos/nextcloud-deps/ocp/zipball/cd912d2ba9fca6027ee4d0a55fd06c41c75af4d2", + "reference": "cd912d2ba9fca6027ee4d0a55fd06c41c75af4d2", "shasum": "" }, "require": { @@ -955,7 +955,7 @@ "issues": "https://github.com/nextcloud-deps/ocp/issues", "source": "https://github.com/nextcloud-deps/ocp/tree/master" }, - "time": "2026-02-13T01:14:34+00:00" + "time": "2026-03-27T01:17:33+00:00" }, { "name": "nikic/php-parser", @@ -3984,5 +3984,5 @@ "platform-overrides": { "php": "8.1" }, - "plugin-api-version": "2.6.0" + "plugin-api-version": "2.9.0" } From e44a2d08a0a1c277ab465ae11f2e719e57dce34b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=B4me=20Chilliet?= Date: Mon, 30 Mar 2026 14:31:27 +0200 Subject: [PATCH 2/2] fix: Remove call to removed getter getNotificationManager MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Côme Chilliet --- lib/AppInfo/Application.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/lib/AppInfo/Application.php b/lib/AppInfo/Application.php index 9512b01..b504e9d 100644 --- a/lib/AppInfo/Application.php +++ b/lib/AppInfo/Application.php @@ -1,4 +1,7 @@ registerNotifierService(Notifier::class); } public function boot(IBootContext $context): void { - $notificationManager = $context->getServerContainer()->getNotificationManager(); - $notificationManager->registerNotifierService(Notifier::class); } }