From f295dd2d4e56c58352286327e41d1cf05d9e543d Mon Sep 17 00:00:00 2001 From: "Enjeck C." Date: Fri, 30 Jan 2026 04:55:33 +0000 Subject: [PATCH 1/3] chore: Update max server version Signed-off-by: Enjeck C. --- appinfo/info.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appinfo/info.xml b/appinfo/info.xml index 912fa7830..9baa8b2c5 100644 --- a/appinfo/info.xml +++ b/appinfo/info.xml @@ -48,7 +48,7 @@ Have a good time and manage whatever you want. pgsql mysql sqlite - + From afff3032a79037f0aa54dcf28bc11ff1aaca9b2b Mon Sep 17 00:00:00 2001 From: "Enjeck C." Date: Fri, 30 Jan 2026 07:35:06 +0000 Subject: [PATCH 2/3] fix: Add stable33 to workflow files Signed-off-by: Enjeck C. --- .github/workflows/cypress-custom.yml | 2 +- .github/workflows/integration.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cypress-custom.yml b/.github/workflows/cypress-custom.yml index c40b05926..1a8b69f88 100644 --- a/.github/workflows/cypress-custom.yml +++ b/.github/workflows/cypress-custom.yml @@ -31,7 +31,7 @@ jobs: fail-fast: false matrix: databases: [ 'mysql' ] - server-versions: [ 'stable31', 'stable32', 'master' ] + server-versions: [ 'stable31', 'stable32', 'stable33', 'master' ] include: - php-versions: 8.2 diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index b5dc03da3..9b18b2360 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -53,7 +53,7 @@ jobs: strategy: fail-fast: false matrix: - server-versions: ['stable31', 'stable32', 'master'] + server-versions: ['stable31', 'stable32', 'stable33', 'master'] php-versions: ['8.2'] databases: ['mysql'] include: From d1fa49958c14e9bb58ac6bcaee76fa844b3399f4 Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Fri, 30 Jan 2026 10:23:05 +0100 Subject: [PATCH 3/3] fix: getId is supposed to return string Signed-off-by: Arthur Schiwon --- lib/Share/SharePageShareDataDecorator.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/Share/SharePageShareDataDecorator.php b/lib/Share/SharePageShareDataDecorator.php index 98d1db2f9..4dc6ff7bc 100644 --- a/lib/Share/SharePageShareDataDecorator.php +++ b/lib/Share/SharePageShareDataDecorator.php @@ -158,8 +158,8 @@ public function canSeeContent(): never { throw new LogicException('Not implemented'); } - public function getId(): int { - return $this->share->getId(); + public function getId(): string { + return (string)$this->share->getId(); } public function getFullId(): string {